hazelcast-python-client icon indicating copy to clipboard operation
hazelcast-python-client copied to clipboard

Hazelcast Python Client

Results 91 hazelcast-python-client issues
Sort by recently updated
recently updated
newest added

Pickle is currently used as the fallback serializer in the client. It is very convenient, but at the same time dangerous and causes surprising behavior. First of all, Pickle is...

Type: Enhancement
Source: Internal

Rather than using `future.result()` it would be nice if the python client could be used with async & await methods. https://docs.python.org/3.7/library/asyncio-task.html This makes it much easier to integrate Hazelcast into...

Type: Enhancement
Source: Community
Python 3

Added codec for publish all message.

Type: Enhancement
Priority: Low
Estimation: S
Source: Internal

Fixes https://github.com/hazelcast/hazelcast-python-client/issues/556 Added check for None serializer, on it, throw a HazelcastSerializationError in this case. Added a new test for missing nested serializer case, it checks if a HazelcastSerializationError has...

Type: Defect
Priority: Low
Estimation: S
Source: Internal

Corresponded Java Client PutAll method: https://github.com/hazelcast/hazelcast/blob/master/hazelcast/src/main/java/com/hazelcast/multimap/MultiMap.java#L81 `ListDataCodec` was missing. It was required to run client binary protocol codec generator properly. Ported from java. https://github.com/hazelcast/hazelcast/blob/master/hazelcast/src/main/java/com/hazelcast/client/impl/protocol/codec/builtin/ListDataCodec.java#L25 There had to be a change...

Type: Enhancement
Priority: Low
Estimation: S
Source: Internal

Currently, the read and write functions for `decimal, time, date, timestamp, timestamp_with_timezone` types are missing for Portable serialization. This PR implements them and adds related tests. Changes - Functions are...

Type: Enhancement
Priority: Low
Estimation: L
Source: Internal

The tracking issue for the Java side PR. See https://github.com/hazelcast/hazelcast/pull/21939 for details. --- We allow reading nullable primitive fields as primitive fields as long as they are not null. Also,...

The tracking issue for the Java side PR. See https://github.com/hazelcast/hazelcast/pull/22006 for details. --- It could be the case that the top level class is serializable by Compact, but it might...