We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Is it possible to alter the Whitelist to change from one partition to another while inside the consume loop?
I tried this and it didn't work:
foreach (var message in consumer.Consume()) { if(something) { options.PartitionWhitelist = new List { 1 }; consumer = new Consumer(options); } ...