sinedsem
sinedsem

Reputation: 5723

Can I dynamically add a custom serializer to Hazelcast cluster?

I would prefer to serialize a new data objects without restarting production cluster.

Upvotes: 0

Views: 525

Answers (1)

sertug
sertug

Reputation: 969

Please keep in mind that you don't have to do a full restart, you can do a rolling restart (restart members one by one and add the new class) before you start working on the newly added object.

On the other hand, there's user code deployment feature (however this is offered in the enterprise edition) that enables to load classes to the cluster from members/clients: http://docs.hazelcast.org/docs/3.10.3/manual/html-single/index.html#member-user-code-deployment-beta

Upvotes: 1

Related Questions