hazelcast-python-client
hazelcast-python-client copied to clipboard
Hazelcast Python Client
The same bug in https://github.com/hazelcast/hazelcast-nodejs-client/issues/1323 seems to exist in python client as well.
The tracking issue for the Java side PR. See https://github.com/hazelcast/hazelcast/pull/21568 for details. --- This change prevents the client from doing the periodic attempt for connecting cluster members again when the...
The tracking issue for the Java side PR. See https://github.com/hazelcast/hazelcast/pull/21502 for details. --- Before this fix, while reading a message frame, we were mistakenly checking that the bytes we haven't...
The tracking issue for the Java side PR. See https://github.com/hazelcast/hazelcast/pull/21319 for details. --- This is a redux of [PR-18171](https://github.com/hazelcast/hazelcast/pull/18171). I'm continuing on from @ashley-taylor. I've gone with a slightly different...
The tracking issue for the Java side PR. See https://github.com/hazelcast/hazelcast/pull/20818 for details. --- When cluster id changed we were resetting member list with an empty memberlist. It turned out that...
These were converted into private classes during the 4.0 migration, as we were only supporting keyword arguments for the client configuration. However, that led to a poor user experience, as...
The error handling code around the serialization service is pretty bad. We are relying on the sys.exc_info() in so many unnecessary places, and the code around the places we re-raise...
The tracking issue for the Java side PR. See https://github.com/hazelcast/hazelcast/pull/20806 for details. --- Most of the logic is turned into a single threaded one to be able reason about the...
We should recreate proxies on the cluster as part of the initialization process, to deal with the problem described in https://github.com/hazelcast/hazelcast/issues/12417
It would be better for user to see some helpful log messages, in case of a possible connection problem to the server while running the code samples. This PR enables...