liujinhui1994 commented on a change in pull request #2710:
URL: https://github.com/apache/hudi/pull/2710#discussion_r604658298



##########
File path: 
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieWriteConfig.java
##########
@@ -1032,6 +1033,37 @@ public String getWriteMetaKeyPrefixes() {
     return props.getProperty(WRITE_META_KEY_PREFIXES_PROP);
   }
 
+  /**
+   * Error table configs.
+   */
+  public boolean enableErrorTable() {
+    return 
Boolean.parseBoolean(props.getProperty(HoodieErrorTableConfig.ERROR_TABLE_ENABLE_PROP));
+  }
+
+  public String getErrorTableBasePath() {
+    return 
props.getProperty(HoodieErrorTableConfig.ERROR_TABLE_BASE_PATH_PROP);
+  }
+
+  public String getErrorTableName() {
+    return props.getProperty(HoodieErrorTableConfig.ERROR_TABLE_NAME_PROP);
+  }
+
+  public int getErrorTableInsertParallelism() {

Review comment:
       I think it is reasonable here, you need to get these values from 
HoodieWriteConfig
   




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

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


Reply via email to