You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
3.5 KiB
106 lines
3.5 KiB
/*
|
|
Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
|
|
|
|
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 also distributed 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 included with MySQL.
|
|
|
|
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_costmodel.h"
|
|
|
|
#include "my_dbug.h"
|
|
#include "sql/handler.h"
|
|
#include "sql/opt_costconstantcache.h" // Cost_constant_cache
|
|
#include "sql/table.h" // TABLE
|
|
|
|
extern Cost_constant_cache *cost_constant_cache; // defined in
|
|
// opt_costconstantcache.cc
|
|
|
|
Cost_model_server::~Cost_model_server() {
|
|
if (m_cost_constants) {
|
|
if (cost_constant_cache) {
|
|
cost_constant_cache->release_cost_constants(m_cost_constants);
|
|
}
|
|
m_cost_constants = NULL;
|
|
}
|
|
}
|
|
|
|
void Cost_model_server::init() {
|
|
if (cost_constant_cache && m_server_cost_constants == NULL) {
|
|
// Get the current set of cost constants
|
|
m_cost_constants = cost_constant_cache->get_cost_constants();
|
|
DBUG_ASSERT(m_cost_constants != NULL);
|
|
|
|
// Get the cost constants for server operations
|
|
m_server_cost_constants = m_cost_constants->get_server_cost_constants();
|
|
DBUG_ASSERT(m_server_cost_constants != NULL);
|
|
|
|
#if !defined(DBUG_OFF)
|
|
m_initialized = true;
|
|
#endif
|
|
}
|
|
}
|
|
|
|
void Cost_model_table::init(const Cost_model_server *cost_model_server,
|
|
const TABLE *table) {
|
|
DBUG_ASSERT(cost_model_server != NULL);
|
|
DBUG_ASSERT(table != NULL);
|
|
|
|
m_cost_model_server = cost_model_server;
|
|
m_table = table;
|
|
|
|
// Find the cost constant object to be used for this table
|
|
m_se_cost_constants =
|
|
m_cost_model_server->get_cost_constants()->get_se_cost_constants(table);
|
|
DBUG_ASSERT(m_se_cost_constants != NULL);
|
|
|
|
#if !defined(DBUG_OFF)
|
|
m_initialized = true;
|
|
#endif
|
|
}
|
|
|
|
double Cost_model_table::page_read_cost(double pages) const {
|
|
DBUG_ASSERT(m_initialized);
|
|
DBUG_ASSERT(pages >= 0.0);
|
|
|
|
const double in_mem = m_table->file->table_in_memory_estimate();
|
|
|
|
const double pages_in_mem = pages * in_mem;
|
|
const double pages_on_disk = pages - pages_in_mem;
|
|
DBUG_ASSERT(pages_on_disk >= 0.0);
|
|
|
|
const double cost =
|
|
buffer_block_read_cost(pages_in_mem) + io_block_read_cost(pages_on_disk);
|
|
|
|
return cost;
|
|
}
|
|
|
|
double Cost_model_table::page_read_cost_index(uint index, double pages) const {
|
|
DBUG_ASSERT(m_initialized);
|
|
DBUG_ASSERT(pages >= 0.0);
|
|
|
|
double in_mem = m_table->file->index_in_memory_estimate(index);
|
|
|
|
const double pages_in_mem = pages * in_mem;
|
|
const double pages_on_disk = pages - pages_in_mem;
|
|
|
|
const double cost =
|
|
buffer_block_read_cost(pages_in_mem) + io_block_read_cost(pages_on_disk);
|
|
|
|
return cost;
|
|
}
|
|
|