manishgaurav84 opened a new issue, #8954:
URL: https://github.com/apache/hudi/issues/8954
I am using the Glue 3.0 version to execute meta dat indexing for a hudi
table.
non_global_bloom_indexing = {
'hoodie.table.name': tbl_name,
'hoodie.datasource.write.precombine.field': precombine,
'hoodie.datasource.write.recordkey.field': primary_key,
'hoodie.datasource.write.table.type': 'COPY_ON_WRITE',
'hoodie.datasource.write.hive_style_partitioning':'true',
'hoodie.datasource.write.operation': 'upsert',
'hoodie.datasource.hive_sync.enable': 'true',
'hoodie.datasource.hive_sync.table': tbl_name,
'hoodie.datasource.hive_sync.database': db_name,
'hoodie.datasource.hive_sync.partition_fields': partition_fields,
'hoodie.datasource.hive_sync.mode': 'hms',
'hoodie.datasource.hive_sync.partition_extractor_class':'org.apache.hudi.hive.HiveStylePartitionValueExtractor',
'hoodie.datasource.write.keygenerator.class':'org.apache.hudi.keygen.SimpleKeyGenerator',
"hoodie.datasource.write.partitionpath.field": partition_fields,
'hoodie.upsert.shuffle.parallelism': 1*8*9,
# 'hoodie.combine.before.insert': 'true',
'hoodie.metadata.enable' : 'true',
"hoodie.metadata.index.bloom.filter.enable":'true',
'hoodie.metadata.index.column.stats.enable' :'true',
'hoodie.metadata.index.column.stats.column.list':partition_fields,
'hoodie.enable.data.skipping':'true',
"hoodie.index.type":'BLOOM',
"hoodie.bloom.index.use.metadata" : 'true',
"hoodie.bloom.index.filter.type": "DYNAMIC_V0",
"hoodie.bloom.index.use.caching": "true",
'hoodie.datasource.write.partitionpath.urlencode': 'true'
}
As expected:
--
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]