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
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
[org.pro.ser.con.ConfigChecks] (main) Both authentication (AuthN) and authorization (AuthZ) are disabled, all requests to Nessie will be permitted. This means: everybody with access to Nessie can read, write and change everything. Recommended action: Enable AuthN & AuthZ, see https://projectnessie.org/try/configuration/
[org.pro.qua.pro.sto.JdbcBackendBuilder] (main) Selected datasource: postgresql
ERROR [io.qua.run.Application] (main) Failed to start application (with profile [prod]): java.lang.RuntimeException: Failed to start quarkus
Caused by: java.lang.RuntimeException: java.sql.SQLException: Acquisition timeout while waiting for new connection
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
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
[org.pro.ser.con.ConfigChecks] (main) Both authentication (AuthN) and authorization (AuthZ) are disabled, all requests to Nessie will be permitted. This means: everybody with access to Nessie can read, write and change everything. Recommended action: Enable AuthN & AuthZ, see https://projectnessie.org/try/configuration/
[org.pro.qua.pro.sto.JdbcBackendBuilder] (main) Selected datasource: postgresql
ERROR [io.qua.run.Application] (main) Failed to start application (with profile [prod]): java.lang.RuntimeException: Failed to start quarkus
Caused by: java.lang.RuntimeException: java.sql.SQLException: Acquisition timeout while waiting for new connection
postgresql.yaml file
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: postgres-data-pvc
namespace: nessie
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 50Gi
storageClassName: nfs-client
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: postgres-statefulset
namespace: nessie
spec:
replicas: 1
selector:
matchLabels:
app: postgres
serviceName: postgres-service
template:
metadata:
labels:
app: postgres
spec:
containers:
- name: postgres
image: postgres:latest
ports:
- containerPort: 5432
env:
- name: POSTGRES_DB
value: nessie_catalog
- name: POSTGRES_USER
value: postgres_user
- name: POSTGRES_PASSWORD
value: postgres_password
volumeMounts:
- name: postgres-data
mountPath: /var/lib/postgresql/data
volumes:
- name: postgres-data
persistentVolumeClaim:
claimName: postgres-data-pvc
apiVersion: v1
kind: Service
metadata:
name: postgres-service
namespace: nessie
spec:
type: NodePort
selector:
app: postgres
ports:
- protocol: TCP
port: 5432
targetPort: 5432
nodePort: 30001 # Choose a suitable nodePort
apiVersion: v1
kind: Secret
metadata:
name: postgresql-creds
namespace: nessie
type: Opaque
data:
username: 'base64'
password: 'base64'
postgres-creds
POSTGRESQL_USERNAME=postgres_user
POSTGRESQL_PASSWORD=postgres_password
values.yaml for helm chart
versionStoreType: JDBC
JDBC datasource settings. Only required when using JDBC version store type; ignored otherwise.
jdbc:
-- The JDBC connection string. If you are using Nessie OSS images, then only
PostgreSQL and MariaDB are supported.
jdbcUrl: jdbc:postgresql://postgres-service:30001/nessie
secret:
# -- The secret name to pull datasource credentials from.
name: postgres-creds
# -- The secret key storing the datasource username.
username: POSTGRESQL_USERNAME
# -- The secret key storing the datasource password.
password: POSTGRESQL_PASSWORD
Beta Was this translation helpful? Give feedback.
All reactions