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
|
/*
Copyright (c) 2014, 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 */
#include "sql/opt_costconstants.h"
#include <assert.h>
#include "m_ctype.h"
#include "mysql/components/services/bits/psi_bits.h"
#include "sql/handler.h"
#include "sql/sql_plugin_ref.h"
#include "sql/table.h" // TABLE
/**
The default value for storage device type. If device type information
is added to the data dictionary or the storage engines start to
provide this information, this default can be replaced.
*/
const unsigned int DEFAULT_STORAGE_CLASS = 0;
/*
Values for cost constants defined as static const variables in the
Server_cost_constants class.
These are the default cost constant values that will be use if
the server administrator has not added new values in the server_cost
table.
Note: The default cost constants are displayed in the default_value
column of the cost tables. If any default value is changed,
make sure to update the column definitions in
mysql_system_tables.sql and mysql_system_tables_fix.sql
*/
// Default cost for evaluation of the query condition for a row.
const double Server_cost_constants::ROW_EVALUATE_COST = 0.1;
// Default cost for comparing row ids.
const double Server_cost_constants::KEY_COMPARE_COST = 0.05;
/*
Creating a Memory temporary table is by benchmark found to be as
costly as writing 10 rows into the table.
*/
const double Server_cost_constants::MEMORY_TEMPTABLE_CREATE_COST = 1.0;
/*
Writing a row to or reading a row from a Memory temporary table is
equivalent to evaluating a row in the join engine.
*/
const double Server_cost_constants::MEMORY_TEMPTABLE_ROW_COST = 0.1;
/*
Creating a MyISAM table is 20 times slower than creating a Memory table.
*/
const double Server_cost_constants::DISK_TEMPTABLE_CREATE_COST = 20.0;
/*
Generating MyISAM rows sequentially is 2 times slower than
generating Memory rows, when number of rows is greater than
1000. However, we do not have benchmarks for very large tables, so
setting this factor conservatively to be 5 times slower (ie the cost
is 1.0).
*/
const double Server_cost_constants::DISK_TEMPTABLE_ROW_COST = 0.5;
cost_constant_error Server_cost_constants::set(const LEX_CSTRING &name,
double value) {
assert(name.str != nullptr);
assert(name.length > 0);
if (name.str == nullptr || name.length == 0)
return UNKNOWN_COST_NAME; /* purecov: inspected */
/*
The cost constant value must be a positive and non-zero.
*/
if (value <= 0.0) return INVALID_COST_VALUE;
// ROW_EVALUATE_COST
if (my_strcasecmp(&my_charset_utf8mb3_general_ci, "ROW_EVALUATE_COST",
name.str) == 0) {
m_row_evaluate_cost = value;
return COST_CONSTANT_OK;
}
// KEY_COMPARE_COST
if (my_strcasecmp(&my_charset_utf8mb3_general_ci, "KEY_COMPARE_COST",
name.str) == 0) {
m_key_compare_cost = value;
return COST_CONSTANT_OK;
}
// MEMORY_TEMPTABLE_CREATE_COST
if (my_strcasecmp(&my_charset_utf8mb3_general_ci,
"MEMORY_TEMPTABLE_CREATE_COST", name.str) == 0) {
m_memory_temptable_create_cost = value;
return COST_CONSTANT_OK;
}
// MEMORY_TEMPTABLE_ROW_COST
if (my_strcasecmp(&my_charset_utf8mb3_general_ci, "MEMORY_TEMPTABLE_ROW_COST",
name.str) == 0) {
m_memory_temptable_row_cost = value;
return COST_CONSTANT_OK;
}
// DISK_TEMPTABLE_CREATE_COST
if (my_strcasecmp(&my_charset_utf8mb3_general_ci,
"DISK_TEMPTABLE_CREATE_COST", name.str) == 0) {
m_disk_temptable_create_cost = value;
return COST_CONSTANT_OK;
}
// DISK_TEMPTABLE_ROW_COST
if (my_strcasecmp(&my_charset_utf8mb3_general_ci, "DISK_TEMPTABLE_ROW_COST",
name.str) == 0) {
m_disk_temptable_row_cost = value;
return COST_CONSTANT_OK;
}
return UNKNOWN_COST_NAME; // Cost constant does not exist
}
/*
Values for cost constants defined as static const variables in the
SE_cost_constants class.
These are the default cost constant values that will be used if
the server administrator has not added new values in the engine_cost
table.
*/
// The cost of reading a block from a main memory buffer pool
const double SE_cost_constants::MEMORY_BLOCK_READ_COST = 0.25;
// The cost of reading a block from an IO device (disk)
const double SE_cost_constants::IO_BLOCK_READ_COST = 1.0;
cost_constant_error SE_cost_constants::set(const LEX_CSTRING &name,
const double value,
bool default_value) {
assert(name.str != nullptr);
assert(name.length > 0);
if (name.str == nullptr || name.length == 0)
return UNKNOWN_COST_NAME; /* purecov: inspected */
/*
The cost constant value must be a positive and non-zero number.
*/
if (value <= 0.0) return INVALID_COST_VALUE;
// MEMORY_BLOCK_READ_COST
if (my_strcasecmp(&my_charset_utf8mb3_general_ci, "MEMORY_BLOCK_READ_COST",
name.str) == 0) {
update_cost_value(&m_memory_block_read_cost,
&m_memory_block_read_cost_default, value, default_value);
return COST_CONSTANT_OK;
}
// IO_BLOCK_READ_COST
if (my_strcasecmp(&my_charset_utf8mb3_general_ci, "IO_BLOCK_READ_COST",
name.str) == 0) {
update_cost_value(&m_io_block_read_cost, &m_io_block_read_cost_default,
value, default_value);
return COST_CONSTANT_OK;
}
return UNKNOWN_COST_NAME; // Cost constant does not exist
}
cost_constant_error SE_cost_constants::update(const LEX_CSTRING &name,
const double value) {
return set(name, value, false);
}
cost_constant_error SE_cost_constants::update_default(const LEX_CSTRING &name,
const double value) {
return set(name, value, true);
}
void SE_cost_constants::update_cost_value(double *cost_constant,
bool *cost_constant_is_default,
double new_value,
bool new_value_is_default) {
// If this is not a new default value then do the update unconditionally
if (!new_value_is_default) {
*cost_constant = new_value;
*cost_constant_is_default = false; // No longer default value
} else {
/*
This new value is a default value. Only update the cost constant if it
currently has the default value.
*/
if (*cost_constant_is_default) *cost_constant = new_value;
}
}
Cost_model_se_info::Cost_model_se_info() {
for (uint i = 0; i < MAX_STORAGE_CLASSES; ++i)
m_se_cost_constants[i] = nullptr;
}
Cost_model_se_info::~Cost_model_se_info() {
for (uint i = 0; i < MAX_STORAGE_CLASSES; ++i) {
delete m_se_cost_constants[i];
m_se_cost_constants[i] = nullptr;
}
}
Cost_model_constants::Cost_model_constants()
: m_engines(PSI_NOT_INSTRUMENTED, num_hton2plugins()), m_ref_counter(0) {
/**
Create default cost constants for each storage engine.
*/
for (size_t engine = 0; engine < m_engines.size(); ++engine) {
const handlerton *ht = nullptr;
// Check if the storage engine has been installed
if (hton2plugin(engine)) {
// Find the handlerton for the storage engine
ht = static_cast<handlerton *>(hton2plugin(engine)->data);
}
for (uint storage = 0; storage < MAX_STORAGE_CLASSES; ++storage) {
SE_cost_constants *se_cost = nullptr;
/*
If the storage engine has provided a function for creating
storage engine specific cost constants, then ask the
storage engine to create the cost constants.
*/
if (ht && ht->get_cost_constants)
se_cost = ht->get_cost_constants(storage); /* purecov: tested */
/*
If the storage engine did not provide cost constants, then the
default cost constants will be used.
*/
if (se_cost == nullptr) se_cost = new SE_cost_constants();
m_engines[engine].set_cost_constants(se_cost, storage);
}
}
}
Cost_model_constants::~Cost_model_constants() { assert(m_ref_counter == 0); }
const SE_cost_constants *Cost_model_constants::get_se_cost_constants(
const TABLE *table) const {
assert(table->file != nullptr);
assert(table->file->ht != nullptr);
static SE_cost_constants default_cost;
/*
We do not see data for new htons loaded by the current session,
use default statistics.
*/
const uint slot = table->file->ht->slot;
const SE_cost_constants *se_cc =
slot < m_engines.size()
? m_engines[slot].get_cost_constants(DEFAULT_STORAGE_CLASS)
: &default_cost;
assert(se_cc != nullptr);
return se_cc;
}
cost_constant_error Cost_model_constants::update_server_cost_constant(
const LEX_CSTRING &name, double value) {
return m_server_constants.set(name, value);
}
cost_constant_error Cost_model_constants::update_engine_cost_constant(
THD *thd, const LEX_CSTRING &se_name, uint storage_category,
const LEX_CSTRING &name, double value) {
cost_constant_error retval = COST_CONSTANT_OK;
// Validate the storage category.
if (storage_category >= MAX_STORAGE_CLASSES) return INVALID_DEVICE_TYPE;
// Check if this is a default value
if (my_strcasecmp(&my_charset_utf8mb3_general_ci, "default", se_name.str) ==
0) {
retval = update_engine_default_cost(name, storage_category, value);
} else {
// Look up the handler's slot id by using the storage engine name
const uint ht_slot_id = find_handler_slot_from_name(thd, se_name);
if (ht_slot_id == HA_SLOT_UNDEF) return UNKNOWN_ENGINE_NAME;
SE_cost_constants *se_cc =
m_engines[ht_slot_id].get_cost_constants(storage_category);
assert(se_cc != nullptr);
retval = se_cc->update(name, value);
}
return retval;
}
uint Cost_model_constants::find_handler_slot_from_name(
THD *thd, const LEX_CSTRING &name) const {
// Look up the storage engine
const plugin_ref plugin = ha_resolve_by_name(thd, &name, false);
if (!plugin) return HA_SLOT_UNDEF;
// Find the handlerton for this storage engine
handlerton *ht = plugin_data<handlerton *>(plugin);
assert(ht != nullptr);
if (!ht) {
assert(false); /* purecov: inspected */
return HA_SLOT_UNDEF;
}
return ht->slot;
}
cost_constant_error Cost_model_constants::update_engine_default_cost(
const LEX_CSTRING &name, uint storage_category, double value) {
assert(storage_category < MAX_STORAGE_CLASSES);
/*
Return value: if at least one of the storage engines recognizes the
cost constants name, then success is returned.
*/
cost_constant_error retval = UNKNOWN_COST_NAME;
/*
Update all constants for engines that have their own cost constants
*/
for (size_t i = 0; i < m_engines.size(); ++i) {
SE_cost_constants *se_cc =
m_engines[i].get_cost_constants(storage_category);
if (se_cc) {
const cost_constant_error err = se_cc->update_default(name, value);
if (err != UNKNOWN_COST_NAME) retval = err;
}
}
return retval;
}
|