Skip to content

Commit 8914e57

Browse files
committed
RONDB-693 RonDB minor release 22.10.5
1 parent 6d13246 commit 8914e57

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
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.4
27+
- rondb_version: 22.10.5
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.4 \
83+
--rondb-version 22.10.5 \
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.4 -m 1 -g 1 -r 2 -my 2 -bn 1 \
157+
-v 22.10.5 -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: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
4+
RONDB_IMAGE_NAME=rondb:22.10.5
5+
RONDB_VERSION=22.10.5
6+
RONDB_TARBALL_URI=https://repo.hops.works/master/rondb-22.10.5-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
@@ -50,7 +50,7 @@ DETACHED=
5050
RONDB_SIZE=small
5151
SQL_INIT_SCRIPT_CLI_DIR=$SCRIPT_DIR/resources/sql_init_scripts
5252
RONDB_IMAGE_NAME=rondb
53-
RONDB_VERSION=22.10.4
53+
RONDB_VERSION=22.10.5
5454

5555
function print_usage() {
5656
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.4",
12+
"RonDBVersion": "22.10.5",
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.4-linux-glibc2.28-arm64_v8.tar.gz",
17+
"RonDBDownloadLink": "http://nginx/hopsworks_proxy/master/rondb-22.10.5-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.4)" # exit code 0
25+
# - "Node 2: started (RonDB-22.10.5)" # 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.4
24+
RONDB_VERSION=22.10.5
2525
RONDB_IMAGE_NAME=rondb
2626
REPLICATION_FACTOR=2
2727
RONDB_TARBALL_PATH=

sample_files/docker_compose.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: '3.8'
44
services:
55

66
mgmd_1:
7-
image: rondb:22.10.4-dev
7+
image: rondb:22.10.5-dev
88
container_name: mgmd_1
99
command: ["ndb_mgmd", "--ndb-nodeid=65", "--initial"]
1010
deploy:
@@ -28,7 +28,7 @@ services:
2828
- HOST_GROUP_ID=20
2929

3030
ndbd_1:
31-
image: rondb:22.10.4-dev
31+
image: rondb:22.10.5-dev
3232
container_name: ndbd_1
3333
command: ["ndbmtd", "--ndb-nodeid=1", "--initial", "--ndb-connectstring=mgmd_1:1186"]
3434
healthcheck:
@@ -55,7 +55,7 @@ services:
5555
- HOST_GROUP_ID=20
5656

5757
ndbd_2:
58-
image: rondb:22.10.4-dev
58+
image: rondb:22.10.5-dev
5959
container_name: ndbd_2
6060
command: ["ndbmtd", "--ndb-nodeid=2", "--initial", "--ndb-connectstring=mgmd_1:1186"]
6161
healthcheck:
@@ -82,7 +82,7 @@ services:
8282
- HOST_GROUP_ID=20
8383

8484
mysqld_1:
85-
image: rondb:22.10.4-dev
85+
image: rondb:22.10.5-dev
8686
container_name: mysqld_1
8787
command: ["mysqld"]
8888
cap_add:
@@ -124,7 +124,7 @@ services:
124124
- MYSQL_INITIALIZE_DB=1
125125

126126
mysqld_2:
127-
image: rondb:22.10.4-dev
127+
image: rondb:22.10.5-dev
128128
container_name: mysqld_2
129129
command: ["mysqld"]
130130
cap_add:
@@ -162,7 +162,7 @@ services:
162162
- MYSQL_BENCH_PASSWORD=Abc123?e
163163

164164
rest_1:
165-
image: rondb:22.10.4-dev
165+
image: rondb:22.10.5-dev
166166
container_name: rest_1
167167
command: ["rdrs", "-config=/srv/hops/mysql-cluster/rest_api.json"]
168168
deploy:
@@ -190,7 +190,7 @@ services:
190190
condition: service_healthy
191191

192192
bench_1:
193-
image: rondb:22.10.4-dev
193+
image: rondb:22.10.5-dev
194194
container_name: bench_1
195195
command: >
196196
bash -c "sleep 5 && bench_run.sh --verbose --default-directory /home/mysql/benchmarks/sysbench_multi "

sample_files/parsed_arguments.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ RonDB-Docker version: dev
44
Parsed arguments:
55
#################
66

7-
RonDB version = 22.10.4
8-
RonDB tarball path = ./rondb-22.10.4-linux-glibc2.28-arm64_v8.tar.gz
7+
RonDB version = 22.10.5
8+
RonDB tarball path = ./rondb-22.10.5-linux-glibc2.28-arm64_v8.tar.gz
99
RonDB tarball url =
1010
Number of management nodes = 1
1111
Node groups = 1

0 commit comments

Comments
 (0)