Doris-operator for doris creates, configures and manages doris cluster running on kubernetes. Operator provide deploy and manage fe, be, cn components.
Users custom DorisCluster
CRD to deploy doris as demand.
- Create Doris clusters by custom DorisCluster resource
- Customized storage provisioning(VolumeClaim templates)
- Customized pod templates
- Doris configuration management
- Doris version upgrades
- Provided HorizontalPodAutoscaler v1 and v2 versions for compute node.
- Kubernetes 1.19+
- Install custom resource definitions:
kubectl apply -f https://raw.githubusercontent.com/selectdb/doris-operator/master/config/crd/bases/doris.selectdb.com_dorisclusters.yaml
- Install the operator with its RBAC rules:
the default deployed namespace is doris, when deploy on specific namespace, please pull yaml and updatenamespace
field.
kubectl apply -f https://raw.githubusercontent.com/selectdb/doris-operator/master/config/operator/operator.yaml
The Quick Start Guide have some examples to deploy doris on kubernetes. they represent some mode to deploy doris on different situation. for only deploy fe and be without persistentVolume:
kubectl apply -f https://raw.githubusercontent.com/selectdb/doris-operator/master/doc/examples/doriscluster-sample.yaml
This doriscluster-sample-storageclass.yaml displayed to deploy doris with StorageClass mode to provide persistent Volume.
- Now operator only support the fqdn mode to deploy doris on kubernetes. you should config set
enable_fqdn_mode = true
in every component config file. The apache doris docker image default value is false. recommend you reference example/doriscluster-sample-comfigmap.yaml to custom config to deploy doris on kubernetes. - fe and be print log in /opt/apache-doris/fe/log, /opt/apache-doris/be/log. When have not log processing system on k8s, mount a volume for log directory is good idea. the config to mount volume for log can reference the docexample/doriscluster-sample-storageclass.yaml.