From 6362d9812796ef41d83ebba91d813a45209025ad Mon Sep 17 00:00:00 2001 From: Azhar Saleem Date: Thu, 22 Jan 2026 11:34:28 -0500 Subject: [PATCH 1/6] Updates with-ca YAML --- matchbox-server/with-ca/application.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/matchbox-server/with-ca/application.yaml b/matchbox-server/with-ca/application.yaml index 0c566e46fb..0d43247c88 100644 --- a/matchbox-server/with-ca/application.yaml +++ b/matchbox-server/with-ca/application.yaml @@ -1,6 +1,12 @@ server: servlet: context-path: /matchboxv3 +spring: + datasource: + url: "jdbc:postgresql://ps-ca-hapi-fhir-db-dev.ccq3yll5qome.ca-central-1.rds.amazonaws.com:5432/matchbox" + username: matchbox + password: matchbox + driverClassName: org.postgresql.Driver jpa: properties: hibernate.dialect: org.hibernate.dialect.PostgreSQLDialect @@ -65,7 +71,7 @@ matchbox: httpReadOnly: true hapi: fhir: - server_address: https://matchbox.apibox.ca/matchboxv3/fhir + server_address: https://dev-matchbox.apibox.ca/matchboxv3/fhir staticLocation: file:/apps/ implementationguides: fhir_r4_core: From 46a64a304b052c488a09ecce03aab639ed90af98 Mon Sep 17 00:00:00 2001 From: Azhar Saleem Date: Thu, 22 Jan 2026 12:25:47 -0500 Subject: [PATCH 2/6] Increase to 14GB Heap Size --- matchbox-server/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matchbox-server/Dockerfile b/matchbox-server/Dockerfile index 4a9ccb78c6..0bbe5afd9b 100644 --- a/matchbox-server/Dockerfile +++ b/matchbox-server/Dockerfile @@ -22,5 +22,5 @@ COPY with-ca/ca.on.oh-ereferral-econsult-0.12.0-alpha1.0.7-snapshots.tgz igs USER matchbox -ENTRYPOINT ["java", "-Xmx8192M", "-Dfhir.settings.path=config/fhir-settings.json", "-Dspring.config.additional-location=file:config/application.yaml", "-jar", "matchbox.jar"] +ENTRYPOINT ["java", "-Xms14g", "-Xmx14g", "-Dfhir.settings.path=config/fhir-settings.json", "-Dspring.config.additional-location=file:config/application.yaml", "-jar", "matchbox.jar"] From 911f72bbf122302ed0467ac11079290062afbcef Mon Sep 17 00:00:00 2001 From: Azhar Saleem Date: Mon, 26 Jan 2026 17:39:35 -0500 Subject: [PATCH 3/6] Increase to 14GB Heap Size --- .../nginx/conf.d/elasticbeanstalk/001_custom.conf | 2 +- matchbox-server/with-ca/application.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.platform/nginx/conf.d/elasticbeanstalk/001_custom.conf b/.platform/nginx/conf.d/elasticbeanstalk/001_custom.conf index 272db21dd0..f47f66e832 100644 --- a/.platform/nginx/conf.d/elasticbeanstalk/001_custom.conf +++ b/.platform/nginx/conf.d/elasticbeanstalk/001_custom.conf @@ -3,6 +3,6 @@ # Global directive for upload size client_max_body_size 100M; client_body_timeout 300s; # allow up to 2 minutes for upload -proxy_connect_timeout 60s; +proxy_connect_timeout 240s; proxy_send_timeout 240s; proxy_read_timeout 240s; diff --git a/matchbox-server/with-ca/application.yaml b/matchbox-server/with-ca/application.yaml index 0d43247c88..a83d2931e4 100644 --- a/matchbox-server/with-ca/application.yaml +++ b/matchbox-server/with-ca/application.yaml @@ -2,11 +2,11 @@ server: servlet: context-path: /matchboxv3 spring: - datasource: - url: "jdbc:postgresql://ps-ca-hapi-fhir-db-dev.ccq3yll5qome.ca-central-1.rds.amazonaws.com:5432/matchbox" - username: matchbox - password: matchbox - driverClassName: org.postgresql.Driver +# datasource: +# url: "jdbc:postgresql://ps-ca-hapi-fhir-db-dev.ccq3yll5qome.ca-central-1.rds.amazonaws.com:5432/matchbox" +# username: matchbox +# password: matchbox +# driverClassName: org.postgresql.Driver jpa: properties: hibernate.dialect: org.hibernate.dialect.PostgreSQLDialect From 39222147439a9d691675e43c48d5f5105935c787 Mon Sep 17 00:00:00 2001 From: Azhar Saleem Date: Tue, 27 Jan 2026 11:34:40 -0500 Subject: [PATCH 4/6] Minor update --- matchbox-server/with-ca/application.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/matchbox-server/with-ca/application.yaml b/matchbox-server/with-ca/application.yaml index a83d2931e4..acccc88126 100644 --- a/matchbox-server/with-ca/application.yaml +++ b/matchbox-server/with-ca/application.yaml @@ -7,9 +7,9 @@ spring: # username: matchbox # password: matchbox # driverClassName: org.postgresql.Driver - jpa: - properties: - hibernate.dialect: org.hibernate.dialect.PostgreSQLDialect +# jpa: +# properties: +# hibernate.dialect: org.hibernate.dialect.PostgreSQLDialect matchbox: fhir: context: From 7780c0b6f8c5a2425e5046c96a6725f2dcb22416 Mon Sep 17 00:00:00 2001 From: Azhar Saleem Date: Tue, 27 Jan 2026 12:25:39 -0500 Subject: [PATCH 5/6] Minor update --- .platform/nginx/conf.d/elasticbeanstalk/001_custom.conf | 6 +++--- matchbox-server/with-ca/application.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.platform/nginx/conf.d/elasticbeanstalk/001_custom.conf b/.platform/nginx/conf.d/elasticbeanstalk/001_custom.conf index f47f66e832..aafee53310 100644 --- a/.platform/nginx/conf.d/elasticbeanstalk/001_custom.conf +++ b/.platform/nginx/conf.d/elasticbeanstalk/001_custom.conf @@ -3,6 +3,6 @@ # Global directive for upload size client_max_body_size 100M; client_body_timeout 300s; # allow up to 2 minutes for upload -proxy_connect_timeout 240s; -proxy_send_timeout 240s; -proxy_read_timeout 240s; +proxy_connect_timeout 600s; +proxy_send_timeout 600s; +proxy_read_timeout 600s; diff --git a/matchbox-server/with-ca/application.yaml b/matchbox-server/with-ca/application.yaml index acccc88126..46d767b46f 100644 --- a/matchbox-server/with-ca/application.yaml +++ b/matchbox-server/with-ca/application.yaml @@ -14,7 +14,7 @@ matchbox: fhir: context: fhirVersion: 4.0.1 - txServer: https://tx.fhir.org + txServer: https://terminologystandardsservice.ca/tx/fhir txServerCache: false onlyOneEngine: false suppressWarnInfo: From 08452f815ed6e938bc462edeb2541d3e4be2cdee Mon Sep 17 00:00:00 2001 From: Azhar Saleem Date: Tue, 27 Jan 2026 14:54:37 -0500 Subject: [PATCH 6/6] Minor update --- matchbox-server/with-ca/application.yaml | 28 ++++++++++++------------ 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/matchbox-server/with-ca/application.yaml b/matchbox-server/with-ca/application.yaml index 46d767b46f..4b097ec260 100644 --- a/matchbox-server/with-ca/application.yaml +++ b/matchbox-server/with-ca/application.yaml @@ -2,14 +2,14 @@ server: servlet: context-path: /matchboxv3 spring: -# datasource: -# url: "jdbc:postgresql://ps-ca-hapi-fhir-db-dev.ccq3yll5qome.ca-central-1.rds.amazonaws.com:5432/matchbox" -# username: matchbox -# password: matchbox -# driverClassName: org.postgresql.Driver -# jpa: -# properties: -# hibernate.dialect: org.hibernate.dialect.PostgreSQLDialect + datasource: + url: "jdbc:postgresql://ps-ca-hapi-fhir-db-dev.ccq3yll5qome.ca-central-1.rds.amazonaws.com:5432/matchbox-v4" + username: matchbox + password: matchbox + driverClassName: org.postgresql.Driver + jpa: + properties: + hibernate.dialect: org.hibernate.dialect.PostgreSQLDialect matchbox: fhir: context: @@ -93,18 +93,18 @@ hapi: hl7-terminology-r4: name: hl7.terminology.r4 version: 6.0.2 - ips110: - name: hl7.fhir.uv.ips - version: 1.1.0 +# ips110: +# name: hl7.fhir.uv.ips +# version: 1.1.0 ips200bt: name: hl7.fhir.uv.ips version: 2.0.0-ballot mhd422: name: ihe.iti.mhd version: 4.2.2 - mhd410: - name: ihe.iti.mhd - version: 4.1.0 +# mhd410: +# name: ihe.iti.mhd +# version: 4.1.0 pixm300: name: ihe.iti.pixm version: 3.0.0