abhishekagarwal87 commented on PR #14424: URL: https://github.com/apache/druid/pull/14424#issuecomment-1596849349
@pjain1 - The answer any question of sort "How is data consumed across multiple topics if XYZ is happening with topic A and topic B" is same as the answer to the question of "How is data consumed across multiple partitions if XYZ is happening with partition A and partition B" Q - In what order record from different topics are pulled A - In what order record from different partitions are pulled Q - What happens if one of topics does not have any record A - Same thing that happens if one of partitions does not have any record The topic really is an irrelevant entity. For Kafka servers, consuming data from tp0:0 and tp1:0 is the same as consuming from tp0:0 and tp0:1. We ask for partitions for a list of topics and from there on, the work unit for code is partition. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
