You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by se...@apache.org on 2020/05/20 15:24:42 UTC

[flink] 03/03: [hotfix][docs] Fix comment about RocksDB timer default

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

sewen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git

commit ae6e9e4567462fec63b9ad78b17ebc415919ef2d
Author: Stephan Ewen <se...@apache.org>
AuthorDate: Tue May 19 19:17:01 2020 +0200

    [hotfix][docs] Fix comment about RocksDB timer default
---
 docs/_includes/generated/rocks_db_configuration.html                    | 2 +-
 docs/_includes/generated/state_backend_rocksdb_section.html             | 2 +-
 .../java/org/apache/flink/contrib/streaming/state/RocksDBOptions.java   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/_includes/generated/rocks_db_configuration.html b/docs/_includes/generated/rocks_db_configuration.html
index 1648ab3..ee45dc2 100644
--- a/docs/_includes/generated/rocks_db_configuration.html
+++ b/docs/_includes/generated/rocks_db_configuration.html
@@ -60,7 +60,7 @@
             <td><h5>state.backend.rocksdb.timer-service.factory</h5></td>
             <td style="word-wrap: break-word;">ROCKSDB</td>
             <td><p>Enum</p>Possible values: [HEAP, ROCKSDB]</td>
-            <td>This determines the factory for timer service state implementation. Options are either HEAP (heap-based, default) or ROCKSDB for an implementation based on RocksDB .</td>
+            <td>This determines the factory for timer service state implementation. Options are either HEAP (heap-based) or ROCKSDB for an implementation based on RocksDB.</td>
         </tr>
     </tbody>
 </table>
diff --git a/docs/_includes/generated/state_backend_rocksdb_section.html b/docs/_includes/generated/state_backend_rocksdb_section.html
index a5c9e78..03c10b6 100644
--- a/docs/_includes/generated/state_backend_rocksdb_section.html
+++ b/docs/_includes/generated/state_backend_rocksdb_section.html
@@ -36,7 +36,7 @@
             <td><h5>state.backend.rocksdb.timer-service.factory</h5></td>
             <td style="word-wrap: break-word;">ROCKSDB</td>
             <td><p>Enum</p>Possible values: [HEAP, ROCKSDB]</td>
-            <td>This determines the factory for timer service state implementation. Options are either HEAP (heap-based, default) or ROCKSDB for an implementation based on RocksDB .</td>
+            <td>This determines the factory for timer service state implementation. Options are either HEAP (heap-based) or ROCKSDB for an implementation based on RocksDB.</td>
         </tr>
     </tbody>
 </table>
diff --git a/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBOptions.java b/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBOptions.java
index 5a5470e..9b2e082 100644
--- a/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBOptions.java
+++ b/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBOptions.java
@@ -53,7 +53,7 @@ public class RocksDBOptions {
 		.enumType(PriorityQueueStateType.class)
 		.defaultValue(ROCKSDB)
 		.withDescription(String.format("This determines the factory for timer service state implementation. Options " +
-			"are either %s (heap-based, default) or %s for an implementation based on RocksDB .",
+			"are either %s (heap-based) or %s for an implementation based on RocksDB.",
 			HEAP.name(), ROCKSDB.name()));
 
 	/**