Skip to content

Commit 751a241

Browse files
committed
Bumped 22.10 to minor version 4
1 parent a0988bf commit 751a241

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
glibc_version_x86: 2.17
2525
glibc_version_arm64: 2.35
2626
skip_test: true
27-
- rondb_version: 22.10.3
27+
- rondb_version: 22.10.4
2828
is_latest_rondb_release: true
2929
glibc_version_x86: 2.28
3030
glibc_version_arm64: 2.28

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Commands to run:
8080
```bash
8181
# Run docker-compose cluster with image from DockerHub
8282
./build_run_docker.sh \
83-
--rondb-version 22.10.1 \
83+
--rondb-version 22.10.4 \
8484
--num-mgm-nodes 1 \
8585
--node-groups 1 \
8686
--replication-factor 2 \
@@ -154,7 +154,7 @@ The Docker images come with a set of benchmarks pre-installed. To run any of the
154154

155155
# Running with a custom size; The benchmarks are run on the API containers and make queries towards the mysqld containers; this means that both types are needed.
156156
./build_run_docker.sh \
157-
-v 22.10.1 -m 1 -g 1 -r 2 -my 2 -bn 1 \
157+
-v 22.10.4 -m 1 -g 1 -r 2 -my 2 -bn 1 \
158158
--run-benchmark <sysbench_single, sysbench_multi, dbt2_single>
159159
```
160160

build.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/bash
22

33
VERSION="$(< "$SCRIPT_DIR/VERSION" sed -e 's/^[[:space:]]*//' -e '/-SNAPSHOT$/s/.*/dev/' ./VERSION)"
4-
RONDB_IMAGE_NAME=rondb-standalone:22.10.3
5-
RONDB_VERSION=22.10.3
6-
RONDB_TARBALL_URI=https://repo.hops.works/master/rondb-22.10.3-linux-glibc2.28-arm64_v8.tar.gz
4+
RONDB_IMAGE_NAME=rondb-standalone:22.10.4
5+
RONDB_VERSION=22.10.4
6+
RONDB_TARBALL_URI=https://repo.hops.works/master/rondb-22.10.4-linux-glibc2.28-arm64_v8.tar.gz
77

88
docker buildx build . \
99
--tag $RONDB_IMAGE_NAME \

build_run_docker.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ SAVE_SAMPLE_FILES=
4949
DETACHED=
5050
RONDB_SIZE=small
5151
SQL_INIT_SCRIPT_CLI_DIR=$SCRIPT_DIR/resources/sql_init_scripts
52-
RONDB_VERSION=22.10.1
52+
RONDB_VERSION=22.10.4
5353

5454
function print_usage() {
5555
cat <<EOF

managed_rondb/desired_state.jsonc

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
// A logical clock to perform rolling restarts of RonDB; it can never be higher than the Id
1010
"RonDBRunningSince": 1,
1111
// Make sure to adjust RonDBDownloadLink when changing this
12-
"RonDBVersion": "22.10.3",
12+
"RonDBVersion": "22.10.4",
1313
/*
1414
The url nginx/hopsworks_proxy is a reverse proxy to repo.hops.works,
1515
which is where Hopsworks hosts RonDB builds:
1616
*/
17-
"RonDBDownloadLink": "http://nginx/hopsworks_proxy/master/rondb-22.10.3-linux-glibc2.28-arm64_v8.tar.gz",
17+
"RonDBDownloadLink": "http://nginx/hopsworks_proxy/master/rondb-22.10.4-linux-glibc2.28-arm64_v8.tar.gz",
1818
// A logical clock to perform rolling restarts of the ndb-agent; it can never be higher than the Id
1919
"NdbAgentRunningSince": 1,
2020
/*

resources/healthcheck.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# - "Node 1: not connected" # exit code 0
2424
# - "3: Node not found" # exit code 1
25-
# - "Node 2: started (RonDB-22.10.3)" # exit code 0
25+
# - "Node 2: started (RonDB-22.10.4)" # exit code 0
2626
# - "94: Node not found" # exit code 255
2727

2828
MGM_CONNECTION_STRING=$1

run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
################
2222

2323
RONDB_SIZE=small
24-
RONDB_VERSION=22.10.1
24+
RONDB_VERSION=22.10.4
2525
REPLICATION_FACTOR=2
2626
RONDB_TARBALL_PATH=
2727
RONDB_TARBALL_URL=

0 commit comments

Comments
 (0)