Neha Pawar
Xiang Fu
# ssd-storageclass.yaml
apiVersion: <http://storage.k8s.io/v1|storage.k8s.io/v1>
kind: StorageClass
metadata:
name: faster
provisioner: <http://kubernetes.io/gce-pd|kubernetes.io/gce-pd>
parameters:
type: pd-ssd
Xiang Fu
Xiang Fu
# ssd-claim.yaml
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: my-volume
spec:
storageClassName: faster
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 30Gi
Xiang Fu
Xiang Fu
Xiang Fu
Xiang Fu
Tim Chan
09/10/2020, 9:09 PMXiang Fu
pd-ssd
Xiang Fu
Xiang Fu
Xiang Fu
Xiang Fu
Xiang Fu
helm inspect values pinot/pinot > /tmp/pinot-values.yaml
Xiang Fu
/tmp/pinot-values.yaml
Xiang Fu
helm install pinot pinot/pinot -n pinot --values /tmp/pinot-values.yaml
Xiang Fu
Tim Chan
09/10/2020, 9:17 PMTing Chen
09/11/2020, 12:30 AMNeha Pawar
Neha Pawar
Joey Pereira
09/15/2020, 3:59 AMinstanceId
variable to Pinot without hardcoding it into a conf
file? For example, passing it in as an env variable or CLI parameter. Context is the conf
file is being puppeted and the ID will be obtained during a launch script.
Being able to plumb it through while calling pinot-admin.sh
would be nice convenient, but this if not it's probably just as easy to copy the configuration, edit it, and load the edited version.Xiang Fu
instanceId
can only be set through conf
files. One way to workaround this is to have a wrapper start script to update the conf
file then start pinot.Kishore G
Kishore G
A future commit will enable properties loaded from PINOT_X environment variables.
Joey Pereira
09/15/2020, 5:20 AMNeha Pawar
Kenny Bastani
09/16/2020, 6:31 PMudk
09/18/2020, 3:01 PM