subzero icon indicating copy to clipboard operation
subzero copied to clipboard

SubZero - Fast Serialization for Hazelcast

Results 32 subzero issues
Sort by recently updated
recently updated
newest added

Hello, I've read https://github.com/jerrinot/subzero/issues/8 and therefore placed `subzero-serializers.properties` file with ``` UnmodifiableCollectionsSerializer``` as its content. Project dependencies ``` info.jerrinot subzero-all 0.10 de.javakaffee kryo-serializers 0.45 ``` hazelcast.xml with following element ```...

Add Integration tests for Hazelcast 5

enhancement

Consider following test: ``` import com.hazelcast.config.GlobalSerializerConfig; import com.hazelcast.config.SerializationConfig; import com.hazelcast.jet.Jet; import com.hazelcast.jet.config.JetConfig; import com.hazelcast.jet.pipeline.Pipeline; import com.hazelcast.jet.pipeline.Sinks; import com.hazelcast.jet.pipeline.Sources; import info.jerrinot.subzero.Serializer; import org.junit.jupiter.api.Test; class ReproTest { @Test void repro() { var...

Hi All, First of all, I am new to Hazel Cast and SubZero Configuration. I would like to compare configured or inject FST serialization into SubZero. Then I would like...

Hi, I am using Hazelcast 3.11.1 with SubZero 3.9 and configured it with SubZero.useAsGlobalSerializer(config); When using SubZero, I got the log full with these exceptions: `java.lang.NullPointerException: null at com.hazelcast.map.AbstractEntryProcessor$EntryBackupProcessorImpl.processBackup(AbstractEntryProcessor.java:83) at...

Kryo has a useful option to serialize objects together with its FQCN (fully qualified class name) so you don't need to register all classes you want to serialize. It could...

Given I register classes for serialization using `SubZero` ``` private void setupSerialization(final Config config) { config.getSerializationConfig() .setEnableCompression(true); SubZero.useForClasses(config, GetApplicationDataRequest.class, GetApplicationDataResponse.class); } ``` ``` public class GetApplicationDataRequest { protected String applicationCode;...

I am not able to see the byte array object compressed by kryo it is having same size as normal serialization . public class ImagePojo { public String fileName; public...

enhancement

Using SubZero across different Hazelcast clusters has problems. The serialization ids used on one cluster will not be consistent with that of another. I have got around this issue by...

enhancement
help wanted

Nov 28, 2018 4:12:14 PM com.hazelcast.client.config.XmlClientConfigLocator INFO: Loading 'hazelcast-client.xml' from classpath. Nov 28, 2018 4:12:15 PM com.hazelcast.config.AbstractXmlConfigHelper WARNING: Name of the hazelcast schema location incorrect using default Exception in thread...