Skip to content

Commit 49f923b

Browse files
authored
increased admin DB poolsize from default 10 to 25 to allow more publisher/sequencer jobs to execute in parallel (#480)
* increased admin DB poolsize from default 10 to 25
1 parent 8bb6462 commit 49f923b

File tree

11 files changed

+14
-9
lines changed

11 files changed

+14
-9
lines changed

.github/workflows/reusable-build-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
id: save-artifact-name
5454
run: echo "name=${{ env.GITHUB_CODEDEPLOY_ARTIFACT_NAME }}" >> "$GITHUB_OUTPUT"
5555
- name: Save CodeDeploy artifact content
56-
uses: actions/upload-artifact@v3
56+
uses: actions/upload-artifact@v4
5757
with:
5858
name: ${{ env.GITHUB_CODEDEPLOY_ARTIFACT_NAME }}
5959
path: ${{ env.CODEDEPLOY_DIR }}

.github/workflows/reusable-s3-codedeploy-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
# create directory to download artifacts
4444
- run: mkdir download
4545
- name: Fetch CodeDeploy artifacts
46-
uses: actions/download-artifact@v3
46+
uses: actions/download-artifact@v4
4747
with:
4848
name: ${{ inputs.pipeline-artifact-name }}
4949
path: download

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Naksha_1.1.3
2+
3+
- Increased DB Pool size of Naksha Admin DB from 10 to 25 to allow additional sequencer/publisher jobs to run in parallel.
4+
15
## Naksha_1.1.2
26

37
- Fixed batch-size failure issue for SNS publishing where one of the message fails during publish, then we optimize by continuing from that failure instead of re-processing entire batch

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
<groupId>com.here.xyz</groupId>
4343
<artifactId>xyz-hub</artifactId>
44-
<version>1.1.2</version>
44+
<version>1.1.3</version>
4545
<packaging>pom</packaging>
4646

4747
<modules>

xyz-connectors/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>com.here.xyz</groupId>
2626
<artifactId>xyz-hub</artifactId>
2727
<relativePath>../</relativePath>
28-
<version>1.1.2</version>
28+
<version>1.1.3</version>
2929
</parent>
3030

3131
<licenses>

xyz-hub-service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>com.here.xyz</groupId>
2626
<artifactId>xyz-hub</artifactId>
2727
<relativePath>../pom.xml</relativePath>
28-
<version>1.1.2</version>
28+
<version>1.1.3</version>
2929
</parent>
3030

3131
<licenses>

xyz-hub-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>com.here.xyz</groupId>
2626
<artifactId>xyz-hub</artifactId>
2727
<relativePath>../</relativePath>
28-
<version>1.1.2</version>
28+
<version>1.1.3</version>
2929
</parent>
3030

3131
<licenses>

xyz-models/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>com.here.xyz</groupId>
2626
<artifactId>xyz-hub</artifactId>
2727
<relativePath>../</relativePath>
28-
<version>1.1.2</version>
28+
<version>1.1.3</version>
2929
</parent>
3030

3131
<licenses>

xyz-psql-connector/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>com.here.xyz</groupId>
2626
<artifactId>xyz-hub</artifactId>
2727
<relativePath>../</relativePath>
28-
<version>1.1.2</version>
28+
<version>1.1.3</version>
2929
</parent>
3030

3131
<licenses>

xyz-txn-handler/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>com.here.xyz</groupId>
2626
<artifactId>xyz-hub</artifactId>
2727
<relativePath>../</relativePath>
28-
<version>1.1.2</version>
28+
<version>1.1.3</version>
2929
</parent>
3030

3131
<licenses>

0 commit comments

Comments
 (0)