skip to Main Content

Amazon web services – SpringBoot, Hibernate and AWS RDS (Aurora) with new CA rds-ca-ecc384-g1

I have a SpringBoot application that communicates to PostgreSQL with the following configuration, deployed via AWS BeanStalk: spring.datasource.url=jdbc:postgresql://{SUBDOMAIN}.us-east-2.rds.amazonaws.com:5432/{DATABASE_NAME} spring.datasource.username={USER} spring.datasource.password={PASSWORD} spring.datasource.hikari.maximum-pool-size=2 spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation= true spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.PostgreSQLDialect spring.jpa.properties.hibernate.show_sql=true spring.jpa.open-in-view=false spring.jpa.hibernate.ddl-auto=create Everything was going well until I have updated the AWS Aurora certificate…

VIEW QUESTION

Debian – How to create tables in posgresql in helm

I have deployed postgresql instance in k8s using helm and creating a database using values.yaml. Now How to create table. global: postgresql: auth: # Added below credentials for testing postgresPassword: "postgresqladmin" username: "admin" password: "admin" database: "postgresqlDB" containerPorts: postgresql: 5432…

VIEW QUESTION

Postgresql – Postgres – Select Query Optimization

I want to optimize the following DB SELECT query: SELECT ls.caller_id, ls.caller_path_id, ls.caller_path_name, ls.caller_data->>'worker' AS worker, ls.caller_stage, ls.current_status, ls.date_inserted AS date_closed, ls.caller_data->>'name' AS firstname, ls.caller_data->>'surname' AS surname, ls.caller_data->>'cell' AS cell, ls.caller_data->>'home' AS home, ls.caller_data->>'work' AS work, ls.caller_data->>'other' AS other FROM…

VIEW QUESTION
Back To Top
Search