// This row is a queue entry. If currentQueue is null, meaning it's a new queue encountered during scan.
if (currentQueue == null) {
QueueName queueName = QueueEntryRow.getQueueName(
appName, flowName, cell.getRowArray(), cell.getRowOffset(), cell.getRowLength());
currentQueue = queueName.toBytes();
currentQueueRowPrefix = QueueEntryRow.getQueueRowPrefix(queueName);
consumerConfig = configCache.getConsumerConfig(currentQueue);
}
if (consumerConfig == null) {