liyubin117 commented on code in PR #125:
URL: 
https://github.com/apache/flink-connector-elasticsearch/pull/125#discussion_r2370921580


##########
docs/content/docs/connectors/table/elasticsearch.md:
##########
@@ -244,6 +244,58 @@ Connector Options
        By default uses built-in <code>'json'</code> format. Please refer to <a 
href="{{< ref "docs/connectors/table/formats/overview" >}}">JSON Format</a> 
page for more details.
       </td>
     </tr>
+    <tr>
+      <td><h5>lookup.cache</h5></td>
+      <td>optional</td>
+      <td>yes</td>
+      <td style="word-wrap: break-word;">NONE</td>
+      <td><p>Enum</p>Possible values: NONE, PARTIAL</td>
+      <td>The cache strategy for the lookup table. Currently supports NONE (no 
caching) and PARTIAL (caching entries on lookup operation in external 
database).</td>
+    </tr>
+    <tr>
+      <td><h5>lookup.partial-cache.max-rows</h5></td>
+      <td>optional</td>
+      <td>yes</td>
+      <td style="word-wrap: break-word;">(none)</td>
+      <td>Long</td>
+      <td>The max number of rows of lookup cache, over this value, the oldest 
rows will be expired. 
+        "lookup.cache" must be set to "PARTIAL" to use this option.</td>
+    </tr>
+    <tr>
+      <td><h5>lookup.partial-cache.expire-after-write</h5></td>
+      <td>optional</td>
+      <td>yes</td>
+      <td style="word-wrap: break-word;">(none)</td>
+      <td>Duration</td>
+      <td>The max time to live for each rows in lookup cache after writing 
into the cache
+        "lookup.cache" must be set to "PARTIAL" to use this option. </td>
+    </tr>
+    <tr>
+      <td><h5>lookup.partial-cache.expire-after-access</h5></td>
+      <td>optional</td>
+      <td>yes</td>
+      <td style="word-wrap: break-word;">(none)</td>
+      <td>Duration</td>
+      <td>The max time to live for each rows in lookup cache after accessing 
the entry in the cache.
+      "lookup.cache" must be set to "PARTIAL" to use this option. </td>
+    </tr>
+    <tr>
+      <td><h5>lookup.partial-cache.caching-missing-key</h5></td>

Review Comment:
   should be 'lookup.partial-cache.cache-missing-key'



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to