You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ docker run -it --rm mariadb sh -c 'exec mysql -h"172.17.0.3" -P"3306" -uroot -p"foo"'
56
56
57
-
aql> select * from test.votes
58
-
aql> select * from test.summary
57
+
MariaDB [(none)]> use test
58
+
MariaDB [test]> select * from votes
59
+
MariaDB [test]> select * from summary;
59
60
60
61
## Running demo - Part Two: Scale the DB
61
-
62
-
$ docker-compose scale aerospike=3
63
-
64
-
You can look at the cluster topology with
65
-
66
-
$ docker run -it --rm --net prod aerospike/aerospike-tools asadm -e i -h prod_aerospike_1
67
-
62
+
!!!! TO BE COMPLETED - NEED TO INTEGRATE MAXSACLE
63
+
$ docker-compose scale mariadb=3
68
64
69
65
# Building the images
70
66
If you want to rebuild the images for any reason, you will need to build, push and update the compose files as necessary (since you will push to a new repo)
@@ -76,12 +72,3 @@ If you want to rebuild the images for any reason, you will need to build, push a
0 commit comments