Hi Devs, I am trying to follow this doc and enabl...
# general
l
Hi Devs, I am trying to follow this doc and enabling partition pruner for our hybrid tables https://docs.pinot.apache.org/operators/operating-pinot/tuning/routing#querying-all-segments Noticing following issue with
routingConfig
. When partition pruner is enabled, queries are returning the partial results, esp for REALTIME. As per my understanding, this is not returning the results for CONSUMING segments. Wanted to check, if this partition pruner can be used for REALTIME tables. Partial results with:
Copy code
"routing": {
      "segmentPrunerTypes": [
        "time",
        "partition"
      ]
    },
Full results with:
Copy code
"routing": {
      "segmentPrunerTypes": [
        "time"
      ]
    },