#4 0x000055e5a1d6a8d6 in Rows_log_event::update_sequence (this=0x613000060298) at /data/src/bb-11.2-oalter-repro/sql/log_event_server.cc:6918
#5 0x000055e5a1d6907c in Rows_log_event::write_row (this=0x613000060298, rgi=0x7f51fa90c150, overwrite=false) at /data/src/bb-11.2-oalter-repro/sql/log_event_server.cc:6735
#6 0x000055e5a1d6b631 in Write_rows_log_event::do_exec_row (this=0x613000060298, rgi=0x7f51fa90c150) at /data/src/bb-11.2-oalter-repro/sql/log_event_server.cc:6987
#7 0x000055e5a1d5a77f in Rows_log_event::do_apply_event (this=0x613000060298, rgi=0x7f51fa90c150) at /data/src/bb-11.2-oalter-repro/sql/log_event_server.cc:5113
#8 0x000055e5a1d24551 in Log_event::apply_event (this=0x613000060298, rgi=0x7f51fa90c150) at /data/src/bb-11.2-oalter-repro/sql/log_event.cc:3868
#9 0x000055e5a1360043 in online_alter_read_from_binlog (thd=0x62b0000af218, rgi=0x7f51fa90c150, log=0x61d00024d680) at /data/src/bb-11.2-oalter-repro/sql/sql_table.cc:11681
#10 0x000055e5a136457f in copy_data_between_tables (thd=0x62b0000af218, from=0x6190000a0a98, to=0x6190000a5098, create=..., ignore=false, order_num=0, order=0x0, copied=0x7f51fa9102f0, deleted=0x7f51fa910310, keys_onoff=Alter_info::LEAVE_AS_IS, alter_ctx=0x7f51fa9122d0, online=true, start_alter_id=0) at /data/src/bb-11.2-oalter-repro/sql/sql_table.cc:12136
#11 0x000055e5a135bce7 in mysql_alter_table (thd=0x62b0000af218, new_db=0x62b0000b3f40, new_name=0x62b0000b4390, create_info=0x7f51fa913270, table_list=0x629000276340, recreate_info=0x7f51fa9130a0, alter_info=0x7f51fa913140, order_num=0, order=0x0, ignore=false, if_exists=false) at /data/src/bb-11.2-oalter-repro/sql/sql_table.cc:11137
#12 0x000055e5a1526c31 in Sql_cmd_alter_table::execute (this=0x629000276a78, thd=0x62b0000af218) at /data/src/bb-11.2-oalter-repro/sql/sql_alter.cc:571
#13 0x000055e5a1059616 in mysql_execute_command (thd=0x62b0000af218, is_called_from_prepared_stmt=false) at /data/src/bb-11.2-oalter-repro/sql/sql_parse.cc:5764
#14 0x000055e5a10664b1 in mysql_parse (thd=0x62b0000af218, rawbuf=0x629000276238 "alter table s engine=Aria", length=25, parser_state=0x7f51fa914a30) at /data/src/bb-11.2-oalter-repro/sql/sql_parse.cc:7772
#15 0x000055e5a103e9b8 in dispatch_command (command=COM_QUERY, thd=0x62b0000af218, packet=0x62900026c219 "", packet_length=25, blocking=true) at /data/src/bb-11.2-oalter-repro/sql/sql_parse.cc:1892
#16 0x000055e5a103b6f5 in do_command (thd=0x62b0000af218, blocking=true) at /data/src/bb-11.2-oalter-repro/sql/sql_parse.cc:1405
#17 0x000055e5a150900e in do_handle_one_connection (connect=0x608000002e38, put_in_cache=true) at /data/src/bb-11.2-oalter-repro/sql/sql_connect.cc:1416
#18 0x000055e5a15089cf in handle_one_connection (arg=0x608000002e38) at /data/src/bb-11.2-oalter-repro/sql/sql_connect.cc:1318
#19 0x000055e5a212d54e in pfs_spawn_thread (arg=0x617000005f18) at /data/src/bb-11.2-oalter-repro/storage/perfschema/pfs.cc:2201
#20 0x00007f52030a7fd4 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#21 0x00007f52031285bc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Maybe it's not online alter's fault as such. Earlier versions crash upon replaying a binlog with sequence update (not upon replicating it though): MDEV-31779.
Elena Stepanova
added a comment - Maybe it's not online alter's fault as such. Earlier versions crash upon replaying a binlog with sequence update (not upon replicating it though): MDEV-31779 .
ok, but please, write a longer commit comment. Something like:
forbid online for sequences
it doesn't work now and sequence tables are always only one row, so not worth the extra complexity.
Sergei Golubchik
added a comment - ok, but please, write a longer commit comment. Something like:
forbid online for sequences
it doesn't work now and sequence tables are always only one row, so not worth the extra complexity.
WHILE
i < in_num_of_objs
DO
SET
out_obj_num = CASE WHEN in_obj_type = 'BILL' THEN CONCAT('VB-',nextval(vb_bng.bill_num_seq))
WHEN in_obj_type = 'PAYMENT' THEN CONCAT('VP-',nextval(vb_bng.pymt_num_seq))
ELSE NULL END ;
SET i = i + 1;
INSERT INTO tmp_seq_range (tmp_obj_type, tmp_obj_nums) VALUES(in_obj_type, out_obj_num);
END WHILE;
SELECT
GROUP_CONCAT(tmp_obj_nums) INTO out_obj_num
FROM tmp_seq_range
GROUP BY tmp_obj_type;
SELECT out_obj_num;
DROP TEMPORARY TABLE IF EXISTS tmp_seq_range;
END
character_set_client: utf8mb4
collation_connection: utf8mb4_general_ci
Database Collation: utf8_general_ci
1 row in set (0.004 sec)
MariaDB [vb_bng]>
Naresh Chandra
added a comment - - edited Hi Nikita,
Due to the below proc, we got the same issue like below.
ERROR 2013 (HY000) at line 562853: Lost connection to MySQL server during query
Create Procedure: CREATE DEFINER=`definer_db_usr`@`localhost` PROCEDURE `get_object_number`(
IN in_obj_type VARCHAR (20),
IN in_num_of_objs BIGINT (20),
OUT out_obj_num VARCHAR (5000)
)
MODIFIES SQL DATA
DETERMINISTIC
COMMENT 'Sproc to return Range'
BEGIN
DECLARE i INT;
DECLARE out_obj_num VARCHAR (5000);
SET i = 0;
DROP TEMPORARY TABLE IF EXISTS tmp_seq_range;
CREATE TEMPORARY TABLE tmp_seq_range
(
tmp_obj_type VARCHAR (20),
tmp_obj_nums VARCHAR (5000)
);
WHILE
i < in_num_of_objs
DO
SET
out_obj_num = CASE WHEN in_obj_type = 'BILL' THEN CONCAT('VB-',nextval(vb_bng.bill_num_seq))
WHEN in_obj_type = 'PAYMENT' THEN CONCAT('VP-',nextval(vb_bng.pymt_num_seq))
ELSE NULL END ;
SET i = i + 1;
INSERT INTO tmp_seq_range (tmp_obj_type, tmp_obj_nums) VALUES(in_obj_type, out_obj_num);
END WHILE;
SELECT
GROUP_CONCAT(tmp_obj_nums) INTO out_obj_num
FROM tmp_seq_range
GROUP BY tmp_obj_type;
SELECT out_obj_num;
DROP TEMPORARY TABLE IF EXISTS tmp_seq_range;
END
character_set_client: utf8mb4
collation_connection: utf8mb4_general_ci
Database Collation: utf8_general_ci
1 row in set (0.004 sec)
MariaDB [vb_bng] >
Because, of the nextval function, we got the issue. There is a call get_object_number() in the binlog file, when we try to restore binary logs then we got the above issues.
WHEN in_obj_type = 'PAYMENT' THEN CONCAT('VP-',nextval(vb_bng.pymt_num_seq))
Naresh Chandra
added a comment - Because, of the nextval function, we got the issue. There is a call get_object_number() in the binlog file, when we try to restore binary logs then we got the above issues.
WHEN in_obj_type = 'PAYMENT' THEN CONCAT('VP-', nextval (vb_bng.pymt_num_seq))
Maybe it's not online alter's fault as such. Earlier versions crash upon replaying a binlog with sequence update (not upon replicating it though):
MDEV-31779.