Lý Thành
04/22/2026, 8:09 AMRocky
04/22/2026, 8:09 AMallin1-ubuntu Docker image. This image contains all the necessary components (FE and BE) in a single container, making it the fastest way to get started.
* Command:
bash
docker pull starrocks/allin1-ubuntu:latest
docker run -p 9030:9030 -p 8030:8030 -p 8040:8040 -itd --name quickstart starrocks/allin1-ubuntu
*This typically points to the latest stable release (likely v4.0.x or v4.1.x).*
2. Recommended for Features (Newest)
If you want to explore the latest capabilities like StarRocks 4.1 features (released in April 2026), such as the new multi-tenant data management, range-based data distribution, and enhanced vector search (ANN) capabilities, use:
* Version: v4.1.x
* Why: It includes the most advanced optimizations for Data Lakehouse (Iceberg/Paimon) and performance improvements for JSON and AI workloads.
3. Recommended for Stability (Long-Term Support)
If your "demo" is a precursor to a production evaluation where stability is the primary concern, you should use the designated stable branch:
* Version: v3.3.x (e.g., v3.3.22)
* Why: The 3.3 series is currently considered the most stable "bugfix-only" version, ensuring a very high level of reliability and compatibility.
Summary Table
Goal | Recommended Version | Deployment Method
Fastest Setup | latest tag | Docker (allin1-ubuntu)
Newest Features | v4.1.x | Docker or Binary
Stable Evaluation | v3.3.x | Docker or Binary
Rocky's Tip: If you are connecting via a SQL client, remember that StarRocks is compatible with MySQL 5.7 or later protocols. You can simply use mysql -P 9030 -h 127.0.0.1 -u root to log in after starting your container!
References
• quick_start/iceberg.md
• quick_start/shared-nothing.md