You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But then I got the following error in my client-side sandbox:
1612651593.608 : radical.entk.task_manager.0000 : 15773 : 140166928791296 : INFO : Transition task.0000 to EXECUTED
1612651593.608 : radical.entk.task_manager.0000 : 15773 : 140166928791296 : DEBUG : task.0000 (EXECUTED) to sync with amgr
1612651593.609 : radical.entk.task_manager.0000 : 15773 : 140166928791296 : ERROR : Transition task.0000 to state EXECUTED failed, error: (-1, "ConnectionResetError(104, 'Connection reset by peer')")
Traceback (most recent call last):
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/radical/entk/execman/base/task_manager.py", line 206, in _advance
self._sync_with_master(obj, obj_type, channel, queue)
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/radical/entk/execman/base/task_manager.py", line 153, in _sync_with_master
properties=pika.BasicProperties(correlation_id=corr_id))
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/pika/adapters/blocking_connection.py", line 2120, in basic_publish
mandatory, immediate)
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/pika/adapters/blocking_connection.py", line 2207, in publish
self._flush_output()
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/pika/adapters/blocking_connection.py", line 1292, in _flush_output
*waiters)
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/pika/adapters/blocking_connection.py", line 477, in _flush_output
result.reason_text)
pika.exceptions.ConnectionClosed: (-1, "ConnectionResetError(104, 'Connection reset by peer')")
1612651593.611 : radical.entk.task_manager.0000 : 15773 : 140166928791296 : DEBUG : task.0000 (DESCRIBED) to sync with amgr
1612651593.611 : radical.entk.task_manager.0000 : 15773 : 140166928791296 : ERROR : Error in RP callback thread:
Traceback (most recent call last):
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/radical/entk/execman/base/task_manager.py", line 206, in _advance
self._sync_with_master(obj, obj_type, channel, queue)
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/radical/entk/execman/base/task_manager.py", line 153, in _sync_with_master
properties=pika.BasicProperties(correlation_id=corr_id))
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/pika/adapters/blocking_connection.py", line 2120, in basic_publish
mandatory, immediate)
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/pika/adapters/blocking_connection.py", line 2207, in publish
self._flush_output()
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/pika/adapters/blocking_connection.py", line 1292, in _flush_output
*waiters)
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/pika/adapters/blocking_connection.py", line 477, in _flush_output
result.reason_text)
pika.exceptions.ConnectionClosed: (-1, "ConnectionResetError(104, 'Connection reset by peer')")
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/radical/entk/execman/rp/task_manager.py", line 251, in unit_state_cb
mq_channel, '%s-cb-to-sync' % self._sid)
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/radical/entk/execman/base/task_manager.py", line 213, in _advance
self._sync_with_master(obj, obj_type, channel, queue)
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/radical/entk/execman/base/task_manager.py", line 153, in _sync_with_master
properties=pika.BasicProperties(correlation_id=corr_id))
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/pika/adapters/blocking_connection.py", line 2120, in basic_publish
mandatory, immediate)
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/pika/adapters/blocking_connection.py", line 2206, in publish
immediate=immediate)
File "/glade/u/home/wuh20/venv_Predictability/lib/python3.7/site-packages/pika/channel.py", line 415, in basic_publish
raise exceptions.ChannelClosed()
pika.exceptions.ChannelClosed
When I added back those lines to my user code, things are working again. I suppose there are still some leftover issues with pika?
Thank you
The text was updated successfully, but these errors were encountered:
Thank you @Weiming-Hu , can you try again after you update entk to v1.5.12?
The actual versioning got complicated like radical.entk : [email protected] but you should have updated pika handling if you see 1.5.12 in the radical-stack.
I have experimented with the workflow without
pika
settings, specifically without the following two lines in my user code:But then I got the following error in my client-side sandbox:
When I added back those lines to my user code, things are working again. I suppose there are still some leftover issues with
pika
?Thank you
The text was updated successfully, but these errors were encountered: