Skip to content

Commit cd2e21b

Browse files
author
Mateusz Czeladka
committed
chore: 1.2.7 version upgrade.
1 parent 0ddc8e7 commit cd2e21b

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ Default is `online`.
8383
For every Release we provide pre-built docker images stored in the DockerHub Repositories of the Cardano Foundation ([DockerHub](https://hub.docker.com/orgs/cardanofoundation/repositories))
8484
To start it use the following command:
8585
```bash
86-
docker run --name rosetta -v {CUSTOM_MOUNT_PATH}:/node --env-file ./docker/.env.dockerfile --env-file ./docker/.env.docker-profile-mid-level -p 8082:8082 --shm-size=4g -d cardanofoundation/cardano-rosetta-java:1.2.6
86+
docker run --name rosetta -v {CUSTOM_MOUNT_PATH}:/node --env-file ./docker/.env.dockerfile --env-file ./docker/.env.docker-profile-mid-level -p 8082:8082 --shm-size=4g -d cardanofoundation/cardano-rosetta-java:1.2.7
8787
```
8888
Changes to the configuration can be made by adjusting the `docker/.env.dockerfile` file. For more information on the environment variables, please refer to the [Wiki](https://github.com/cardano-foundation/cardano-rosetta-java/wiki/5.-Environment-Variables).
8989

9090
If you want to use the `cardano-submit-api` you can additionally expose port `8090`. It can then be used to submit raw cbor transaction (API documentation here: [Link](https://input-output-hk.github.io/cardano-rest/submit-api/))
9191
```bash
92-
docker run --name rosetta -v {CUSTOM_MOUNT_PATH}:/node --env-file ./docker/.env.dockerfile --env-file ./docker/.env.docker-profile-mid-level -p 8090:8090 -p 8082:8082 --shm-size=4g -d cardanofoundation/cardano-rosetta-java:1.2.6
92+
docker run --name rosetta -v {CUSTOM_MOUNT_PATH}:/node --env-file ./docker/.env.dockerfile --env-file ./docker/.env.docker-profile-mid-level -p 8090:8090 -p 8082:8082 --shm-size=4g -d cardanofoundation/cardano-rosetta-java:1.2.7
9393
```
9494
### Docker compose
9595
If needed we also provide all components needed to run Rosetta in a docker-compose file.

load-tests/README.MD

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ options:
8686
--url BASE_URL Base URL for the Rosetta API service (default: http://127.0.0.1:8082)
8787
--csv CSV_FILE Path to CSV file with test data (default: ./mainnet-data.csv)
8888
--release RELEASE_VERSION
89-
Release version for reporting (default: 1.2.6-dev)
89+
Release version for reporting (default: 1.2.7)
9090
--hardware-profile HARDWARE_PROFILE
9191
Hardware profile ID for reporting (default: entry_level)
9292
--machine-specs MACHINE_SPECS
@@ -189,10 +189,10 @@ The script creates a timestamped directory containing:
189189

190190
| ID | Release | Hardware | Machine Specs | Endpoint | Max Concurrency | p95 (ms) | p99 (ms) |
191191
| --- |-----------| ----------- | ------------------------------------------------ | ---------------------- | --------------- | -------- | -------- |
192-
| 1 | 1.2.6-dev | entry_level | 4 cores, 8 threads, 32GB RAM, SSD, Intel Core i3 | /network/status | 4 | 1ms | 1ms |
193-
| 2 | 1.2.6-dev | entry_level | 4 cores, 8 threads, 32GB RAM, SSD, Intel Core i3 | /account/balance | 4 | 35ms | 39ms |
194-
| 3 | 1.2.6-dev | entry_level | 4 cores, 8 threads, 32GB RAM, SSD, Intel Core i3 | /account/coins | 4 | 33ms | 39ms |
195-
| 4 | 1.2.6-dev | entry_level | 4 cores, 8 threads, 32GB RAM, SSD, Intel Core i3 | /block | 4 | 120ms | 129ms |
196-
| 5 | 1.2.6-dev | entry_level | 4 cores, 8 threads, 32GB RAM, SSD, Intel Core i3 | /block/transaction | 4 | 84ms | 95ms |
197-
| 6 | 1.2.6-dev | entry_level | 4 cores, 8 threads, 32GB RAM, SSD, Intel Core i3 | /search/transactions | 4 | 4ms | 4ms |
198-
| 7 | 1.2.6-dev | entry_level | 4 cores, 8 threads, 32GB RAM, SSD, Intel Core i3 | /construction/metadata | 4 | 1ms | 1ms |
192+
| 1 | 1.2.6 | entry_level | 4 cores, 8 threads, 32GB RAM, SSD, Intel Core i3 | /network/status | 4 | 1ms | 1ms |
193+
| 2 | 1.2.6 | entry_level | 4 cores, 8 threads, 32GB RAM, SSD, Intel Core i3 | /account/balance | 4 | 35ms | 39ms |
194+
| 3 | 1.2.6 | entry_level | 4 cores, 8 threads, 32GB RAM, SSD, Intel Core i3 | /account/coins | 4 | 33ms | 39ms |
195+
| 4 | 1.2.6 | entry_level | 4 cores, 8 threads, 32GB RAM, SSD, Intel Core i3 | /block | 4 | 120ms | 129ms |
196+
| 5 | 1.2.6 | entry_level | 4 cores, 8 threads, 32GB RAM, SSD, Intel Core i3 | /block/transaction | 4 | 84ms | 95ms |
197+
| 6 | 1.2.6 | entry_level | 4 cores, 8 threads, 32GB RAM, SSD, Intel Core i3 | /search/transactions | 4 | 4ms | 4ms |
198+
| 7 | 1.2.6 | entry_level | 4 cores, 8 threads, 32GB RAM, SSD, Intel Core i3 | /construction/metadata | 4 | 1ms | 1ms |

load-tests/stability_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def parse_args():
4141
parser.add_argument('--csv', dest='csv_file',
4242
default=os.path.join(os.path.dirname(os.path.abspath(__file__)), "data/mainnet-data.csv"),
4343
help='Path to CSV file with test data')
44-
parser.add_argument('--release', dest='release_version', default="1.2.6-dev",
44+
parser.add_argument('--release', dest='release_version', default="1.2.7",
4545
help='Release version for reporting')
4646

4747
# Hardware profile options

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</licenses>
2727

2828
<properties>
29-
<revision>1.2.6</revision>
29+
<revision>1.2.7</revision>
3030
<java.version>21</java.version>
3131
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3232
<version.spring-boot>3.4.3</version.spring-boot>

0 commit comments

Comments
 (0)