Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class BoundedInMemoryQueue<I, O> implements Iterable<O> {
/** Rate used for sampling records to determine avg record size in bytes. **/
public static final int RECORD_SAMPLING_RATE = 64;

/** Maximum records that will be cached **/
/** Maximum records that will be cached. **/
private static final int RECORD_CACHING_LIMIT = 128 * 1024;

private static final Logger LOG = LogManager.getLogger(BoundedInMemoryQueue.class);
Expand Down