Open yadudoc opened 3 years ago
With gcc==7.5.0
recompiling the pyzmq rather than using the wheel from pypi, seems to fix this issue:
pip install --no-binary :all: --force-reinstall pyzmq
I am seeing this error again even with the fixes above on river endpoint: gcc==7.4.0
and pip install --no-binary :all: --force-reinstall pyzmq
The hope on this issue is that pyzmq will have a release that will address this. Until then we ought to keep this issue open with what is a somewhat iffy solution.
I've started two endpoints on Cori, one with a LocalProvider and the other with the SlurmProvider to use the Cori batch compute nodes for function execution. In both cases, the endpoints appear to start without issues, but the one configured to use batch queues failed with the following message:
The same error popped up even after multiple restarts of the Cori_batch endpoint, while oddly, the cori_local endpoint did not have any issues.
This is a ZMQ error, and updating this pyzmq package appears to have fixed it. Another point to note here is that the latest version of pyzmq is 22.0.0 which is not supported by our current requirement string
pyzmq>=19.0.0,<20.0.0
. If we update the version string now, and test with it, using the latest for 0.0.6 release would be good.With the updated ZMQ package, the endpoint passes all tests.