vishal-genea commented on issue #12951: URL: https://github.com/apache/hudi/issues/12951#issuecomment-2713046141
After bucket index, this is the result  It tool 11 min to sink 15k records, and before this, I had deleted everything from S3, it was a fresh insert, still took huge amount of time. I have to sink 250k records every hour, so i this case it won't be feasible. this is the updated config ``` " 'connector' = 'hudi'," + " 'path' = '" + S3_PATH + "'," + " 'table.type' = 'COPY_ON_WRITE'," + " 'hoodie.table.name' = '" + HUDI_TABLE_NAME + "'," + " 'hoodie.datasource.write.recordkey.field' = 'event_id'," + " 'hoodie.datasource.write.partitionpath.field' = 'customer_uuid,year,month'," + " 'hoodie.datasource.write.precombine.field' = 'time'," + " 'hoodie.schema.on.read.enable' = 'true'," + " 'hoodie.parquet.compression.codec' = 'snappy'," + " 'hoodie.index.type' = 'BUCKET'," + " 'hoodie.datasource.write.operation' = 'bulk_insert',"+ " 'write.tasks' = '8',"+ " 'hoodie.populate.meta.fields' = 'true',"+ " 'hoodie.table.keygenerator.class' = 'org.apache.hudi.keygen.NonpartitionedKeyGenerator',"+ " 'hoodie.metadata.enable' = 'false'"+ ``` -- 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]
