Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge policy and UCN #1456

Merged
merged 4 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/modules/clusters/pages/user-code-namespaces.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Your resources can be run on a Hazelcast cluster to support your business logic.

* MapStore
* Split brain events
* Custom merge policies
* `ExecutorService` runnable
* Jet jobs

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,9 @@ public interface SplitBrainMergePolicy<V, T extends MergingValue<V>, R>
NOTE: Please have in mind that `existingValue` can be `null`.
This happens when a data structure or key-based entry was just created in the smaller cluster.

NOTE: Custom merge policy classes must be present on the classpath of all member nodes. This can be achieved
by updating the classpath for each node manually, or by using the {ucn} feature. See xref:clusters:user-code-namespaces.adoc[User Code Namespaces] for more information.

=== Merge Types

A merge type defines an attribute which is required by a merge policy and provided by a data structure.
Expand Down
Loading