CTTY commented on code in PR #6882:
URL: https://github.com/apache/hudi/pull/6882#discussion_r1037608955


##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieWriteConfig.java:
##########
@@ -165,6 +167,16 @@ public class HoodieWriteConfig extends HoodieConfig {
           + "Hudi stores all the main meta-data about commits, savepoints, 
cleaning audit logs "
           + "etc in .hoodie directory under this base path directory.");
 
+  public static final ConfigProperty<String> STORAGE_PATH = ConfigProperty
+      .key(HoodieTableConfig.HOODIE_STORAGE_PATH_KEY)
+      .noDefaultValue()
+      .withDocumentation("Base storage path for Hudi table");
+
+  public static final ConfigProperty<String> STORAGE_STRATEGY_CLASS_NAME = 
ConfigProperty
+      .key(HoodieTableConfig.HOODIE_STORAGE_STRATEGY_CLASS_NAME_KEY)
+      .defaultValue(HoodieTableConfig.StorageStrategy.DEFAULT.value)

Review Comment:
   I think you mean 
`HoodieTableConfig.HOODIE_STORAGE_STRATEGY_CLASS_NAME.defaultValue()`? 



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