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
I'm using pyzmq to send a large NumPy array from the client to the server. See the pyzmq discussion for more details. The client and server computers are both MacBook Pro laptops running macOS 15.3 with 32 GB of memory. I noticed that if the NumPy array is larger than 2 GB in size then it fails to send. Since pyzmq does not set a size limit, does libzmq impose a size limit on the TCP socket messages?
I have found another issue with a similar problem. But that issue seems abandoned and doesn't specifically deal with NumPy arrays.
I'm using pyzmq to send a large NumPy array from the client to the server. See the pyzmq discussion for more details. The client and server computers are both MacBook Pro laptops running macOS 15.3 with 32 GB of memory. I noticed that if the NumPy array is larger than 2 GB in size then it fails to send. Since pyzmq does not set a size limit, does libzmq impose a size limit on the TCP socket messages?
I have found another issue with a similar problem. But that issue seems abandoned and doesn't specifically deal with NumPy arrays.
Here is my Python code for serializing the NumPy array and sending it. This works fine as long as the NumPy array is less than 2 GB in size.
The text was updated successfully, but these errors were encountered: