mirror of https://github.com/dapr/docs.git
add hazelcast docs (#329)
This commit is contained in:
parent
f6c4a919f8
commit
b97cc390d5
|
@ -53,4 +53,5 @@ kubectl apply -f statestore.yaml
|
|||
* [Setup MongoDB](./setup-mongodb.md)
|
||||
* [Setup Zookeeper](./setup-zookeeper.md)
|
||||
* [Setup Aerospike](./setup-aerospike.md)
|
||||
* [Setup Hazelcast](./setup-hazelcast.md)
|
||||
* [Supported State Stores](./supported-state-stores.md)
|
||||
|
|
|
@ -0,0 +1,53 @@
|
|||
# Setup Hazelcast
|
||||
|
||||
## Locally
|
||||
|
||||
You can run Hazelcast locally using Docker:
|
||||
|
||||
```
|
||||
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`.
|
||||
|
||||
## Kubernetes
|
||||
|
||||
The easiest way to install Hazelcast on Kubernetes is by using the [Helm chart](https://github.com/helm/charts/tree/master/stable/hazelcast):
|
||||
|
||||
## Create a Dapr component
|
||||
|
||||
The next step is to create a Dapr component for Hazelcast.
|
||||
|
||||
Create the following YAML file named `hazelcast.yaml`:
|
||||
|
||||
```
|
||||
apiVersion: dapr.io/v1alpha1
|
||||
kind: Component
|
||||
metadata:
|
||||
name: <name>
|
||||
spec:
|
||||
type: state.hazelcast
|
||||
metadata:
|
||||
- name: hazelcastServers
|
||||
value: <REPLACE-WITH-HOSTS> # Required. A comma delimited string of servers. Example: "hazelcast:3000,hazelcast2:3000"
|
||||
- name: hazelcastMap
|
||||
value: <REPLACE-WITH-MAP> # Required. Hazelcast map configuration.
|
||||
```
|
||||
|
||||
The above example uses secrets as plain strings. It is recommended to use a secret store for the secrets as described [here](../../concepts/components/secrets.md).
|
||||
|
||||
|
||||
## Apply the configuration
|
||||
|
||||
### In Kubernetes
|
||||
|
||||
To apply the Hazelcast state store to Kubernetes, use the `kubectl` CLI:
|
||||
|
||||
```
|
||||
kubectl apply -f hazelcast.yaml
|
||||
```
|
||||
|
||||
### Running locally
|
||||
|
||||
The Dapr CLI will automatically create a directory named `components` in your current working directory with a Redis component.
|
||||
To use Hazelcast, replace the redis.yaml file with the hazelcast.yaml above.
|
|
@ -14,3 +14,4 @@
|
|||
| Zookeeper | :white_check_mark: | :x: |
|
||||
| SQL Server | :white_check_mark: | :white_check_mark: |
|
||||
| Aerospike | :white_check_mark: | :x: |
|
||||
| Hazelcast | :white_check_mark: | :x: |
|
||||
|
|
Loading…
Reference in New Issue