You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During crates/core/src/table/mod.rs:96 load_configs<I, K, V>, hudi global configs (a hudi-defaults.conf file loaded in dir specified by HUDI_CONF_DIR env var) should be loaded as well.
The text was updated successfully, but these errors were encountered:
As externalized-config-file described , should scan all files under HUDI_CONF_DIR directory, and maybe filter with *.conf.
And i havn't found the format of this file, maybe properties, ini etc. Just got some ideas from Hudi Issues #5291, like the following.
# Default system properties included when running Hudi jobs.
# This is useful for setting default environmental settings.
# Example:
hoodie.datasource.write.table.type COPY_ON_WRITE
hoodie.datasource.write.hive_style_partitioning false
@gohalo great! as per the linked doc, only hudi-defaults.conf should be loaded under HUDI_CONF_DIR. The format should be like a conf file as you showed or delimited by = like
During
crates/core/src/table/mod.rs:96 load_configs<I, K, V>
, hudi global configs (ahudi-defaults.conf
file loaded in dir specified byHUDI_CONF_DIR
env var) should be loaded as well.The text was updated successfully, but these errors were encountered: