configuration issue #8701
-
try to deploy nessie + spark + iceberg + s3a on k8s envirnoment working on nessie with postgresql but getting this error pod/nessie-6f86d47f77-dxv4j 0/1 CrashLoopBackOff 10 (54s ago) 28m WARN [io.qua.config] (main) Unrecognized configuration key "quarkus.rest.gzip.enabled" was provided; it will be ignored; verify that the dependency extension for this configuration is set or that you did not make a typo nessie-postgresql.yaml file
postgres-creds
values.yaml for helm chart
|
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 9 replies
-
@JunseoChoJJ I see 2 potential errors in your config:
|
Beta Was this translation helpful? Give feedback.
-
I think you need to change your |
Beta Was this translation helpful? Give feedback.
-
NodePort service should be used when contacting the service from outside the K8s cluster. From inside you need a ClusterIP service. If you need to access the service from both inside and outside, you can create 2 services.
That's more a problem of understanding how Postgres interprets the jdbc URL: https://jdbc.postgresql.org/documentation/use/ In general, you need to provide at least: Note that the database and the schema need to be created upfront. CREATE DATABASE mydb;
\connect mydb
CREATE SCHEMA myschema; |
Beta Was this translation helpful? Give feedback.
-
@adutra Can I ask you about namespace? Is it schema name? I got this error when I am deploying sparkapplication on spark-operator
https://github.com/projectnessie/nessie-demos/blob/main/notebooks/nessie-iceberg-demo-nba.ipynb and for spark with nessice.uri why do you need to put api/v2 in the end? when I didn't put api/v2, i got an error for "please configure client-api-version in the catalog properties explicity. |
Beta Was this translation helpful? Give feedback.
-
tag and branch are creating well but I cannot get into nessie ui tag above images . |
Beta Was this translation helpful? Give feedback.
I think you need to change your
postgres-service
service type toClusterIP
as well.