beyond1920 opened a new pull request, #9600:
URL: https://github.com/apache/hudi/pull/9600
### Change Logs
Support table name for meta sync in bootstrap.
Using bootstrap procedure to migrate an existing table into a Hudi table.
```
call run_bootstrap(
table=> "test_db.test_hudi_table",
table_type=>"COPY_ON_WRITE",
bootstrap_path=>"XXX",
base_path=>"XXX",
rowKey_field=>"device_id",
partition_path_field=>"p_date,product",
key_generator_class=>"org.apache.hudi.keygen.ComplexKeyGenerator",
enable_hive_sync=>true,
options => 'hoodie.datasource.hive_sync.mode=hms'
);
```
After sync to HMS, I get a HUDI table which stored as `test_db. unknown ` in
HMS.
The root cause is not set table configure 'META_SYNC_TABLE_NAME' before
start hive sync.
The pr aims to fix this bug.
### Impact
NA
### Risk level (write none, low medium or high below)
NA
### Documentation Update
NA
### Contributor's checklist
- [ ] Read through [contributor's
guide](https://hudi.apache.org/contribute/how-to-contribute)
- [ ] Change Logs and Impact were stated clearly
- [ ] Adequate tests were added if applicable
- [ ] CI passed
--
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]