-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicate mount when defining /etc/trino/catalog
in additionalVolumeMounts
#210
Comments
|
Do I understand correctly, that dynamic catalog management doesn't work with the Helm Chart? |
It's not being tested, but it should work. Because of the issue I described above, it requires some workarounds, like changing the location of the catalog files in Trino. See #178 |
Ok thanks for your help, do the default catalogs and additional catalogs still work when I redefine this path? |
Of course not, they're mounted under the original location. You need to manually initialize the volume where catalogs are stored. This could be done using an init container, if the volume is provisioned automatically. |
Then I could copy over the catalogs with an init container to the dynamic volume I guess. This should be the simplest solution. |
/etc/trino/catalog
in additionalVolumeMounts
To close this issue here: I post my new configuration:
|
Let's keep this open, we don't have any other issue to address these default catalogs. I was thinking about introducing a new property for defining all catalogs explicitly. |
@nineinchnick I am very interested in the dynamic catalog support feature. Can I help you with this somehow? |
Sure! We first need to refactor the chart a bit to allow not adding any default catalogs like tpch here: https://github.com/trinodb/charts/blob/main/charts/trino/templates/configmap-catalog.yaml#L10 - ideally in a backward-compatible way. Then we can avoid mounting the catalog configmap if no static catalogs are defined, and instead allow mounting a volume. I'd be careful with the chart providing any specific options for the PVs, since it's a very generic Kubernetes feature, so let's try working on this in small increments. |
So to understand, the issue here is that Trino should have read-write permissions in the folder where the catalogs are located. If I mount the configmap-catalog as using subPath in the catalogs folder, where I will also mount my PV, would this work? The rest of the folder would retain read-write permissions while the mounted catalog would be read only. Would Trino need write permissions on this file for any reason? |
We don't want to mix mounting the configmap and a volume at the same path. |
If you don't mind me asking, why not? Is it considered a bad practice? |
We don't have a reason for this and it's to keep things simple. |
I am thinking about my use-case, where I would like to have a set of "default" catalogs defined in the chart values, and then be able to also add new catalogs dynamically. Or is it too specific? In this regard I have a question: if I enable the dynamic catalogs feature, are the catalogs present in the Regarding the default catalogs, we could move them from hardcoded in the configmap to the default value of the additionalCatalogs variable in values.yaml. Users can then decide if they want to keep them or not. |
Maybe create a separate issue for it. |
Seems like a bug when trying to add volumes to the helm chart on the coordinator:
Error from server: failed to create typed patch object (kube-trino/trino-coordinator; apps/v1, Kind=Deployment): .spec.template.spec.containers[name="trino-coordinator"].volumeMounts: duplicate entries for key [mountPath="/etc/trino/catalog"]
This is how it is defined in the default values (the volume is defined on both keys):
The text was updated successfully, but these errors were encountered: