How does Pino's partitioning work when partitions ...
# general
c
How does Pino's partitioning work when partitions increase in Kafka topics? Is there any problem? 'stream ingestion with upsert' https://docs.pinot.apache.org/basics/data-import/upsert#use-strictreplicagroup-for-routing 'routing partitioning' https://docs.pinot.apache.org/operators/operating-pinot/tuning/routing#partitioning
n
this periodic task auto detects and starts the consumption from new partitions: https://docs.pinot.apache.org/basics/components/controller#realtimesegmentvalidationmanager
upsert metadata is maintained at a partition level. so change in partitioning logic would make your upserts incorrect.
c
@Neha Pawar Yes, I know that periodic task auto detects and starts the consumption from new partitions. My question is, if the broker gets the partition number from the condition value of the query and prunes the segment by the name of the segment, I don't think it will be able to find exactly the segments before and after the partition is added.