, Backend (BE), and Compute Node (CN) components within your Kubernetes environment. It also includes Helm chart for easy installation and configuration. With StarRocks Kubernetes Operator, you can easily manage the lifecycle of StarRocks clusters, such as installing, scaling, upgrading etc.
[!NOTE]
The StarRocks k8s operator was designed to be a level 2 operator. See [***] to understand more about the capabilities of a level 2 operator.
In order to use StarRocks in Kubernetes, you need to install:
There are two ways to install Operator and StarRocks Cluster.
Note: In every release, we will provide the latest version of the yaml Manifest and Helm Chart. You can find them in [***]
Please see Deploy StarRocks With Operator document for more details.
consolekubectl apply -f [***]
Apply the Operator manifest. By default, the Operator is configured to install in the starrocks namespace. To use the Operator in a custom namespace, download the Operator manifest and edit all instances of namespace: starrocks to specify your custom namespace. Then apply this version of the manifest to the cluster with kubectl apply -f {local-file-path} instead of using the command below.
consolekubectl apply -f [***]
You need to prepare a separate yaml file to deploy the StarRocks. The starrocks cluster CRD fields explains in api.md. The examples directory contains some simple example for reference.
You can use any of the template yaml file as a starting point. You can further add more configurations into the template yaml file following this deployment documentation.
For demonstration purpose, we use the starrocks-fe-and-be.yaml example template to start a 3 FE and 3 BE StarRocks cluster.
Here's an example yaml for Docker Desktop with local desktop access with StarRocks 3.2.1 so you can upgrade in later steps.
atwong@Albert-CelerData sroperatortest % cat starrocks-fe-and-be.yaml apiVersion: starrocks.com/v1 kind: StarRocksCluster metadata: name: starrockscluster-sample namespace: starrocks spec: starRocksFeSpec: image: starrocks/fe-ubuntu:3.2.1 replicas: 3 requests: cpu: 1 memory: 2Gi limits: cpu: 4 memory: 16Gi service: type: Load*** starRocksBeSpec: image: starrocks/be-ubuntu:3.2.1 replicas: 3 requests: cpu: 1 memory: 2Gi limits: cpu: 4 memory: 8Gi
consolekubectl apply -f starrocks-fe-and-be.yaml
To connect, just use the mysql client and connect to the StarRocks cluster port 9030. An example of a connection is shown below.
[!NOTE]
If you want to connect remotely or through your desktop, you will need to enable the k8s Load Balander.
atwong@Albert-CelerData sroperatortest % kubectl -n starrocks get svc NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE starrockscluster-sample-be-search ClusterIP None <none> 9050/TCP 5m2s starrockscluster-sample-be-service ClusterIP 10.103.248.52 <none> 9060/TCP,8040/TCP,9050/TCP,8060/TCP 5m2s starrockscluster-sample-fe-search ClusterIP None <none> 9030/TCP 6m22s starrockscluster-sample-fe-service Load*** 10.99.14.222 localhost 8030:32326/TCP,9020:32578/TCP,9030:30774/TCP,9010:32505/TCP 6m22s atwong@Albert-CelerData sroperatortest % mysql -h 127.0.0.1 -P 9030 -uroot Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.1.0 3.2.1-79ee91d Copyright (c) 2000, 2024, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql>
To upgrade, just patch the StarRocks cluster.
consolekubectl -n starrocks patch starrockscluster starrockscluster-sample --type='merge' -p '{"spec":{"starRocksFeSpec":{"image":"starrocks/fe-ubuntu:latest"}}}' kubectl -n starrocks patch starrockscluster starrockscluster-sample --type='merge' -p '{"spec":{"starRocksBeSpec":{"image":"starrocks/be-ubuntu:latest"}}}'
To resize, just patch the StarRocks cluster.
[!IMPORTANT]
Once you deploy with 3 FE nodes, you are in HA mode. Do not resize FE nodes below 3 since that will affect cluster quorum. This rule doesn't apply to CN nodes.
consolekubectl -n starrocks patch starrockscluster starrockscluster-sample --type='merge' -p '{"spec":{"starRocksBeSpec":{"replicas":9}}}'
To delete/stop the StarRocks cluster, just execute the delete command.
consolekubectl delete -f starrocks-fe-and-be.yaml
or
consolekubectl delete starrockscluster starrockscluster-sample -n starrocks
To delete/stop the StarRocks Operate, just execute the delete command.
consolekubectl delete -f [***]
Please see kube-starrocks for how to install both operator and StarRocks cluster by Helm Chart.
If you want more flexibility in managing your StarRocks clusters, you can deploy Operator using operator Helm Chart and StarRocks using starrocks Helm Chart separately.
来自真实用户的反馈,见证轩辕镜像的优质服务
免费版仅支持 Docker Hub 加速,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。
免费版仅支持 docker.io;专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等。
当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。
通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。
先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。
使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。
探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
在 Linux 系统配置镜像加速服务
在 Docker Desktop 配置镜像加速
Docker Compose 项目配置加速
Kubernetes 集群配置 Containerd
在宝塔面板一键配置镜像加速
Synology 群晖 NAS 配置加速
飞牛 fnOS 系统配置镜像加速
极空间 NAS 系统配置加速服务
爱快 iKuai 路由系统配置加速
绿联 NAS 系统配置镜像加速
QNAP 威联通 NAS 配置加速
Podman 容器引擎配置加速
HPC 科学计算容器配置加速
ghcr、Quay、nvcr 等镜像仓库
无需登录使用专属域名加速
需要其他帮助?请查看我们的 常见问题 或 官方QQ群: 13763429