Skip to content

Commit c1ce330

Browse files
Milvus-doc-botMilvus-doc-bot
authored andcommitted
Release new docs to preview
1 parent 77d2dee commit c1ce330

4 files changed

Lines changed: 24 additions & 7 deletions

File tree

v3.0.x/site/en/getstarted/run-milvus-docker/install_standalone-binary.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This page illustrates how to install Milvus standalone with a pre-built RPM/DEB
1717

1818
## Download the RPM/DEB Package
1919

20-
You can download the RPM/DEB package according to your system architecture from the [Milvus Releases page](https://github.com/milvus-io/milvus/releases/tag/v3.0-beta).
20+
You can download the RPM/DEB package according to your system architecture from the [Milvus Releases page](https://github.com/milvus-io/milvus/releases/tag/v2.6.9).
2121

2222
- For x86_64/amd64, download the **milvus_2.6.9-1_amd64.deb** or **milvus_2.6.9-1_amd64.rpm** package.
2323
- For ARM64, download the **milvus_2.6.9-1_arm64.deb** or **milvus_2.6.9-1_arm64.rpm** package.
@@ -74,6 +74,12 @@ If Milvus is running successfully, you should see the following output:
7474

7575
You can find the Milvus binary at `/usr/bin/milvus`, the systemd service file at `/lib/systemd/system/milvus.service`, and the dependencies at `/usr/lib/milvus/`.
7676

77+
<div class="alert note">
78+
79+
By default, Milvus Standalone runs **Woodpecker** (local filesystem) as its message queue with embedded etcd, so no external messaging or metadata service is required. See [Woodpecker](woodpecker.md).
80+
81+
</div>
82+
7783
## (Optional) Update Milvus configurations
7884

7985
You can modify the Milvus configurations in the `/etc/milvus/configs/milvus.yaml` file. For example, to change the `proxy.healthCheckTimeout` to `1000` ms, you can search for the target parameter and modify accordingly. For applicable configuration items, refer to [System Configuration](system_configuration.md).

v3.0.x/site/en/getstarted/run-milvus-docker/install_standalone-docker.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $ bash standalone_embed.sh start
3333

3434
**What's new in v3.0-beta:**
3535
- **Streaming Node**: Enhanced data processing capabilities
36-
- **Woodpecker MQ**: Improved message queue with reduced maintenance overhead, see [Use Woodpecker](use-woodpecker.md) for detail
36+
- **Woodpecker MQ (default)**: This Docker deployment runs Woodpecker as the message queue with the **local filesystem** as its WAL backend, so no external message-queue service is required. See [Woodpecker](woodpecker.md).
3737
- **Optimized Architecture**: Consolidated components for better performance
3838

3939
Always download the latest script to ensure you get the most recent configurations and architecture improvements.
@@ -46,7 +46,7 @@ If you encounter any issues pulling the image, contact us at <a href="mailto:com
4646

4747
After running the installation script:
4848

49-
- A docker container named milvus has been started at port **19530**.
49+
- A docker container named milvus-standalone has been started at port **19530**.
5050
- An embed etcd is installed along with Milvus in the same container and serves at port **2379**. Its configuration file is mapped to **embedEtcd.yaml** in the current folder.
5151
- To change the default Milvus configuration, add your settings to the **user.yaml** file in the current folder and then restart the service.
5252
- The Milvus data volume is mapped to **volumes/milvus** in the current folder.
@@ -106,6 +106,14 @@ $ bash standalone_embed.sh stop
106106
$ bash standalone_embed.sh delete
107107
```
108108

109+
## Optional dependencies
110+
111+
By default this deployment runs **Woodpecker** (local-filesystem WAL) as the message queue and an **embedded etcd** for metadata — nothing else to install. To use a different message queue or connect external object storage / metadata, see:
112+
113+
- Message queue: [Woodpecker](woodpecker.md) (default) · [Pulsar](mq_pulsar.md) · [Kafka](mq_kafka.md) · [RocksMQ](mq_rocksmq.md)
114+
- Object storage: [MinIO](deploy_s3.md) (default) · [AWS S3](deploy_s3.md) · [Azure Blob](abs.md) · [GCP Cloud Storage](gcs.md) · [Aliyun OSS](deploy_s3.md) · [Tencent COS](deploy_s3.md) · [Huawei OBS](deploy_s3.md) · [S3-compatible](deploy_s3.md)
115+
- Metadata: [etcd](deploy_etcd.md)
116+
109117
## What's next
110118

111119
Having installed Milvus in Docker, you can:

v3.0.x/site/en/getstarted/run-milvus-docker/install_standalone-windows.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ id: install_standalone-windows.md
33
label: Docker
44
related_key: Docker
55
summary: Learn how to install Milvus standalone with Docker Desktop for Windows.
6-
title: Run Milvus in Docker (Linux)
6+
title: Run Milvus in Docker (Windows)
77
---
88

99
# Run Milvus in Docker (Windows)
1010

11+
> By default, this deployment runs **Woodpecker** (local filesystem) as its message queue, so no external message-queue service is required. See [Woodpecker](woodpecker.md).
12+
1113
This page demonstrates how to run Milvus on Windows using Docker Desktop for Windows.​
1214

1315
## Prerequisites​
@@ -109,7 +111,7 @@ If you prefer to start Milvus using Linux commands and shell scripts on Windows,
109111
Stop successfully.​
110112
111113
# Delete Milvus data​
112-
$ bash standalone_embed.sh stop
114+
$ bash standalone_embed.sh delete
113115
Delete Milvus container successfully.​
114116
Delete successfully.​
115117
@@ -141,7 +143,7 @@ Once you have installed Docker Desktop on Microsoft Windows, you can access the
141143
142144
- The **milvus-etcd** container does not expose any ports to the host and maps its data to **volumes/etcd** in the current folder.​
143145
144-
- The **milvus-minio** container serves ports **9090** and **9091** locally with the default authentication credentials and maps its data to **volumes/minio** in the current folder.​
146+
- The **milvus-minio** container serves ports **9000** and **9001** locally with the default authentication credentials and maps its data to **volumes/minio** in the current folder.​
145147
146148
- The **milvus-standalone** container serves ports **19530** locally with the default settings and maps its data to **volumes/milvus** in the current folder.​
147149

v3.0.x/site/en/getstarted/run-milvus-docker/prerequisite-docker.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ The following dependencies will be obtained and configured automatically when Mi
3232
| -------- | ----------------------------- | ---- |
3333
| etcd | 3.5.0 | See [additional disk requirements](#Additional-disk-requirements). |
3434
| MinIO | RELEASE.2024-12-18T13-15-44Z | |
35-
| Pulsar | 2.8.2 | |
35+
| Woodpecker | Bundled with Milvus | Default message queue (embedded); no separate service to install. |
36+
| Pulsar | 2.8.2 | Optional — only if you switch the message queue to Pulsar; not installed by default. |
3637

3738
### Additional disk requirements
3839

0 commit comments

Comments
 (0)