Hi all I installed bismark from the toolshed (bgruening) with all dependencies having been installed successfully and I generated the genomes according to the instructions. While trying to test the tool I got the following error. galaxy.jobs.handler ERROR 2013-09-04 13:14:26,267 Failed to generate job destination Traceback (most recent call last): File "/steno-internal/projects/galaxy/galaxy-dist/lib/galaxy/jobs/handler.py", line 287, in __check_if_ready_to_run self.job_wrappers[job.id].job_destination File "/steno-internal/projects/galaxy/galaxy-dist/lib/galaxy/jobs/__init__.py", line 617, in job_destination return self.job_runner_mapper.get_job_destination(self.params) File "/steno-internal/projects/galaxy/galaxy-dist/lib/galaxy/jobs/mapper.py", line 163, in get_job_destination self.__cache_job_destination( params ) File "/steno-internal/projects/galaxy/galaxy-dist/lib/galaxy/jobs/mapper.py", line 148, in __cache_job_destination raw_job_destination = self.job_wrapper.tool.get_job_destination( params ) AttributeError: 'NoneType' object has no attribute 'get_job_destination' galaxy.datatypes.metadata DEBUG 2013-09-04 13:14:26,905 Cleaning up external metadata files galaxy.jobs.handler ERROR 2013-09-04 13:14:27,034 (1316) Error checking job readiness I'm using the old style job configuration (the one in universe_wsgi.ini). Could that be the issue? Bests, Nikos
Hi Nikos,
Hi all
I installed bismark from the toolshed (bgruening) with all dependencies having been installed successfully and I generated the genomes according to the instructions.
While trying to test the tool I got the following error.
galaxy.jobs.handler ERROR 2013-09-04 13:14:26,267 Failed to generate job destination Traceback (most recent call last): File "/steno-internal/projects/galaxy/galaxy-dist/lib/galaxy/jobs/handler.py", line 287, in __check_if_ready_to_run self.job_wrappers[job.id].job_destination File "/steno-internal/projects/galaxy/galaxy-dist/lib/galaxy/jobs/__init__.py", line 617, in job_destination return self.job_runner_mapper.get_job_destination(self.params) File "/steno-internal/projects/galaxy/galaxy-dist/lib/galaxy/jobs/mapper.py", line 163, in get_job_destination self.__cache_job_destination( params ) File "/steno-internal/projects/galaxy/galaxy-dist/lib/galaxy/jobs/mapper.py", line 148, in __cache_job_destination raw_job_destination = self.job_wrapper.tool.get_job_destination( params ) AttributeError: 'NoneType' object has no attribute 'get_job_destination' galaxy.datatypes.metadata DEBUG 2013-09-04 13:14:26,905 Cleaning up external metadata files galaxy.jobs.handler ERROR 2013-09-04 13:14:27,034 (1316) Error checking job readiness
that does not look like a bismark error. Is it happen with other tools as well?
I'm using the old style job configuration (the one in universe_wsgi.ini). Could that be the issue?
Not sure, sorry. But you should migrate to the new job configuration, better sooner than later. Cheers, Bjoern
Bests, Nikos ___________________________________________________________ Please keep all replies on the list by using "reply all" in your mail client. To manage your subscriptions to this and other Galaxy lists, please use the interface at: http://lists.bx.psu.edu/
To search Galaxy mailing lists use the unified search at: http://galaxyproject.org/search/mailinglists/
Hi Bjørn
that does not look like a bismark error. Is it happen with other tools as well?
No, I have only experienced it with Bismark.
Not sure, sorry. But you should migrate to the new job configuration, better sooner than later.
I am starting to get that idea. There are jobs still running on the server. When they're done I'll migrate it and get back to you if the problem is fixed or not. Bests, Nikos
On Sep 4, 2013, at 9:17 AM, Nikos Sidiropoulos wrote:
Hi Bjørn
that does not look like a bismark error. Is it happen with other tools as well?
No, I have only experienced it with Bismark.
Not sure, sorry. But you should migrate to the new job configuration, better sooner than later.
I am starting to get that idea. There are jobs still running on the server. When they're done I'll migrate it and get back to you if the problem is fixed or not.
Hi Nikos, The old-style configuration is still supported for now. I suspect this may be a problem of the tool not loading in the handler application. Are you running a multiprocess Galaxy setup? If so, you will need to restart all Galaxy processes after installing tools from the tool shed. --nate
Bests, Nikos ___________________________________________________________ Please keep all replies on the list by using "reply all" in your mail client. To manage your subscriptions to this and other Galaxy lists, please use the interface at: http://lists.bx.psu.edu/
To search Galaxy mailing lists use the unified search at: http://galaxyproject.org/search/mailinglists/
Hi Nate Yes, it is a multiprocess setup. But is it because we have more than one web-servers, handlers or both? Because if it's just the web-servers I could just scale it down to one since it doesn't seem necessary with our number of users. It's would be nice not to have to restart even for the tool-shed tools. Bests, Nikos 2013/9/4 Nate Coraor <nate@bx.psu.edu>
On Sep 4, 2013, at 9:17 AM, Nikos Sidiropoulos wrote:
Hi Bjørn
that does not look like a bismark error. Is it happen with other tools as well?
No, I have only experienced it with Bismark.
Not sure, sorry. But you should migrate to the new job configuration, better sooner than later.
I am starting to get that idea. There are jobs still running on the server. When they're done I'll migrate it and get back to you if the problem is fixed or not.
Hi Nikos,
The old-style configuration is still supported for now. I suspect this may be a problem of the tool not loading in the handler application. Are you running a multiprocess Galaxy setup? If so, you will need to restart all Galaxy processes after installing tools from the tool shed.
--nate
Bests, Nikos ___________________________________________________________ Please keep all replies on the list by using "reply all" in your mail client. To manage your subscriptions to this and other Galaxy lists, please use the interface at: http://lists.bx.psu.edu/
To search Galaxy mailing lists use the unified search at: http://galaxyproject.org/search/mailinglists/
On Sep 4, 2013, at 10:08 AM, Nikos Sidiropoulos wrote:
Hi Nate
Yes, it is a multiprocess setup. But is it because we have more than one web-servers, handlers or both?
Because if it's just the web-servers I could just scale it down to one since it doesn't seem necessary with our number of users. It's would be nice not to have to restart even for the tool-shed tools.
The problem in this case is that one of the web server processes loaded the shed tool but none of the handlers did. Scaling back to a single web process won't solve the problem since the handler(s) will still need to load the tool. Unfortunately you'll have to restart all processes (except, technically, the one web process which happened to install the tool). The only way to avoid the restart is to have a single process for all tasks (web serving and job handling), which comes at a performance penalty. --nate
Bests, Nikos
2013/9/4 Nate Coraor <nate@bx.psu.edu> On Sep 4, 2013, at 9:17 AM, Nikos Sidiropoulos wrote:
Hi Bjørn
that does not look like a bismark error. Is it happen with other tools as well?
No, I have only experienced it with Bismark.
Not sure, sorry. But you should migrate to the new job configuration, better sooner than later.
I am starting to get that idea. There are jobs still running on the server. When they're done I'll migrate it and get back to you if the problem is fixed or not.
Hi Nikos,
The old-style configuration is still supported for now. I suspect this may be a problem of the tool not loading in the handler application. Are you running a multiprocess Galaxy setup? If so, you will need to restart all Galaxy processes after installing tools from the tool shed.
--nate
Bests, Nikos ___________________________________________________________ Please keep all replies on the list by using "reply all" in your mail client. To manage your subscriptions to this and other Galaxy lists, please use the interface at: http://lists.bx.psu.edu/
To search Galaxy mailing lists use the unified search at: http://galaxyproject.org/search/mailinglists/
Hi again You were right. Restarting all processes solved the problem and Bismark in now up and running. Bests, Nikos 2013/9/4 Nate Coraor <nate@bx.psu.edu>
On Sep 4, 2013, at 10:08 AM, Nikos Sidiropoulos wrote:
Hi Nate
Yes, it is a multiprocess setup. But is it because we have more than one web-servers, handlers or both?
Because if it's just the web-servers I could just scale it down to one since it doesn't seem necessary with our number of users. It's would be nice not to have to restart even for the tool-shed tools.
The problem in this case is that one of the web server processes loaded the shed tool but none of the handlers did. Scaling back to a single web process won't solve the problem since the handler(s) will still need to load the tool. Unfortunately you'll have to restart all processes (except, technically, the one web process which happened to install the tool). The only way to avoid the restart is to have a single process for all tasks (web serving and job handling), which comes at a performance penalty.
--nate
Bests, Nikos
2013/9/4 Nate Coraor <nate@bx.psu.edu> On Sep 4, 2013, at 9:17 AM, Nikos Sidiropoulos wrote:
Hi Bjørn
that does not look like a bismark error. Is it happen with other
as well?
No, I have only experienced it with Bismark.
Not sure, sorry. But you should migrate to the new job configuration, better sooner than later.
I am starting to get that idea. There are jobs still running on the server. When they're done I'll migrate it and get back to you if the
tools problem is fixed or not.
Hi Nikos,
The old-style configuration is still supported for now. I suspect this
may be a problem of the tool not loading in the handler application. Are you running a multiprocess Galaxy setup? If so, you will need to restart all Galaxy processes after installing tools from the tool shed.
--nate
Bests, Nikos ___________________________________________________________ Please keep all replies on the list by using "reply all" in your mail client. To manage your subscriptions to this and other Galaxy lists, please use the interface at: http://lists.bx.psu.edu/
To search Galaxy mailing lists use the unified search at: http://galaxyproject.org/search/mailinglists/
participants (3)
-
Bjoern Gruening
-
Nate Coraor
-
Nikos Sidiropoulos