xiangfu0 commented on a change in pull request #6829:
URL: https://github.com/apache/incubator-pinot/pull/6829#discussion_r617879866
##########
File path: kubernetes/helm/presto/templates/coordinator/configmap.yaml
##########
@@ -30,6 +30,7 @@ data:
pinot.use-date-trunc={{ .Values.pinot.useDateTrunc }}
pinot.infer-date-type-in-schema={{ .Values.pinot.inferDateTypeInSchema }}
pinot.infer-timestamp-type-in-schema={{
.Values.pinot.inferTimestampTypeInSchema }}
+ pinot.use-streaming-for-segment-queries={{
.Values.pinot.useStreamingForSegmentQueries }}
Review comment:
You can remove entire `pinot.properties`
then add:
```
apiVersion: v1
kind: ConfigMap
metadata:
name: presto-catalog
data:
{{- range $name, $catalog := .Values. catalogs }}
{{ $name }}: |
{{- tpl $catalog $ | nindent 4 -}}
{{- end -}}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]