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 @@ -72,7 +72,7 @@
<td><h5>state.backend.rocksdb.writebuffer.size</h5></td>
<td style="word-wrap: break-word;">(none)</td>
<td>String</td>
<td>The amount of data built up in memory (backed by an unsorted log on disk) before converting to a sorted on-disk files. RocksDB has default writebuffer size as '4MB'.</td>
<td>The amount of data built up in memory (backed by an unsorted log on disk) before converting to a sorted on-disk files. RocksDB has default writebuffer size as '64MB'.</td>
</tr>
</tbody>
</table>
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public class RocksDBConfigurableOptions implements Serializable {
key("state.backend.rocksdb.writebuffer.size")
.noDefaultValue()
.withDescription("The amount of data built up in memory (backed by an unsorted log on disk) " +
"before converting to a sorted on-disk files. RocksDB has default writebuffer size as '4MB'.");
"before converting to a sorted on-disk files. RocksDB has default writebuffer size as '64MB'.");

public static final ConfigOption<String> MAX_WRITE_BUFFER_NUMBER =
key("state.backend.rocksdb.writebuffer.count")
Expand Down