You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had searched in the issues and found no similar issues.
Version
24.1.0
What's Wrong?
Currently cannot set the persistent volume claim storage size for FE as any value configured other than 100Gi get's set to 100Gi.
# Licensed to the Apache Software Foundation (ASF) under one# or more contributor license agreements. See the NOTICE file# distributed with this work for additional information# regarding copyright ownership. The ASF licenses this file# to you under the Apache License, Version 2.0 (the# "License"); you may not use this file except in compliance# with the License. You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing,# software distributed under the License is distributed on an# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY# KIND, either express or implied. See the License for the# specific language governing permissions and limitations# under the License.apiVersion: disaggregated.cluster.doris.com/v1kind: DorisDisaggregatedClustermetadata:
name: test-disaggregated-clusterspec:
metaService:
image: selectdb/doris.ms-ubuntu:3.0.2configMaps:
- name: ms-configmapfdb:
# address: ${fdb_endpoint}configMapNamespaceName:
name: ${fdb-configmap}namespace: ${fdb-namespace}feSpec:
replicas: 2image: selectdb/doris.fe-ubuntu:3.0.2persistentVolume:
# logNotStore: truepersistentVolumeClaimSpec:
# storageClassName: ${storageclass_name}accessModes:
- ReadWriteOnceresources:
requests:
storage: 10GicomputeGroups:
- uniqueId: cg1replicas: 3image: selectdb/doris.be-ubuntu:3.0.2persistentVolume:
# logNotStore: truepersistentVolumeClaimSpec:
# storageClassName: ${storageclass_name}accessModes:
- ReadWriteOnceresources:
requests:
storage: 100Gi
- uniqueId: cg2replicas: 3image: selectdb/doris.be-ubuntu:3.0.2persistentVolume:
# logNotStore: truepersistentVolumeClaimSpec:
# storageClassName: ${storageclass_name}accessModes:
- ReadWriteOnceresources:
requests:
storage: 100Gi
This appears to be due to the following lines that require the PVC to be 100Gi or greater. Suggest allowing smaller volume sizes for smaller/test deployments.
This limitation is due to the configuration of setting pvc storage to apply to both 'meta' and 'log', which have different upper and lower limits. I will modify the strategy here to allow free definition of meta and limit the size of log.
Search before asking
Version
24.1.0
What's Wrong?
Currently cannot set the persistent volume claim storage size for FE as any value configured other than 100Gi get's set to 100Gi.
10Gi gets interpreted as 100Gi.
What You Expected?
Expect storage size to match configured value of persistent volume claim template.
How to Reproduce?
No response
Anything Else?
No response
Are you willing to submit PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: