You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This allows me to add the s3 connection capabilities.
Configured a ConfigMap named trino-delta-properties with settings for the Delta connector. This configuration mirrors the Hive setup but excludes hive.security=allow-all due to compatibility issues. It also introduces a Delta-specific setting to enable table registration from S3 storage.
this configuration has an additional parameter delta.register-table-procedure.enabled=true as it'srequired in order to register delta tables that are already in the s3 object storage.
Adjusted podOverrides for both worker and coordinator to mount the ConfigMap. However, this method replaces the entire /stackable/config/catalog directory, inadvertently removing the hive.properties file generated by TrinoCatalog. While sufficient for some scenarios, this approach may not cater to all use cases due to its overriding behavior.
Alternatively use initContainers to inject the Delta connector properties into the existing configuration directory without overwriting existing configurations.
Hi @ruslanguns! Thanks for posting your workaround. There might have been an easier way to achieve this, but I have good news, as we implemented #352 2 weeks ago.
So Delta is supported by our currently nightly version and will be in the next 24.3 release :)
Please feel free to give it a try and give feedback if it works as desired!
Docs: https://trino.io/docs/current/connector/delta-lake.html
I was able to setup a delta connector with the following workaround 👇🏻 :
podOverrides
for both worker and coordinator to mount theConfigMap
. However, this method replaces the entire/stackable/config/catalog
directory, inadvertently removing thehive.properties
file generated byTrinoCatalog
. While sufficient for some scenarios, this approach may not cater to all use cases due to its overriding behavior.The text was updated successfully, but these errors were encountered: