soumilshah1995 commented on issue #11243:
URL: https://github.com/apache/hudi/issues/11243#issuecomment-2135723425

   have you tried async way
   ```
   
   spark-submit \
       --class org.apache.hudi.utilities.HoodieIndexer \
        --properties-file spark-config.properties \
       --packages 
'org.apache.hudi:hudi-spark3.4-bundle_2.12:0.14.0,org.apache.hadoop:hadoop-aws:3.3.2'
 \
       --master 'local[*]' \
       --executor-memory 1g \
       
/Users/soumilshah/IdeaProjects/SparkProject/DeltaStreamer/jar/hudi-utilities-slim-bundle_2.12-0.14.0.jar
 \
        --mode scheduleAndExecute \
       --base-path 's3a://huditest/hudidb/table_name=bronze_orders' \
       --table-name bronze_orders \
       --index-types RECORD_INDEX \
       --hoodie-conf "hoodie.metadata.enable=true" \
       --hoodie-conf "hoodie.metadata.record.index.enable=true" \
       --hoodie-conf "hoodie.metadata.index.async=true" \
       --hoodie-conf 
"hoodie.write.concurrency.mode=optimistic_concurrency_control" \
       --hoodie-conf 
"hoodie.write.lock.provider=org.apache.hudi.client.transaction.lock.InProcessLockProvider"
 \
       --parallelism 2 \
       --spark-memory 2g
   
   ```


-- 
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]

Reply via email to