Skip to content
Merged
Show file tree
Hide file tree
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 @@ -85,7 +85,7 @@ public final class ConfigurationKeys {
/**
* What data block buffer to use.
* <br>
* Options include: "disk"(Default), "array", and "bytebuffer".
* Options include: "disk", "array", and "bytebuffer"(Default).
* <br>
* Default is {@link FileSystemConfigurations#DATA_BLOCKS_BUFFER_DEFAULT}.
* Value: {@value}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,13 @@ public final class FileSystemConfigurations {
*/
public static final String DATA_BLOCKS_BUFFER_DISK = "disk";

public static final String DATA_BLOCKS_BYTEBUFFER = "bytebuffer";

/**
* Default buffer option: {@value}.
*/
public static final String DATA_BLOCKS_BUFFER_DEFAULT =
DATA_BLOCKS_BUFFER_DISK;
DATA_BLOCKS_BYTEBUFFER;

/** The blockId of each block should be of the same length. */
public static final int BLOCK_ID_LENGTH = 60;
Expand Down