1
0

[HUDI-2995] Enabling metadata table by default (#4295)

- Enabling metadata table by default
This commit is contained in:
Manoj Govindassamy
2021-12-14 13:11:19 -08:00
committed by GitHub
parent c8d6bd8898
commit bc8bf043d5

View File

@@ -44,7 +44,7 @@ public final class HoodieMetadataConfig extends HoodieConfig {
// Enable the internal Metadata Table which saves file listings
public static final ConfigProperty<Boolean> ENABLE = ConfigProperty
.key(METADATA_PREFIX + ".enable")
.defaultValue(false)
.defaultValue(true)
.sinceVersion("0.7.0")
.withDocumentation("Enable the internal metadata table which serves table metadata like level file listings");