You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-4
Original file line number
Diff line number
Diff line change
@@ -39,12 +39,24 @@
39
39
40
40
## ⛄ Get started with AutoMQ
41
41
42
-
### Deploy Locally on a Single Host
42
+
> [!Tip]
43
+
> Deploying a production-ready AutoMQ cluster is challenging. This Quick Start is only for evaluating AutoMQ features and is not suitable for production use. For production deployment best practices, please [contact](https://www.automq.com/contact) our community for support.
44
+
45
+
The `docker/docker-compose.yaml` file provides a simple single-node setup for quick evaluation and development:
46
+
```shell
47
+
docker compose -f docker/docker-compose.yaml up -d
This setup features a single AutoMQ node serving as both controller and broker, alongside MinIO for S3 storage. All services operate within a Docker bridge network called `automq_net`, allowing you to start a Kafka producer in this network to test AutoMQ:
50
+
```shell
51
+
docker run --network automq_net automqinc/automq:latest /bin/bash -c \
The easiest way to run AutoMQ. You can experience features like [**Partition Reassignment in Seconds**](https://www.automq.com/docs/automq/getting-started/example-partition-reassignment-in-seconds) and [**Continuous Self-Balancing**](https://www.automq.com/docs/automq/getting-started/example-self-balancing-when-cluster-nodes-change) in your local machine.
55
+
After testing, you can destroy the setup with:
56
+
```shell
57
+
docker compose -f docker/docker-compose.yaml down
58
+
```
59
+
The `docker/docker-compose-cluster.yaml` file offers a more complex setup with three AutoMQ nodes, ideal for testing AutoMQ's cluster features, and can be run in the same way.
48
60
49
61
There are more deployment options available:
50
62
-[Deploy on Linux with 5 Nodes](https://www.automq.com/docs/automq/getting-started/cluster-deployment-on-linux)
0 commit comments