The Frontend (FE) component of StarRocks in a Kubernetes environment fails to start properly. The container is in a ContainerNotReady
state, and the logs indicate an error due to an existing FE instance with the same host name.
#571
Labels
bug
Something isn't working
Describe the bug
The Frontend (FE) component of StarRocks in a Kubernetes environment fails to start properly. The container is in a
ContainerNotReady
state, and the logs indicate an error due to an existing FE instance with the same host name.To Reproduce
Steps to reproduce the behavior:
GET /api/health
on port 8030Expected behavior
The FE component should start successfully, pass the health probes, and join the StarRocks cluster without any hostname conflicts, becoming ready for operation.
Please complete the following information
Additional Information
Container State and Probes
Container Status
Logs
Root Cause
The error message indicates that there is already an FE instance with the same hostname (
starrocks-cluster-fe-1.starrocks-cluster-fe-search.starrocks.svc.cluster.local
) in the cluster, which prevents the new instance from joining.Resolution Steps
apiVersion: starrocks.com/v1
kind: StarRocksCluster
metadata:
name: starrocks-cluster
namespace: starrocks
spec:
starRocksFeSpec:
image: starrocks/fe-ubuntu:latest
replicas: 3
starRocksBeSpec:
image: starrocks/be-ubuntu:latest
replicas: 3
The text was updated successfully, but these errors were encountered: