commit/galaxy-central: natefoo: Disable eagerloading of a job's datasets. This results in more queries but does away with a join that was returning a far bigger result than it should've.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/d44244ed570a/ changeset: r5353:d44244ed570a user: natefoo date: 2011-04-06 18:44:58 summary: Disable eagerloading of a job's datasets. This results in more queries but does away with a join that was returning a far bigger result than it should've. affected #: 1 file (36 bytes) --- a/lib/galaxy/model/mapping.py Wed Apr 06 12:40:20 2011 -0400 +++ b/lib/galaxy/model/mapping.py Wed Apr 06 12:44:58 2011 -0400 @@ -1392,10 +1392,10 @@ history=relation( History ), library_folder=relation( LibraryFolder ), parameters=relation( JobParameter, lazy=False ), - input_datasets=relation( JobToInputDatasetAssociation, lazy=False ), - output_datasets=relation( JobToOutputDatasetAssociation, lazy=False ), + input_datasets=relation( JobToInputDatasetAssociation ), + output_datasets=relation( JobToOutputDatasetAssociation ), post_job_actions=relation( PostJobActionAssociation, lazy=False ), - output_library_datasets=relation( JobToOutputLibraryDatasetAssociation, lazy=False ), + output_library_datasets=relation( JobToOutputLibraryDatasetAssociation ), external_output_metadata = relation( JobExternalOutputMetadata, lazy = False ) ) ) assign_mapper( context, Task, Task.table, Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket