rangareddy commented on issue #15887:
URL: https://github.com/apache/hudi/issues/15887#issuecomment-5066231560

   This issue was reviewed as part of the JIRA-migrated backlog triage.
   
   Findings: The ability to pass Hudi write properties inline to the bootstrap 
procedure was added by #8387 ([HUDI-6041], merged 2023-05-26). 
`RunBootstrapProcedure` now accepts an `options` parameter that takes 
comma-separated key=value pairs and applies them as write properties, so a 
separate `props_file_path` on HDFS is no longer required, e.g.:
   
   ```
   call run_bootstrap(table => 'test_hudi_table', table_type => 'COPY_ON_WRITE',
     bootstrap_path => '...', base_path => '...', rowKey_field => 'id', 
partition_path_field => 'dt',
     options => 'hoodie.datasource.write.hive_style_partitioning=true');
   ```
   
   See `RunBootstrapProcedure.scala` (parameter index 17 `options`, parsed at 
lines ~136-143 on master).
   
   If you're still hitting this on a recent version, please reopen with details.
   
   Closing as fixed.


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