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
|
/* Copyright (c) 2016, 2025, 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 */
/**
@file storage/perfschema/table_data_lock_waits.cc
Table DATA_LOCK_WAITS (implementation).
*/
#include "storage/perfschema/table_data_lock_waits.h"
#include <stddef.h>
#include "my_compiler.h"
#include "my_dbug.h"
#include "my_inttypes.h"
#include "my_thread.h"
#include "sql/field.h"
#include "sql/plugin_table.h"
#include "sql/table.h"
#include "storage/perfschema/pfs_buffer_container.h"
#include "storage/perfschema/pfs_column_types.h"
#include "storage/perfschema/pfs_column_values.h"
#include "storage/perfschema/pfs_global.h"
#include "storage/perfschema/pfs_instr.h"
THR_LOCK table_data_lock_waits::m_table_lock;
Plugin_table table_data_lock_waits::m_table_def(
/* Schema name */
"performance_schema",
/* Name */
"data_lock_waits",
/* Definition */
" ENGINE VARCHAR(32) not null,\n"
" REQUESTING_ENGINE_LOCK_ID VARCHAR(128) not null,\n"
" REQUESTING_ENGINE_TRANSACTION_ID BIGINT unsigned,\n"
" REQUESTING_THREAD_ID BIGINT unsigned,\n"
" REQUESTING_EVENT_ID BIGINT unsigned,\n"
" REQUESTING_OBJECT_INSTANCE_BEGIN BIGINT unsigned not null,\n"
" BLOCKING_ENGINE_LOCK_ID VARCHAR(128) not null,\n"
" BLOCKING_ENGINE_TRANSACTION_ID BIGINT unsigned,\n"
" BLOCKING_THREAD_ID BIGINT unsigned,\n"
" BLOCKING_EVENT_ID BIGINT unsigned,\n"
" BLOCKING_OBJECT_INSTANCE_BEGIN BIGINT unsigned not null,\n"
" PRIMARY KEY (REQUESTING_ENGINE_LOCK_ID, BLOCKING_ENGINE_LOCK_ID, "
"ENGINE) USING HASH,\n"
" KEY (REQUESTING_ENGINE_LOCK_ID, ENGINE) USING HASH,\n"
" KEY (BLOCKING_ENGINE_LOCK_ID, ENGINE) USING HASH,\n"
" KEY (REQUESTING_ENGINE_TRANSACTION_ID, ENGINE) USING HASH,\n"
" KEY (BLOCKING_ENGINE_TRANSACTION_ID, ENGINE) USING HASH,\n"
" KEY (REQUESTING_THREAD_ID, REQUESTING_EVENT_ID) USING HASH,\n"
" KEY (BLOCKING_THREAD_ID, BLOCKING_EVENT_ID) USING HASH\n",
/* Options */
" ENGINE=PERFORMANCE_SCHEMA",
/* Tablespace */
nullptr);
PFS_engine_table_share table_data_lock_waits::m_share = {
&pfs_readonly_acl,
table_data_lock_waits::create,
nullptr, /* write_row */
nullptr, /* delete_all_rows */
table_data_lock_waits::get_row_count,
sizeof(pk_pos_t),
&m_table_lock,
&m_table_def,
false, /* perpetual */
PFS_engine_table_proxy(),
{0},
false /* m_in_purgatory */
};
PFS_engine_table *table_data_lock_waits::create(PFS_engine_table_share *) {
return new table_data_lock_waits();
}
ha_rows table_data_lock_waits::get_row_count() {
// FIXME
return 99999;
}
table_data_lock_waits::table_data_lock_waits()
: PFS_engine_table(&m_share, &m_pk_pos),
m_row(nullptr),
m_opened_pk(nullptr),
m_opened_index(nullptr) {
for (unsigned int i = 0; i < COUNT_DATA_LOCK_ENGINES; i++) {
m_iterator[i] = nullptr;
}
}
void table_data_lock_waits::destroy_iterators() {
for (unsigned int i = 0; i < COUNT_DATA_LOCK_ENGINES; i++) {
if (m_iterator[i] != nullptr) {
g_data_lock_inspector[i]->destroy_data_lock_wait_iterator(m_iterator[i]);
m_iterator[i] = nullptr;
}
}
}
table_data_lock_waits::~table_data_lock_waits() { destroy_iterators(); }
void table_data_lock_waits::reset_position() {
m_pos.reset();
m_next_pos.reset();
m_pk_pos.reset();
m_container.clear();
destroy_iterators();
}
int table_data_lock_waits::rnd_next() {
row_data_lock_wait *data;
for (m_pos.set_at(&m_next_pos); m_pos.has_more_engine();
m_pos.next_engine()) {
const unsigned int index = m_pos.m_index_1;
if (m_iterator[index] == nullptr) {
if (g_data_lock_inspector[index] == nullptr) {
continue;
}
m_iterator[index] =
g_data_lock_inspector[index]->create_data_lock_wait_iterator();
if (m_iterator[index] == nullptr) {
continue;
}
}
bool iterator_done = false;
PSI_engine_data_lock_wait_iterator *it = m_iterator[index];
for (;;) {
data = m_container.get_row(m_pos.m_index_2);
if (data != nullptr) {
m_row = data;
m_next_pos.set_after(&m_pos);
m_pk_pos.set(&m_row->m_hidden_pk);
return 0;
}
if (iterator_done) {
break;
}
m_container.shrink();
/*
The implementation of PSI_engine_data_lock_wait_iterator::scan(),
inside a storage engine, is expected to:
- (1) not report all the data at once,
- (2) implement re-startable scans internally,
- (3) report a bounded number of rows per scan.
This is to allow allocating only a bounded amount of memory
in the data container, to cap the peak memory consumption
of the container.
TODO: Innodb_data_lock_wait_iterator::scan()
does not satisfy (3) currently.
*/
iterator_done = it->scan(&m_container);
}
}
return HA_ERR_END_OF_FILE;
}
int table_data_lock_waits::rnd_pos(const void *pos) {
row_data_lock_wait *data;
set_position(pos);
/*
TODO: Multiple engine support.
Find the proper engine based on column ENGINE.
*/
static_assert(COUNT_DATA_LOCK_ENGINES == 1,
"We don't support multiple engines yet.");
const unsigned int index = 0;
if (m_iterator[index] == nullptr) {
if (g_data_lock_inspector[index] == nullptr) {
return HA_ERR_RECORD_DELETED;
}
m_iterator[index] =
g_data_lock_inspector[index]->create_data_lock_wait_iterator();
if (m_iterator[index] == nullptr) {
return HA_ERR_RECORD_DELETED;
}
}
PSI_engine_data_lock_wait_iterator *it = m_iterator[index];
m_container.clear();
it->fetch(&m_container, m_pk_pos.get_requesting_lock_id(),
m_pk_pos.get_requesting_lock_id_length(),
m_pk_pos.get_blocking_lock_id(),
m_pk_pos.get_blocking_lock_id_length());
data = m_container.get_row(0);
if (data != nullptr) {
m_row = data;
return 0;
}
return HA_ERR_RECORD_DELETED;
}
int table_data_lock_waits::index_init(uint idx, bool) {
PFS_pk_data_lock_waits *pk = nullptr;
PFS_index_data_lock_waits *index = nullptr;
switch (idx) {
case 0:
pk = PFS_NEW(PFS_pk_data_lock_waits);
index = pk;
break;
case 1:
index = PFS_NEW(PFS_index_data_lock_waits_by_requesting_lock_id);
break;
case 2:
index = PFS_NEW(PFS_index_data_lock_waits_by_blocking_lock_id);
break;
case 3:
index = PFS_NEW(PFS_index_data_lock_waits_by_requesting_transaction_id);
break;
case 4:
index = PFS_NEW(PFS_index_data_lock_waits_by_blocking_transaction_id);
break;
case 5:
index = PFS_NEW(PFS_index_data_lock_waits_by_requesting_thread_id);
break;
case 6:
index = PFS_NEW(PFS_index_data_lock_waits_by_blocking_thread_id);
break;
default:
assert(false);
break;
}
m_opened_pk = pk;
m_opened_index = index;
m_index = index;
m_container.set_filter(m_opened_index);
return 0;
}
int table_data_lock_waits::index_next() {
int status;
if (m_opened_pk != nullptr) {
pk_pos_data_lock_wait *position = m_opened_pk->get_pk();
/*
* In the ideal case when:
* - the opened index is the PRIMARY KEY
* - the keypart field REQUESTING_ENGINE_LOCK_ID is provided
* - the keypart field BLOCKING_ENGINE_LOCK_ID is provided
* - the index fetch is an exact match HA_READ_KEY_EXACT
* then we can inspect the REQUESTING_ENGINE_LOCK_ID
* and BLOCKING_ENGINE_LOCK_ID values,
* and perform a PSI_engine_data_lock_wait_iterator::fetch()
* in the underlying storage engine.
*
* Evaluating the condition in the third part
* of the primary key, ENGINE, will be done as
* an index condition pushdown when adding rows
* to the container, filtered by
* PFS_pk_data_lock_waits::match_engine().
*/
if (position != nullptr) {
if (m_opened_pk->m_key_fetch_count == 0) {
status = rnd_pos(position);
if (status != 0) {
status = HA_ERR_KEY_NOT_FOUND;
}
} else {
status = HA_ERR_KEY_NOT_FOUND;
}
m_opened_pk->m_key_fetch_count++;
return status;
}
}
/*
* For every other cases:
* - index is the PRIMARY KEY, but both fields
* REQUESTING_ENGINE_LOCK_ID and BLOCKING_ENGINE_LOCK_ID are not available
* (for example, only REQUESTING_ENGINE_LOCK_ID is provided)
* - index is not the PRIMARY KEY
* we execute a scan, with filtering done as an index condition pushdown,
* attached to the data container.
*/
status = rnd_next();
return status;
}
int table_data_lock_waits::read_row_values(TABLE *table, unsigned char *buf,
Field **fields, bool read_all) {
Field *f;
if (unlikely(m_row == nullptr)) {
return HA_ERR_RECORD_DELETED;
}
/* Set the null bits */
assert(table->s->null_bytes == 1);
buf[0] = 0;
for (; (f = *fields); fields++) {
if (read_all || bitmap_is_set(table->read_set, f->field_index())) {
switch (f->field_index()) {
case 0: /* ENGINE */
set_field_varchar_utf8mb4(f, m_row->m_engine);
break;
case 1: /* REQUESTING_ENGINE_LOCK_ID */
set_field_varchar_utf8mb4(
f, m_row->m_hidden_pk.get_requesting_lock_id(),
m_row->m_hidden_pk.get_requesting_lock_id_length());
break;
case 2: /* REQUESTING_ENGINE_TRANSACTION_ID */
set_field_ulonglong(f, m_row->m_requesting_transaction_id);
break;
case 3: /* REQUESTING_THREAD_ID */
set_field_ulonglong(f, m_row->m_requesting_thread_id);
break;
case 4: /* REQUESTING_EVENT_ID */
set_field_ulonglong(f, m_row->m_requesting_event_id);
break;
case 5: /* REQUESTING_OBJECT_INSTANCE_BEGIN */
set_field_ulonglong(f, (intptr)m_row->m_requesting_identity);
break;
case 6: /* BLOCKING_ENGINE_LOCK_ID */
set_field_varchar_utf8mb4(
f, m_row->m_hidden_pk.get_blocking_lock_id(),
m_row->m_hidden_pk.get_blocking_lock_id_length());
break;
case 7: /* BLOCKING_ENGINE_TRANSACTION_ID */
set_field_ulonglong(f, m_row->m_blocking_transaction_id);
break;
case 8: /* BLOCKING_THREAD_ID */
set_field_ulonglong(f, m_row->m_blocking_thread_id);
break;
case 9: /* BLOCKING_EVENT_ID */
set_field_ulonglong(f, m_row->m_blocking_event_id);
break;
case 10: /* BLOCKING_OBJECT_INSTANCE_BEGIN */
set_field_ulonglong(f, (intptr)m_row->m_blocking_identity);
break;
default:
assert(false);
}
}
}
return 0;
}
|