Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Hazelcast Service Properties"

Line 17: Line 17:
 
|-
 
|-
 
| '''ecf.hazelcast.manager.id'''
 
| '''ecf.hazelcast.manager.id'''
| Id to use for the Hazelcast Group Manager.  NOTE:  The path segment of the id (e.g. default: defaultRemoteServicesGroup) will be used to dynamically set the group name for the Hazelcast group.
+
| Id to use for the Hazelcast Group Manager.  NOTE:  The path segment of the id (e.g. default: defaultRemoteServicesGroup) will be used to dynamically set the group name for the Hazelcast clients or members.
 
| String  
 
| String  
| '''hazelcast://localhost/defaultRemoteServicesTopic'''  path: '''defaultRemoteServicesGroup'''
+
| '''hazelcast://localhost/defaultRemoteServicesGroup'''  path: '''defaultRemoteServicesGroup'''
  
 
|}
 
|}

Revision as of 19:58, 20 October 2019

Note: Hazelcast supports a number of system properties documented here.

Property Description Type Default value
ecf.hazelcast.manager.configURL   File to use for Hazelcast group configuration for the remote service. In addition to normal URLs such as http://host.com/path/to/hazelcast.xml, or https://securehost.com/path/to/myhazelcast.xml, this property supports a values with a 'bundle' protocol to allow references to Hazelcast config files from within other bundles within a given framework.

For example: ecf.hazelcast.manager.configURL=bundle:my.org.bundle.symbolic.name/path/to/hc-config-file.xml. If given as the value of this property, at export time, the bundle my.org.bundle.symbolic.name (highest version if multiple versions are present) will be consulted and the contents of file entry with the path /path/to/hc-config-file.xml within the bundle will be read and used as for the Hazelcast config.
NOTE: For distribution to work, manager and all members must use the same Hazelcast config.

String   Uses the hazelcast-default.xml in Hazelcast bundle. Note that the Hazelcast default can be set via command line argument: -Dhazelcast.config=<url> as described here
ecf.hazelcast.manager.id Id to use for the Hazelcast Group Manager. NOTE: The path segment of the id (e.g. default: defaultRemoteServicesGroup) will be used to dynamically set the group name for the Hazelcast clients or members. String   hazelcast://localhost/defaultRemoteServicesGroup path: defaultRemoteServicesGroup

Back to the top