Hazelcast

Detailed information on the Hazelcast state store component

Create a Dapr component

To setup Hazelcast state store create a component of type state.hazelcast. See this guide on how to create and apply a state store configuration.

  1. apiVersion: dapr.io/v1alpha1
  2. kind: Component
  3. metadata:
  4. name: <NAME>
  5. namespace: <NAMESPACE>
  6. spec:
  7. type: state.hazelcast
  8. version: v1
  9. metadata:
  10. - name: hazelcastServers
  11. value: <REPLACE-WITH-HOSTS> # Required. A comma delimited string of servers. Example: "hazelcast:3000,hazelcast2:3000"
  12. - name: hazelcastMap
  13. value: <REPLACE-WITH-MAP> # Required. Hazelcast map configuration.

Warning

The above example uses secrets as plain strings. It is recommended to use a secret store for the secrets as described here.

Spec metadata fields

FieldRequiredDetailsExample
hazelcastServersYA comma delimited string of servers“hazelcast:3000,hazelcast2:3000”
hazelcastMapYHazelcast Map configuration“foo-map”

Setup Hazelcast

You can run Hazelcast locally using Docker:

  1. docker run -e JAVA_OPTS="-Dhazelcast.local.publicAddress=127.0.0.1:5701" -p 5701:5701 hazelcast/hazelcast

You can then interact with the server using the 127.0.0.1:5701.

The easiest way to install Hazelcast on Kubernetes is by using the Helm chart.

Related links

Last modified March 18, 2021: Merge pull request #1321 from dapr/aacrawfi/logos (9a399d5)