zhoulii commented on code in PR #8104:
URL: https://github.com/apache/paimon/pull/8104#discussion_r3349233529


##########
paimon-python/pypaimon/common/options/core_options.py:
##########
@@ -885,6 +900,12 @@ def data_file_external_paths_strategy(self, default=None):
     def data_file_external_paths_specific_fs(self, default=None):
         return 
self.options.get(CoreOptions.DATA_FILE_EXTERNAL_PATHS_SPECIFIC_FS, default)
 
+    def data_file_external_paths_weights(self, default=None):
+        value = self.options.get(CoreOptions.DATA_FILE_EXTERNAL_PATHS_WEIGHTS, 
default)
+        if not value:
+            return None
+        return [int(w.strip()) for w in value.split(",") if w.strip()]

Review Comment:
   thanks, fixed



-- 
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