1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757
|
##############################################################################
## WL#9053 : Group Replication: Push Group Replication Plugin to mysql-trunk
##
## This test checks the basic functionality(CRUD operations on doc) of group
## replication plugin along with mysqlx plugin.
##
## NOTE : All the queries through mysqlx plugin is passed using mysqlxtest.
##
## Steps involved in this test :
## 0. This test requires 3 servers.
## 1. Start 3 servers loaded with both mysqlx and group replication plugin.
## 2. Start group replication on server1 as bootstrap server through mysqlx
## 3. Start group replication on other two servers as non bootstrap server.
## 4. Wait until all three servers come online.
## 5. Perform ddl and dml operations on all the three servers.
## a) server1 : Create Collection "characters" and perform CRUD on it.
## b) server2 : Perform CRUD operation on "characters"
## c) server3 : Perform CRUD operation on "characters"
## 6. Print the Collection onto result file so that it can be verified.
## 7. Stop group replication on all the servers through mysqlx
# 8. Uninstall mysqlx plugin
# 9. clean-up
##############################################################################
--source include/big_test.inc
--source include/have_mysqlx_plugin.inc
--source include/have_group_replication_plugin_base.inc
--let plugins= GROUP_REPLICATION
--source include/check_plugin_dir.inc
## This initial setup starts three servers with all the prerequisites required
## for GR to start
--source include/have_group_replication_plugin.inc
--let $rpl_skip_group_replication_start= 1
--let $rpl_server_count= 3
--source include/group_replication.inc
## Install Mysqlx plugin on all servers.
--let $rpl_connection_name= server1
--source include/rpl_connection.inc
--source include/xplugin_wait_for_interfaces.inc
--let $rpl_connection_name= server2
--source include/rpl_connection.inc
--source include/xplugin_wait_for_interfaces.inc
--let $rpl_connection_name= server3
--source include/rpl_connection.inc
--source include/xplugin_wait_for_interfaces.inc
# File for starting GR through mysqlx
# Bootstrap-server
--write_file $MYSQL_TMP_DIR/bootstrap_server.tmp
-->sql
SET GLOBAL GROUP_REPLICATION_GROUP_NAME = 'aaaaaaaa-bbbb-aaaa-aaaa-aaaaaaaaaaaa';
SET GLOBAL GROUP_REPLICATION_BOOTSTRAP_GROUP=1;
START GROUP_REPLICATION;
SET GLOBAL GROUP_REPLICATION_BOOTSTRAP_GROUP=0;
-->endsql
EOF
# Temp file for starting group replication as non bootstrap server.
--write_file $MYSQL_TMP_DIR/non_bootstrap_server.tmp
-->sql
SET GLOBAL GROUP_REPLICATION_GROUP_NAME = 'aaaaaaaa-bbbb-aaaa-aaaa-aaaaaaaaaaaa';
CHANGE REPLICATION SOURCE TO SOURCE_USER='root' FOR CHANNEL 'group_replication_recovery';
START GROUP_REPLICATION;
-->endsql
EOF
# Starting GR on all the servers through mysqlx
--echo Starting GR on server 1
--exec $MYSQLXTEST --ssl-cipher='ECDHE-RSA-AES128-GCM-SHA256' -u root --port=$MASTER_X_MYPORT_1 --file=$MYSQL_TMP_DIR/bootstrap_server.tmp 2>&1
--echo Starting GR on server 2
--exec $MYSQLXTEST --ssl-cipher='ECDHE-RSA-AES128-GCM-SHA256' -u root --port=$MASTER_X_MYPORT_2 --file=$MYSQL_TMP_DIR/non_bootstrap_server.tmp 2>&1
--echo Starting GR on server 3
--exec $MYSQLXTEST --ssl-cipher='ECDHE-RSA-AES128-GCM-SHA256' -u root --port=$MASTER_X_MYPORT_3 --file=$MYSQL_TMP_DIR/non_bootstrap_server.tmp 2>&1
--echo Waiting for GR members to come online.
--let $wait_condition=SELECT COUNT(*)=3 FROM performance_schema.replication_group_members where MEMBER_STATE="ONLINE"
--source include/wait_condition.inc
## Temp file for performing crud operation on collection "characters" from
## server1
--write_file $MYSQL_TMP_DIR/crud_on_server1.tmp
-->stmtadmin list_objects {"schema":"test"}
-->recvresult
-->stmtadmin create_collection {"schema":"test","name":"characters"}
-->recvresult
Mysqlx.Crud.Insert {
collection {
name: "characters"
schema: "test"
}
data_model: DOCUMENT
row {
field {
type: OBJECT
object {
fld {
key: "House"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Stark"
}
}
}
}
fld {
key: "_id"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "6c706242055ae611fd36b86b23c1b9b9"
}
}
}
}
fld {
key: "name"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "John Snow"
}
}
}
}
}
}
}
}
-->recvresult
Mysqlx.Crud.Insert {
collection {
name: "characters"
schema: "test"
}
data_model: DOCUMENT
row {
field {
type: OBJECT
object {
fld {
key: "House"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Stark"
}
}
}
}
fld {
key: "_id"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "ac1fc3b0055ae611fd36b86b23c1b9b9"
}
}
}
}
fld {
key: "name"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Rob Stark"
}
}
}
}
}
}
}
row {
field {
type: OBJECT
object {
fld {
key: "House"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Stark"
}
}
}
}
fld {
key: "_id"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "4261c3b0055ae611fd36b86b23c1b9b9"
}
}
}
}
fld {
key: "name"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Arya Stark"
}
}
}
}
}
}
}
row {
field {
type: OBJECT
object {
fld {
key: "House"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Stark"
}
}
}
}
fld {
key: "_id"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "6e62c3b0055ae611fd36b86b23c1b9b9"
}
}
}
}
fld {
key: "name"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Brandon Stark"
}
}
}
}
}
}
}
}
-->recvresult
Mysqlx.Crud.Update {
collection {
name: "characters"
schema: "test"
}
data_model: DOCUMENT
criteria {
type: OPERATOR
operator {
name: "=="
param {
type: IDENT
identifier {
document_path {
type: MEMBER
value: "name"
}
}
}
param {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "John Snow"
}
}
}
}
}
operation {
source {
document_path {
type: MEMBER
value: "House"
}
}
operation: ITEM_SET
value {
type: LITERAL
literal {
type: V_STRING
v_string {
value: "Targaryen"
}
}
}
}
}
-->recvresult
Mysqlx.Crud.Find {
collection {
name: "characters"
schema: "test"
}
data_model: DOCUMENT
}
-->recvresult
EOF
# Crud operations for collection characters
--exec $MYSQLXTEST --ssl-cipher='ECDHE-RSA-AES128-GCM-SHA256' -u root --port=$MASTER_X_MYPORT_1 --file=$MYSQL_TMP_DIR/crud_on_server1.tmp 2>&1
## Wait for synchronization between the nodes.
--source include/rpl_sync.inc
## Temp file for performing crud operation on collection "characters" from server2
--write_file $MYSQL_TMP_DIR/crud_on_server2.tmp
Mysqlx.Crud.Update {
collection {
name: "characters"
schema: "test"
}
data_model: DOCUMENT
criteria {
type: OPERATOR
operator {
name: "&&"
param {
type: OPERATOR
operator {
name: "=="
param {
type: IDENT
identifier {
document_path {
type: MEMBER
value: "House"
}
}
}
param {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Targaryen"
}
}
}
}
}
param {
type: OPERATOR
operator {
name: "=="
param {
type: IDENT
identifier {
document_path {
type: MEMBER
value: "name"
}
}
}
param {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "John Snow"
}
}
}
}
}
}
}
operation {
source {
document_path {
type: MEMBER
value: "House"
}
}
operation: ARRAY_APPEND
value {
type: LITERAL
literal {
type: V_STRING
v_string {
value: "Stark"
}
}
}
}
}
-->recvresult
Mysqlx.Crud.Insert {
collection {
name: "characters"
schema: "test"
}
data_model: DOCUMENT
row {
field {
type: OBJECT
object {
fld {
key: "House"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Stark "
}
}
}
}
fld {
key: "_id"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "1616f2480b5ae611c319b86b23c1b9b9"
}
}
}
}
fld {
key: "name"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Sansa Stark"
}
}
}
}
}
}
}
}
-->recvresult
Mysqlx.Crud.Delete {
collection {
name: "characters"
schema: "test"
}
data_model: DOCUMENT
criteria {
type: OPERATOR
operator {
name: "like"
param {
type: IDENT
identifier {
document_path {
type: MEMBER
value: "name"
}
}
}
param {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Robb%"
}
}
}
}
}
}
-->recvresult
Mysqlx.Crud.Find {
collection {
name: "characters"
schema: "test"
}
data_model: DOCUMENT
}
-->recvresult
EOF
--exec $MYSQLXTEST --ssl-cipher='ECDHE-RSA-AES128-GCM-SHA256' -u root --port=$MASTER_X_MYPORT_2 --file=$MYSQL_TMP_DIR/crud_on_server2.tmp 2>&1
## Wait for synchronization between the nodes.
--source include/rpl_sync.inc
## Temp file for performing crud operation on collection "characters" from server3
--write_file $MYSQL_TMP_DIR/crud_on_server3.tmp
Mysqlx.Crud.Insert {
collection {
name: "characters"
schema: "test"
}
data_model: DOCUMENT
row {
field {
type: OBJECT
object {
fld {
key: "House"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Stark"
}
}
}
}
fld {
key: "_id"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "8cd5d2d90e5ae611e325b86b23c1b9b9"
}
}
}
}
fld {
key: "name"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Benjen Stark"
}
}
}
}
}
}
}
row {
field {
type: OBJECT
object {
fld {
key: "House"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Stark"
}
}
}
}
fld {
key: "_id"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "b2d7d2d90e5ae611e325b86b23c1b9b9"
}
}
}
}
fld {
key: "name"
value {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Ned Stark"
}
}
}
}
}
}
}
}
-->recvresult
Mysqlx.Crud.Update {
collection {
name: "characters"
schema: "test"
}
data_model: DOCUMENT
criteria {
type: OPERATOR
operator {
name: "=="
param {
type: IDENT
identifier {
document_path {
type: MEMBER
value: "name"
}
}
}
param {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "Arya Stark"
}
}
}
}
}
operation {
source {
document_path {
type: MEMBER
value: "name"
}
}
operation: ITEM_SET
value {
type: LITERAL
literal {
type: V_STRING
v_string {
value: "A girl has NoName"
}
}
}
}
}
-->recvresult
Mysqlx.Crud.Delete {
collection {
name: "characters"
schema: "test"
}
data_model: DOCUMENT
limit {
row_count: 3
}
}
-->recvresult
Mysqlx.Crud.Find {
collection {
name: "characters"
schema: "test"
}
data_model: DOCUMENT
}
-->recvresult
-->stmtadmin drop_collection {"schema":"test", "name":"characters"}
-->recvresult
EOF
--exec $MYSQLXTEST --ssl-cipher='ECDHE-RSA-AES128-GCM-SHA256' -u root --port=$MASTER_X_MYPORT_3 --file=$MYSQL_TMP_DIR/crud_on_server3.tmp 2>&1
## Cannot use diff_tables.inc because of the following warning.
## Warning 1235 This version of MySQL doesn't yet support 'sorting of
## non-scalar JSON values'
## Wait for synchronization between the nodes.
--source include/rpl_sync.inc
# Creating temp file to stop GR.
--write_file $MYSQL_TMP_DIR/stop_group_replication.tmp
-->stmtsql STOP GROUP_REPLICATION;
-->recvresult
EOF
# Stopping GR on all the servers
--echo Stopping GR on server 1
--exec $MYSQLXTEST --ssl-cipher='ECDHE-RSA-AES128-GCM-SHA256' -u root --port=$MASTER_X_MYPORT_1 --file=$MYSQL_TMP_DIR/stop_group_replication.tmp 2>&1
--echo Stopping GR on server 2
--exec $MYSQLXTEST --ssl-cipher='ECDHE-RSA-AES128-GCM-SHA256' -u root --port=$MASTER_X_MYPORT_2 --file=$MYSQL_TMP_DIR/stop_group_replication.tmp 2>&1
--echo Stopping GR on server 3
--exec $MYSQLXTEST --ssl-cipher='ECDHE-RSA-AES128-GCM-SHA256' -u root --port=$MASTER_X_MYPORT_3 --file=$MYSQL_TMP_DIR/stop_group_replication.tmp 2>&1
# Uninstall mysqlx
--let $rpl_connection_name= server1
--source include/rpl_connection.inc
--let $group_replication_member_state= OFFLINE
--source include/gr_wait_for_member_state.inc
--source include/assert_and_disable_read_only.inc
--let $rpl_connection_name= server2
--source include/rpl_connection.inc
--let $group_replication_member_state= OFFLINE
--source include/gr_wait_for_member_state.inc
--source include/assert_and_disable_read_only.inc
--let $rpl_connection_name= server3
--source include/rpl_connection.inc
--let $group_replication_member_state= OFFLINE
--source include/gr_wait_for_member_state.inc
--source include/assert_and_disable_read_only.inc
# clean-up
--remove_file $MYSQL_TMP_DIR/bootstrap_server.tmp
--remove_file $MYSQL_TMP_DIR/non_bootstrap_server.tmp
--remove_file $MYSQL_TMP_DIR/crud_on_server1.tmp
--remove_file $MYSQL_TMP_DIR/crud_on_server2.tmp
--remove_file $MYSQL_TMP_DIR/crud_on_server3.tmp
--remove_file $MYSQL_TMP_DIR/stop_group_replication.tmp
--source include/group_replication_end.inc
|