-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathrpl_gtid_persist.cc
895 lines (761 loc) · 26.4 KB
/
rpl_gtid_persist.cc
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
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
/* Copyright (c) 2013, 2024, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include "sql/rpl_gtid_persist.h"
#include "my_config.h"
#include "mysql/my_loglevel.h"
#include "sql/derror.h"
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <list>
#include "my_base.h"
#include "my_command.h"
#include "my_dbug.h"
#include "my_sys.h"
#include "my_thread.h"
#include "mysql/binlog/event/control_events.h"
#include "mysql/components/services/log_builtins.h"
#include "mysql/psi/mysql_cond.h"
#include "mysql/psi/mysql_mutex.h"
#include "mysql/psi/mysql_thread.h"
#include "mysql/strings/m_ctype.h"
#include "mysql/thread_type.h"
#include "sql/auth/sql_security_ctx.h"
#include "sql/current_thd.h"
#include "sql/debug_sync.h" // debug_sync_set_action
#include "sql/field.h"
#include "sql/handler.h"
#include "sql/key.h"
#include "sql/log.h"
#include "sql/mysqld.h" // gtid_executed_compression_period
#include "sql/query_options.h"
#include "sql/replication.h" // THD_ENTER_COND
#include "sql/sql_base.h" // MYSQL_OPEN_IGNORE_GLOBAL_READ_LOCK
#include "sql/sql_const.h"
#include "sql/sql_error.h"
#include "sql/sql_lex.h"
#include "sql/sql_parse.h" // mysql_reset_thd_for_next_command
#include "sql/system_variables.h"
#include "sql_string.h"
#include "string_with_len.h"
using std::list;
using std::string;
my_thread_handle compress_thread_id;
static bool terminate_compress_thread = false;
static bool should_compress = false;
const LEX_CSTRING Gtid_table_access_context::TABLE_NAME = {
STRING_WITH_LEN("gtid_executed")};
const LEX_CSTRING Gtid_table_access_context::DB_NAME = {
STRING_WITH_LEN("mysql")};
/**
Initialize a new THD.
@param p_thd Pointer to pointer to thread structure
*/
static void init_thd(THD **p_thd) {
DBUG_TRACE;
THD *thd = *p_thd;
thd->thread_stack = reinterpret_cast<char *>(p_thd);
thd->set_command(COM_DAEMON);
thd->security_context()->skip_grants();
thd->system_thread = SYSTEM_THREAD_COMPRESS_GTID_TABLE;
thd->store_globals();
thd->set_time();
}
/**
Release resourses for the thread and restores the
system_thread information.
@param thd Thread requesting to be destroyed
*/
static void deinit_thd(THD *thd) {
DBUG_TRACE;
thd->release_resources();
thd->restore_globals();
delete thd;
current_thd = nullptr;
}
THD *Gtid_table_access_context::create_thd() {
THD *thd = System_table_access::create_thd();
thd->system_thread = SYSTEM_THREAD_COMPRESS_GTID_TABLE;
/*
This is equivalent to a new "statement". For that reason, we call
both lex_start() and mysql_reset_thd_for_next_command.
*/
lex_start(thd);
mysql_reset_thd_for_next_command(thd);
thd->set_skip_readonly_check();
return (thd);
}
void Gtid_table_access_context::drop_thd(THD *thd) {
thd->reset_skip_readonly_check();
System_table_access::drop_thd(thd);
}
void Gtid_table_access_context::before_open(THD *) {
DBUG_TRACE;
/*
Allow to operate the gtid_executed table
while disconnecting the session.
*/
m_flags = (MYSQL_OPEN_IGNORE_GLOBAL_READ_LOCK |
MYSQL_LOCK_IGNORE_GLOBAL_READ_ONLY | MYSQL_OPEN_IGNORE_FLUSH |
MYSQL_LOCK_IGNORE_TIMEOUT | MYSQL_OPEN_IGNORE_KILLED);
}
bool Gtid_table_access_context::init(THD **thd, TABLE **table, bool is_write) {
DBUG_TRACE;
if (!(*thd)) *thd = m_drop_thd_object = this->create_thd();
if (!(*thd)->is_cmd_skip_readonly()) {
(*thd)->set_skip_readonly_check();
this->m_skip_readonly_set = true;
}
m_is_write = is_write;
if (m_is_write) {
/* Disable binlog temporarily */
m_tmp_disable_binlog__save_options = (*thd)->variables.option_bits;
(*thd)->variables.option_bits &= ~OPTION_BIN_LOG;
}
if (!(*thd)->get_transaction()->xid_state()->has_state(XID_STATE::XA_NOTR)) {
/*
This type of caller of Attachable_trx_rw is deadlock-free with
the main transaction thanks to rejection to update
'mysql.gtid_executed' by XA main transaction.
*/
assert(
(*thd)->get_transaction()->xid_state()->has_state(XID_STATE::XA_IDLE) ||
(*thd)->get_transaction()->xid_state()->has_state(
XID_STATE::XA_PREPARED));
(*thd)->begin_attachable_rw_transaction();
}
(*thd)->is_operating_gtid_table_implicitly = true;
bool ret = this->open_table(
*thd, DB_NAME, TABLE_NAME, Gtid_table_persistor::number_fields,
m_is_write ? TL_WRITE : TL_READ, table, &m_backup);
return ret;
}
bool Gtid_table_access_context::deinit(THD *thd, TABLE *table, bool error,
bool need_commit) {
DBUG_TRACE;
bool err;
/*
This fails on errors committing the info, or when
replica_preserve_commit_order is enabled and a previous transaction
has failed. In both cases, the error is reported already.
*/
err = this->close_table(thd, table, &m_backup, 0 != error, need_commit);
/*
If Gtid is inserted through Attachable_trx_rw its has been done
in the above close_table() through ha_commit_trans().
It does not have any side effect on the global transaction state
as the only vulnerable part there relates to gtid (and is blocked
from recursive invocation).
*/
if (thd->is_attachable_rw_transaction_active())
thd->end_attachable_transaction();
thd->is_operating_gtid_table_implicitly = false;
/* Re-enable binlog */
if (m_is_write)
thd->variables.option_bits = m_tmp_disable_binlog__save_options;
if (this->m_skip_readonly_set) {
thd->reset_skip_readonly_check();
this->m_skip_readonly_set = false;
}
if (m_drop_thd_object) this->drop_thd(m_drop_thd_object);
return err;
}
int Gtid_table_persistor::fill_fields(Field **fields, const char *sid,
const char *tag, rpl_gno gno_start,
rpl_gno gno_end) {
DBUG_TRACE;
/* Store SID */
fields[0]->set_notnull();
if (fields[0]->store(sid, mysql::gtid::Uuid::TEXT_LENGTH, &my_charset_bin) !=
0U) {
my_error(ER_RPL_INFO_DATA_TOO_LONG, MYF(0), fields[0]->field_name);
goto err;
}
/* Store gno_start */
fields[1]->set_notnull();
if (fields[1]->store(gno_start, true /* unsigned = true*/)) {
my_error(ER_RPL_INFO_DATA_TOO_LONG, MYF(0), fields[1]->field_name);
goto err;
}
/* Store gno_end */
fields[2]->set_notnull();
if (fields[2]->store(gno_end, true /* unsigned = true*/)) {
my_error(ER_RPL_INFO_DATA_TOO_LONG, MYF(0), fields[2]->field_name);
goto err;
}
// Store tag
fields[3]->set_notnull();
if (fields[3]->store(tag, strlen(tag), &my_charset_bin)) {
my_error(ER_RPL_INFO_DATA_TOO_LONG, MYF(0), fields[3]->field_name);
goto err;
}
return 0;
err:
return -1;
}
int Gtid_table_persistor::write_row(TABLE *table, const char *sid,
const char *tag, rpl_gno gno_start,
rpl_gno gno_end) {
DBUG_TRACE;
int error = 0;
Field **fields = nullptr;
fields = table->field;
empty_record(table);
if (fill_fields(fields, sid, tag, gno_start, gno_end)) return -1;
/* Inserts a new row into the gtid_executed table. */
error = table->file->ha_write_row(table->record[0]);
if (DBUG_EVALUATE_IF("simulate_err_on_write_gtid_into_table", (error = -1),
error)) {
if (error == HA_ERR_FOUND_DUPP_KEY) {
/* Ignore the duplicate key error, log a warning for it. */
LogErr(WARNING_LEVEL, ER_GTID_ALREADY_ADDED_BY_USER,
Gtid_table_access_context::TABLE_NAME.str);
} else {
table->file->print_error(error, MYF(0));
/*
This makes sure that the error is -1 and not the status
returned by the handler.
*/
return -1;
}
}
return 0;
}
int Gtid_table_persistor::update_row(TABLE *table, const char *sid,
const char *tag, rpl_gno gno_start,
rpl_gno new_gno_end) {
DBUG_TRACE;
int error = 0;
Field **fields = nullptr;
uchar user_key[MAX_KEY_LENGTH];
fields = table->field;
empty_record(table);
/* Store SID */
fields[0]->set_notnull();
if (fields[0]->store(sid, mysql::gtid::Uuid::TEXT_LENGTH, &my_charset_bin) !=
0U) {
my_error(ER_RPL_INFO_DATA_TOO_LONG, MYF(0), fields[0]->field_name);
return -1;
}
/* Store gno_start */
fields[1]->set_notnull();
if (fields[1]->store(gno_start, true /* unsigned = true*/)) {
my_error(ER_RPL_INFO_DATA_TOO_LONG, MYF(0), fields[1]->field_name);
return -1;
}
// Store tag, to be able to use the key
fields[3]->set_notnull();
if (fields[3]->store(tag, strlen(tag), &my_charset_bin)) {
my_error(ER_RPL_INFO_DATA_TOO_LONG, MYF(0), fields[3]->field_name);
goto end;
}
key_copy(user_key, table->record[0], table->key_info,
table->key_info->key_length);
if ((error = table->file->ha_index_init(0, true))) {
table->file->print_error(error, MYF(0));
DBUG_PRINT("info", ("ha_index_init error"));
goto end;
}
if ((error = table->file->ha_index_read_map(
table->record[0], user_key, HA_WHOLE_KEY, HA_READ_KEY_EXACT))) {
DBUG_PRINT("info", ("Row not found"));
goto end;
} else {
DBUG_PRINT("info", ("Row found"));
store_record(table, record[1]);
}
/* Store new_gno_end */
fields[2]->set_notnull();
if ((error = fields[2]->store(new_gno_end, true /* unsigned = true*/))) {
my_error(ER_RPL_INFO_DATA_TOO_LONG, MYF(0), fields[2]->field_name);
goto end;
}
/* Update a row in the gtid_executed table. */
error = table->file->ha_update_row(table->record[1], table->record[0]);
if (DBUG_EVALUATE_IF("simulate_error_on_compress_gtid_table", (error = -1),
error)) {
table->file->print_error(error, MYF(0));
/*
This makes sure that the error is -1 and not the status returned
by the handler.
*/
goto end;
}
end:
table->file->ha_index_end();
if (error)
return -1;
else
return 0;
}
int Gtid_table_persistor::save(THD *thd, const Gtid *gtid) {
DBUG_TRACE;
int error = 0;
TABLE *table = nullptr;
Gtid_table_access_context table_access_ctx;
/* Get source id */
global_tsid_lock->rdlock();
const auto &tsid = global_tsid_map->sidno_to_tsid(gtid->sidno);
global_tsid_lock->unlock();
std::string sid_str = tsid.get_uuid().to_string();
std::string tag_str = tsid.get_tag().to_string();
if (table_access_ctx.init(&thd, &table, true)) {
error = 1;
goto end;
}
/* Write directly to gtid_executed table only to satisfy debug test. */
DBUG_EXECUTE_IF("disable_se_persists_gtid", {
error = write_row(table, sid_str.c_str(), tag_str.c_str(), gtid->gno,
gtid->gno);
});
thd->request_persist_gtid_by_se();
DBUG_EXECUTE_IF("simulate_err_on_write_gtid_into_table", {
error = -1;
table->file->print_error(error, MYF(0));
thd->reset_gtid_persisted_by_se();
});
end:
if (table_access_ctx.deinit(thd, table, 0 != error, false)) {
thd->reset_gtid_persisted_by_se();
error = -1;
}
/* Compression is triggered by GTID background thread as required. */
return error;
}
int Gtid_table_persistor::save(const Gtid_set *gtid_set, bool compress) {
DBUG_TRACE;
int ret = 0;
int error = 0;
TABLE *table = nullptr;
Gtid_table_access_context table_access_ctx;
THD *thd = current_thd;
DBUG_EXECUTE_IF("crash_before_gtid_table_persistor_save",
{ DBUG_SUICIDE(); });
if (table_access_ctx.init(&thd, &table, true)) {
error = ret = 1;
goto end;
}
ret = error = save(table, gtid_set);
end:
const int deinit_ret = table_access_ctx.deinit(thd, table, 0 != error, true);
if (!ret && deinit_ret) ret = -1;
/* Notify compression thread to compress gtid_executed table. */
if (error == 0 && compress &&
DBUG_EVALUATE_IF("dont_compress_gtid_table", 0, 1)) {
mysql_mutex_lock(&LOCK_compress_gtid_table);
should_compress = true;
mysql_cond_signal(&COND_compress_gtid_table);
mysql_mutex_unlock(&LOCK_compress_gtid_table);
}
return ret;
}
int Gtid_table_persistor::save(TABLE *table, const Gtid_set *gtid_set) {
DBUG_TRACE;
int error = 0;
list<Gtid_interval> gtid_intervals;
list<Gtid_interval>::iterator iter;
/* Get GTID intervals from gtid_set. */
gtid_set->get_gtid_intervals(>id_intervals);
for (iter = gtid_intervals.begin(); iter != gtid_intervals.end(); iter++) {
/* Get transaction source id. */
const auto &tsid = gtid_set->get_tsid_map()->sidno_to_tsid(iter->sidno);
auto sid_str = tsid.get_uuid().to_string();
auto tag_str = tsid.get_tag().to_string();
/* Save the gtid interval into table. */
if ((error = write_row(table, sid_str.c_str(), tag_str.c_str(),
iter->gno_start, iter->gno_end)))
break;
}
gtid_intervals.clear();
return error;
}
/**
Simulate error and crash in the middle of the transaction
of compressing gtid_executed table.
@param thd Thread requesting to compress the table
@return
@retval 0 OK.
@retval -1 Error.
*/
#ifndef NDEBUG
static int dbug_test_on_compress(THD *thd) {
DBUG_TRACE;
/*
Sleep a little, so that notified user thread executed the statement
completely.
*/
DBUG_EXECUTE_IF("fetch_compression_thread_stage_info", sleep(5););
DBUG_EXECUTE_IF("fetch_compression_thread_stage_info", {
const char act[] = "now signal fetch_thread_stage";
assert(opt_debug_sync_timeout > 0);
assert(!debug_sync_set_action(thd, STRING_WITH_LEN(act)));
};);
/* Sleep a little, so that we can always fetch the correct stage info. */
DBUG_EXECUTE_IF("fetch_compression_thread_stage_info", sleep(1););
/*
Wait until notified user thread executed the statement completely,
then go to crash.
*/
DBUG_EXECUTE_IF("simulate_crash_on_compress_gtid_table", {
const char act[] = "now wait_for notified_thread_complete";
assert(opt_debug_sync_timeout > 0);
assert(!debug_sync_set_action(thd, STRING_WITH_LEN(act)));
};);
DBUG_EXECUTE_IF("simulate_crash_on_compress_gtid_table", DBUG_SUICIDE(););
return 0;
}
#endif
int Gtid_table_persistor::compress(THD *thd) {
DBUG_TRACE;
int error = 0;
bool is_complete = false;
while (!is_complete && !error)
error = compress_in_single_transaction(thd, is_complete);
m_atomic_count = 0;
DBUG_EXECUTE_IF("compress_gtid_table", {
const char act[] = "now signal complete_compression";
assert(opt_debug_sync_timeout > 0);
assert(!debug_sync_set_action(thd, STRING_WITH_LEN(act)));
};);
return error;
}
int Gtid_table_persistor::compress_in_single_transaction(THD *thd,
bool &is_complete) {
DBUG_TRACE;
int error = 0;
TABLE *table = nullptr;
Gtid_table_access_context table_access_ctx;
mysql_mutex_lock(&LOCK_reset_gtid_table);
if (table_access_ctx.init(&thd, &table, true)) {
error = 1;
goto end;
}
/*
Reset stage_compressing_gtid_table to overwrite
stage_system_lock set in open_table(...).
*/
THD_STAGE_INFO(thd, stage_compressing_gtid_table);
if ((error = compress_first_consecutive_range(table, is_complete))) goto end;
#ifndef NDEBUG
error = dbug_test_on_compress(thd);
#endif
end:
table_access_ctx.deinit(thd, table, 0 != error, true);
mysql_mutex_unlock(&LOCK_reset_gtid_table);
return error;
}
int Gtid_table_persistor::compress_first_consecutive_range(TABLE *table,
bool &is_complete) {
DBUG_TRACE;
int ret = 0;
int err = 0;
/* Record the source id of the first consecutive gtid. */
string sid;
/* Record the tag of the first consecutive gtid. */
string tag;
/* Record the first GNO of the first consecutive gtid. */
rpl_gno gno_start = 0;
/* Record the last GNO of the last consecutive gtid. */
rpl_gno gno_end = 0;
/* Record the gtid interval of the current gtid. */
string cur_sid;
/* Record the tag of the current gtid. */
string cur_tag;
rpl_gno cur_gno_start = 0;
rpl_gno cur_gno_end = 0;
/*
Indicate if we have consecutive gtids in the table.
Set the flag to true if we find the first consecutive gtids.
The first consecutive range of gtids will be compressed if
the flag is true.
*/
bool find_first_consecutive_gtids = false;
if ((err = table->file->ha_index_init(0, true))) return -1;
/* Read each row by the PK(sid, gno_start) in increasing order. */
err = table->file->ha_index_first(table->record[0]);
/* Compress the first consecutive range of gtids. */
while (!err) {
get_gtid_interval(table, cur_sid, cur_tag, cur_gno_start, cur_gno_end);
/*
Check if gtid intervals of previous gtid and current gtid
are consecutive.
*/
if (sid == cur_sid && tag == cur_tag && gno_end + 1 == cur_gno_start) {
find_first_consecutive_gtids = true;
gno_end = cur_gno_end;
/* Delete the consecutive gtid. We do not delete the first
consecutive gtid, so that we can update it later. */
if ((err = table->file->ha_delete_row(table->record[0]))) {
table->file->print_error(err, MYF(0));
break;
}
} else {
if (find_first_consecutive_gtids) break;
/* Record the gtid interval of the first consecutive gtid. */
sid = cur_sid;
tag = cur_tag;
gno_start = cur_gno_start;
gno_end = cur_gno_end;
}
err = table->file->ha_index_next(table->record[0]);
}
table->file->ha_index_end();
/* Indicate if the gtid_executed table is compressd completely. */
is_complete = (err == HA_ERR_END_OF_FILE);
if (err != HA_ERR_END_OF_FILE && err != 0)
ret = -1;
else if (find_first_consecutive_gtids) {
/*
Update the gno_end of the first consecutive gtid with the gno_end of
the last consecutive gtid for the first consecutive range of gtids.
*/
ret = update_row(table, sid.c_str(), tag.c_str(), gno_start, gno_end);
}
return ret;
}
int Gtid_table_persistor::reset(THD *thd) {
DBUG_TRACE;
int error = 0;
TABLE *table = nullptr;
Gtid_table_access_context table_access_ctx;
mysql_mutex_lock(&LOCK_reset_gtid_table);
if (table_access_ctx.init(&thd, &table, true)) {
error = 1;
goto end;
}
/* Resetting the counter as gtid_executed table will also
be emptied.
*/
m_atomic_count = 0;
error = delete_all(table);
end:
table_access_ctx.deinit(thd, table, 0 != error, true);
mysql_mutex_unlock(&LOCK_reset_gtid_table);
return error;
}
string Gtid_table_persistor::encode_gtid_text(TABLE *table) {
DBUG_TRACE;
char buff[MAX_FIELD_WIDTH];
String str(buff, sizeof(buff), &my_charset_bin);
/* Fetch gtid interval from the table */
table->field[0]->val_str(&str);
string gtid_text(str.c_ptr_safe());
table->field[3]->val_str(&str);
if (str.is_empty() == false) {
gtid_text.append(Gtid_set::default_string_format.tag_sid_separator);
gtid_text.append(str.c_ptr_safe());
}
gtid_text.append(Gtid_set::default_string_format.tsid_gno_separator);
table->field[1]->val_str(&str);
gtid_text.append(str.c_ptr_safe());
gtid_text.append(Gtid_set::default_string_format.gno_start_end_separator);
table->field[2]->val_str(&str);
gtid_text.append(str.c_ptr_safe());
return gtid_text;
}
void Gtid_table_persistor::get_gtid_interval(TABLE *table, string &sid,
string &tag, rpl_gno &gno_start,
rpl_gno &gno_end) {
DBUG_TRACE;
char buff[MAX_FIELD_WIDTH];
String str(buff, sizeof(buff), &my_charset_bin);
/* Fetch gtid interval from the table */
table->field[0]->val_str(&str);
sid = string(str.c_ptr_safe());
gno_start = table->field[1]->val_int();
gno_end = table->field[2]->val_int();
table->field[3]->val_str(&str);
tag.clear();
if (str.is_empty() == false) {
tag = string(str.c_ptr_safe());
}
}
int Gtid_table_persistor::fetch_gtids(Gtid_set *gtid_set) {
DBUG_TRACE;
int ret = 0;
int err = 0;
TABLE *table = nullptr;
Gtid_table_access_context table_access_ctx;
THD *thd = current_thd;
if (table_access_ctx.init(&thd, &table, false)) {
ret = 1;
goto end;
}
if ((err = table->file->ha_rnd_init(true))) {
ret = -1;
goto end;
}
while (!(err = table->file->ha_rnd_next(table->record[0]))) {
/* Store the gtid into the gtid_set */
/**
@todo:
- take only global_tsid_lock->rdlock(), and take
gtid_state->tsid_lock for each iteration.
- Add wrapper around Gtid_set::add_gno_interval and call that
instead.
*/
global_tsid_lock->wrlock();
if (gtid_set->add_gtid_text(encode_gtid_text(table).c_str()) !=
RETURN_STATUS_OK) {
global_tsid_lock->unlock();
break;
}
global_tsid_lock->unlock();
}
table->file->ha_rnd_end();
if (err != HA_ERR_END_OF_FILE) ret = -1;
end:
table_access_ctx.deinit(thd, table, 0 != ret, true);
return ret;
}
int Gtid_table_persistor::delete_all(TABLE *table) {
DBUG_TRACE;
int err = 0;
if ((err = table->file->ha_rnd_init(true))) return -1;
/*
Delete all rows in the gtid_executed table. We cannot use truncate(),
since it is a non-transactional DDL operation.
*/
while (!(err = table->file->ha_rnd_next(table->record[0]))) {
/* Delete current row. */
err = table->file->ha_delete_row(table->record[0]);
if (DBUG_EVALUATE_IF("simulate_error_on_delete_gtid_from_table", (err = -1),
err)) {
table->file->print_error(err, MYF(0));
LogErr(ERROR_LEVEL, ER_FAILED_TO_DELETE_FROM_GTID_EXECUTED_TABLE,
encode_gtid_text(table).c_str());
break;
}
}
table->file->ha_rnd_end();
if (err != HA_ERR_END_OF_FILE) return -1;
return 0;
}
/**
The main function of the compression thread.
- compress the gtid_executed table when get a compression signal.
@param p_thd Thread requesting to compress the table
@return
@retval 0 OK. always, the compression thread will swallow any error
for going to wait for next compression signal until
it is terminated.
*/
extern "C" {
static void *compress_gtid_table(void *p_thd) {
THD *thd = (THD *)p_thd;
mysql_thread_set_psi_id(thd->thread_id());
my_thread_init();
{
DBUG_TRACE;
init_thd(&thd);
/*
Gtid table compression thread should ignore 'read-only' and
'super_read_only' options so that it can update 'mysql.gtid_executed'
replication repository tables.
*/
thd->set_skip_readonly_check();
// Compress the table at server startup
should_compress = true;
for (;;) {
mysql_mutex_lock(&LOCK_compress_gtid_table);
if (terminate_compress_thread) break;
THD_ENTER_COND(thd, &COND_compress_gtid_table, &LOCK_compress_gtid_table,
&stage_suspending, nullptr);
/* Add the check to handle spurious wakeups from system. */
while (!(should_compress || terminate_compress_thread))
mysql_cond_wait(&COND_compress_gtid_table, &LOCK_compress_gtid_table);
should_compress = false;
if (terminate_compress_thread) break;
mysql_mutex_unlock(&LOCK_compress_gtid_table);
THD_EXIT_COND(thd, nullptr);
THD_STAGE_INFO(thd, stage_compressing_gtid_table);
/* Compressing the gtid_executed table. */
if (gtid_state->compress(thd)) {
LogErr(WARNING_LEVEL, ER_FAILED_TO_COMPRESS_GTID_EXECUTED_TABLE);
/* Clear the error for going to wait for next compression signal. */
thd->clear_error();
DBUG_EXECUTE_IF("simulate_error_on_compress_gtid_table", {
const char act[] = "now signal compression_failed";
assert(opt_debug_sync_timeout > 0);
assert(!debug_sync_set_action(thd, STRING_WITH_LEN(act)));
};);
}
}
mysql_mutex_unlock(&LOCK_compress_gtid_table);
thd->reset_skip_readonly_check();
deinit_thd(thd);
}
my_thread_end();
my_thread_exit(nullptr);
return nullptr;
}
} // extern "C"
/**
Create the compression thread to compress gtid_executed table.
*/
void create_compress_gtid_table_thread() {
my_thread_attr_t attr;
int error = 0;
THD *thd;
if (!(thd = new THD)) {
LogErr(ERROR_LEVEL, ER_FAILED_TO_COMPRESS_GTID_EXECUTED_TABLE_OOM);
return;
}
thd->set_new_thread_id();
THD_CHECK_SENTRY(thd);
if (my_thread_attr_init(&attr)) {
LogErr(ERROR_LEVEL,
ER_FAILED_TO_INIT_THREAD_ATTR_FOR_GTID_TABLE_COMPRESSION);
delete thd;
return;
}
if (DBUG_EVALUATE_IF("simulate_create_compress_thread_failure", error = 1,
0) ||
#ifndef _WIN32
(error = pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM)) ||
#endif
(error = mysql_thread_create(key_thread_compress_gtid_table,
&compress_thread_id, &attr,
compress_gtid_table, (void *)thd))) {
LogErr(ERROR_LEVEL, ER_FAILED_TO_CREATE_GTID_TABLE_COMPRESSION_THREAD,
error);
/* Delete the created THD after failed to create a compression thread. */
delete thd;
}
(void)my_thread_attr_destroy(&attr);
}
/**
Terminate the compression thread.
*/
void terminate_compress_gtid_table_thread() {
DBUG_TRACE;
int error = 0;
/* Notify suspended compression thread. */
mysql_mutex_lock(&LOCK_compress_gtid_table);
terminate_compress_thread = true;
mysql_cond_signal(&COND_compress_gtid_table);
mysql_mutex_unlock(&LOCK_compress_gtid_table);
if (compress_thread_id.thread != null_thread_initializer) {
error = my_thread_join(&compress_thread_id, nullptr);
compress_thread_id.thread = null_thread_initializer;
}
if (error != 0)
LogErr(WARNING_LEVEL, ER_FAILED_TO_JOIN_GTID_TABLE_COMPRESSION_THREAD,
error);
}