Search before asking
Motivation
We have a "big" kafka topic which ingests small data from many different databases. When sinking the data into paimon ods layer, they need different prefixes and suffixes to indicate their domain. One fixed prefix or suffix could not fit this requirement.
Solution
Add two new config options: --table_prefix_db and --table_suffix_db to specify prefixes and suffixes by db.
For example:
--table_prefix_db dbname1=ods_prefix1_
--table_prefix_db dbname2=ods_prefix2_
...
--table_suffix_db dbname1=_suffix1
--table_suffix_db dbname2=_suffix2
...
The new options have higher priority than --table_prefix and --table_suffix.
Anything else?
No response
Are you willing to submit a PR?