You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by lz...@apache.org on 2022/11/11 13:37:19 UTC

[flink-table-store] branch master updated: [FLINK-29994] Fix missing a period in description of lookup.cache-rows

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

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-table-store.git


The following commit(s) were added to refs/heads/master by this push:
     new bfef114b [FLINK-29994] Fix missing a period in description of lookup.cache-rows
bfef114b is described below

commit bfef114bfce78d0ffa2cc952606894d043d82874
Author: Stan <53...@users.noreply.github.com>
AuthorDate: Fri Nov 11 21:37:12 2022 +0800

    [FLINK-29994] Fix missing a period in description of lookup.cache-rows
    
    This closes #374
---
 docs/layouts/shortcodes/generated/rocksdb_configuration.html            | 2 +-
 .../java/org/apache/flink/table/store/connector/RocksDBOptions.java     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/layouts/shortcodes/generated/rocksdb_configuration.html b/docs/layouts/shortcodes/generated/rocksdb_configuration.html
index d6d409db..dccf10aa 100644
--- a/docs/layouts/shortcodes/generated/rocksdb_configuration.html
+++ b/docs/layouts/shortcodes/generated/rocksdb_configuration.html
@@ -12,7 +12,7 @@
             <td><h5>lookup.cache-rows</h5></td>
             <td style="word-wrap: break-word;">10000</td>
             <td>Long</td>
-            <td>The maximum number of rows to store in the cache</td>
+            <td>The maximum number of rows to store in the cache.</td>
         </tr>
         <tr>
             <td><h5>rocksdb.block.blocksize</h5></td>
diff --git a/flink-table-store-connector/src/main/java/org/apache/flink/table/store/connector/RocksDBOptions.java b/flink-table-store-connector/src/main/java/org/apache/flink/table/store/connector/RocksDBOptions.java
index 2889abd1..ee46f416 100644
--- a/flink-table-store-connector/src/main/java/org/apache/flink/table/store/connector/RocksDBOptions.java
+++ b/flink-table-store-connector/src/main/java/org/apache/flink/table/store/connector/RocksDBOptions.java
@@ -53,7 +53,7 @@ public class RocksDBOptions {
             key("lookup.cache-rows")
                     .longType()
                     .defaultValue(10_000L)
-                    .withDescription("The maximum number of rows to store in the cache");
+                    .withDescription("The maximum number of rows to store in the cache.");
 
     // --------------------------------------------------------------------------
     // Provided configurable DBOptions within Flink