Is using the POST API the only way to enable the m...
# getting-started
e
Is using the POST API the only way to enable the multi-stage query engine? If I want to configure it w/ helm, where should I add it?
m
You can enable it with this config:
Copy code
pinot.multistage.engine.enabled
Probably add that under the extra config section in Helm
e.g.
Copy code
controller:
  extra:
    configs: |-
      pinot.multistage.engine.enabled=true
server:
  extra:
    configs: |-
      pinot.multistage.engine.enabled=true
broker:
  extra:
    configs: |-
      pinot.multistage.engine.enabled=true
e
ah… thanks Mark!