SteNicholas commented on code in PR #812:
URL: https://github.com/apache/incubator-paimon/pull/812#discussion_r1161659348


##########
paimon-core/src/main/java/org/apache/paimon/CoreOptions.java:
##########
@@ -568,6 +568,27 @@ public class CoreOptions implements Serializable {
                             "Only used to force TableScan to construct 
'ContinuousCompactorStartingScanner' and "
                                     + "'ContinuousCompactorFollowUpScanner' 
for dedicated streaming compaction job.");
 
+    public static final ConfigOption<StreamingReadMode> STREAMING_READ_MODE =
+            key("streaming-read-mode")
+                    .enumType(StreamingReadMode.class)
+                    .noDefaultValue()
+                    .withDescription(
+                            Description.builder()
+                                    .text("Read the store type of the paimon 
table.")
+                                    .linebreak()
+                                    .linebreak()
+                                    .text("Possible values:")
+                                    .linebreak()
+                                    .list(
+                                            text(
+                                                    
StreamingReadMode.FILE.getValue()
+                                                            + ": Will read 
from the file store"))

Review Comment:
   ```suggestion
                                                               + ": Reads from 
the data of table file."))
   ```



-- 
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: issues-unsubscr...@paimon.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to