[HiveConnector] How to support FileSystemConfiguration at run-time? #9878
-
At present, Config is bound to the Connector layer. In some scenarios, we need to change the configuration at the query layer. For example, the user changes the id & key of the S3 table, or for hdfs table users want some tables to support HA configuration, some tables not. Can anyone help with this issue and see how the velox community plans for the long term? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
@skadilover One way to make progress is to describe a few use cases you'd like to enable and see which connector APIs you'd need to change.
Looks like these can be table-level properties included in HiveTableHandle. |
Beta Was this translation helpful? Give feedback.
@skadilover We can achieve your use case by creating two HiveConnector instances. In Presto terms, this would map to two catalogs.
For use cases with expiring keys, we have a proposal here #8071