804e commented on issue #13049: URL: https://github.com/apache/hudi/issues/13049#issuecomment-2760729051
When I use bucket indexes, queries and inserts are fast ``` CREATE TABLE hudi_table( ts BIGINT, uuid VARCHAR(40) PRIMARY KEY NOT ENFORCED, rider VARCHAR(20), driver VARCHAR(20), fare DOUBLE, city VARCHAR(20) ) PARTITIONED BY (`city`) WITH ( 'connector' = 'hudi', 'path' = 'hdfs://hudi01.jafron.com:8020/datalake/hudi_table3', 'table.type' = 'MERGE_ON_READ', 'hoodie.index.type' = 'BUCKET' ); ```  -- 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