manojpec commented on a change in pull request #4352: URL: https://github.com/apache/hudi/pull/4352#discussion_r793421839
########## File path: hudi-client/hudi-client-common/src/main/java/org/apache/hudi/metadata/HoodieBackedTableMetadataWriter.java ########## @@ -128,8 +130,21 @@ this.dataWriteConfig = writeConfig; this.engineContext = engineContext; this.hadoopConf = new SerializableConfiguration(hadoopConf); + this.metrics = Option.empty(); + this.enabledPartitionTypes = new ArrayList<>(); if (writeConfig.isMetadataTableEnabled()) { + this.enabledPartitionTypes.add(MetadataPartitionType.FILES); + if (writeConfig.getMetadataConfig().isMetadataIndexBloomFilterEnabled()) { + MetadataPartitionType.BLOOM_FILTERS.setFileGroupCount( Review comment: Right, we should not be relying on the config always to know the right file group count for each of these partitions. Fixed this logic to pick up the file group count from the latest file slices, if it is bootstrapped. Otherwise take from the config. -- 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: commits-unsubscr...@hudi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org