You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ta...@apache.org on 2021/05/31 02:47:58 UTC

[flink] branch release-1.13 updated: [FLINK-22759][docs] Correct the applicability of some RocksDB related options as per operator

This is an automated email from the ASF dual-hosted git repository.

tangyun pushed a commit to branch release-1.13
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.13 by this push:
     new 1518f96  [FLINK-22759][docs] Correct the applicability of some RocksDB related options as per operator
1518f96 is described below

commit 1518f96310c97209de139af5727741f7115f1db0
Author: Yun Tang <my...@live.com>
AuthorDate: Mon May 24 17:26:09 2021 +0800

    [FLINK-22759][docs] Correct the applicability of some RocksDB related options as per operator
---
 .../shortcodes/generated/rocksdb_configurable_configuration.html      | 4 ++--
 .../flink/contrib/streaming/state/RocksDBConfigurableOptions.java     | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/layouts/shortcodes/generated/rocksdb_configurable_configuration.html b/docs/layouts/shortcodes/generated/rocksdb_configurable_configuration.html
index a55c319..b41c300 100644
--- a/docs/layouts/shortcodes/generated/rocksdb_configurable_configuration.html
+++ b/docs/layouts/shortcodes/generated/rocksdb_configurable_configuration.html
@@ -54,7 +54,7 @@
             <td><h5>state.backend.rocksdb.files.open</h5></td>
             <td style="word-wrap: break-word;">(none)</td>
             <td>Integer</td>
-            <td>The maximum number of open files (per TaskManager) that can be used by the DB, '-1' means no limit. RocksDB has default configuration as '-1'.</td>
+            <td>The maximum number of open files (per stateful operator) that can be used by the DB, '-1' means no limit. RocksDB has default configuration as '-1'.</td>
         </tr>
         <tr>
             <td><h5>state.backend.rocksdb.log.level</h5></td>
@@ -66,7 +66,7 @@
             <td><h5>state.backend.rocksdb.thread.num</h5></td>
             <td style="word-wrap: break-word;">(none)</td>
             <td>Integer</td>
-            <td>The maximum number of concurrent background flush and compaction jobs (per TaskManager). RocksDB has default configuration as '1'.</td>
+            <td>The maximum number of concurrent background flush and compaction jobs (per stateful operator). RocksDB has default configuration as '1'.</td>
         </tr>
         <tr>
             <td><h5>state.backend.rocksdb.write-batch-size</h5></td>
diff --git a/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBConfigurableOptions.java b/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBConfigurableOptions.java
index d901522..f952bb7 100644
--- a/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBConfigurableOptions.java
+++ b/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBConfigurableOptions.java
@@ -61,7 +61,7 @@ public class RocksDBConfigurableOptions implements Serializable {
                     .intType()
                     .noDefaultValue()
                     .withDescription(
-                            "The maximum number of concurrent background flush and compaction jobs (per TaskManager). "
+                            "The maximum number of concurrent background flush and compaction jobs (per stateful operator). "
                                     + "RocksDB has default configuration as '1'.");
 
     public static final ConfigOption<Integer> MAX_OPEN_FILES =
@@ -69,7 +69,7 @@ public class RocksDBConfigurableOptions implements Serializable {
                     .intType()
                     .noDefaultValue()
                     .withDescription(
-                            "The maximum number of open files (per TaskManager) that can be used by the DB, '-1' means no limit. "
+                            "The maximum number of open files (per stateful operator) that can be used by the DB, '-1' means no limit. "
                                     + "RocksDB has default configuration as '-1'.");
 
     public static final ConfigOption<InfoLogLevel> LOG_LEVEL =