diff --git a/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/services/ListBlobQueue.java b/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/services/ListBlobQueue.java index 095df4679469d2..80742eb5bb965f 100644 --- a/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/services/ListBlobQueue.java +++ b/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/services/ListBlobQueue.java @@ -52,17 +52,6 @@ class ListBlobQueue { private volatile AzureBlobFileSystemException failureFromProducer; - /** - * The maximum difference allowed between the maximum size of the queue and - * the current size of the queue. This parameter is used to control the behavior - * of the producer-consumer pattern in the ListBlobQueue class. It determines when - * the producer should stop adding more items to the queue. If the difference - * between the maximum size of the queue and the current size of the queue is - * less than or equal to maxConsumptionLag, the producer will wait until there - * is more room in the queue. This helps to maintain a balance between the rate - * of production and consumption, preventing frequent production with very less items. - */ - /** * Maximum number of entries in the queue allowed for letting the producer to * produce. If the current size of the queue is greater than or equal to