mod attribution;
mod cache;
mod compile;
mod compile_cache;
mod compiled;
mod execute;
mod projection;
mod result;
#[cfg(feature = "diagnostics")]
use crate::db::DataStore;
#[cfg(feature = "diagnostics")]
use crate::db::executor::{
current_pure_covering_decode_local_instructions,
current_pure_covering_row_assembly_local_instructions,
};
#[cfg(test)]
use crate::db::sql::parser::parse_sql;
#[cfg(feature = "diagnostics")]
use crate::db::{GroupedCountAttribution, GroupedExecutionAttribution};
use crate::{
db::{
DbSession, PersistedRow, QueryError,
commit::CommitSchemaFingerprint,
executor::{EntityAuthority, SharedPreparedExecutionPlan},
query::intent::StructuralQuery,
session::sql::projection::{
projection_fixed_scales_from_projection_spec, projection_labels_from_projection_spec,
},
sql::parser::SqlStatement,
},
traits::{CanisterKind, EntityValue},
};
pub(in crate::db::session::sql) use crate::db::diagnostics::measure_local_instruction_delta as measure_sql_stage;
#[cfg(feature = "diagnostics")]
pub(in crate::db) use attribution::SqlExecutePhaseAttribution;
#[cfg(feature = "diagnostics")]
pub use attribution::{
SqlCompileAttribution, SqlExecutionAttribution, SqlPureCoveringAttribution,
SqlQueryCacheAttribution, SqlQueryExecutionAttribution, SqlScalarAggregateAttribution,
};
pub(in crate::db::session::sql) use cache::SqlCompiledCommandSurface;
pub(in crate::db) use cache::{SqlCacheAttribution, SqlCompiledCommandCacheKey};
pub(in crate::db::session::sql) use compile::{
SqlCompileAttributionBuilder, SqlCompilePhaseAttribution,
};
pub(in crate::db) use compiled::{CompiledSqlCommand, SqlProjectionContract};
pub use result::SqlStatementResult;
#[cfg(all(test, not(feature = "diagnostics")))]
pub(crate) use crate::db::session::sql::projection::with_sql_projection_materialization_metrics;
#[cfg(feature = "diagnostics")]
pub use crate::db::session::sql::projection::{
SqlProjectionMaterializationMetrics, with_sql_projection_materialization_metrics,
};
#[cfg(test)]
pub(in crate::db) fn parse_sql_statement(sql: &str) -> Result<SqlStatement, QueryError> {
parse_sql(sql).map_err(QueryError::from_sql_parse_error)
}
fn measured<T>(stage: impl FnOnce() -> Result<T, QueryError>) -> Result<(u64, T), QueryError> {
let (local_instructions, result) = measure_sql_stage(stage);
let value = result?;
Ok((local_instructions, value))
}
impl<C: CanisterKind> DbSession<C> {
fn sql_select_prepared_plan(
&self,
query: &StructuralQuery,
authority: EntityAuthority,
cache_schema_fingerprint: CommitSchemaFingerprint,
) -> Result<
(
SharedPreparedExecutionPlan,
SqlProjectionContract,
SqlCacheAttribution,
),
QueryError,
> {
let (prepared_plan, cache_attribution) = self.cached_shared_query_plan_for_authority(
authority,
cache_schema_fingerprint,
query,
)?;
let projection_spec = prepared_plan
.logical_plan()
.projection_spec(authority.model());
let projection = SqlProjectionContract::new(
projection_labels_from_projection_spec(&projection_spec),
projection_fixed_scales_from_projection_spec(&projection_spec),
);
Ok((
prepared_plan,
projection,
SqlCacheAttribution::from_shared_query_plan_cache(cache_attribution),
))
}
fn ensure_sql_statement_supported_for_surface(
statement: &SqlStatement,
surface: SqlCompiledCommandSurface,
) -> Result<(), QueryError> {
match (surface, statement) {
(
SqlCompiledCommandSurface::Query,
SqlStatement::Select(_)
| SqlStatement::Explain(_)
| SqlStatement::Describe(_)
| SqlStatement::ShowIndexes(_)
| SqlStatement::ShowColumns(_)
| SqlStatement::ShowEntities(_),
)
| (
SqlCompiledCommandSurface::Update,
SqlStatement::Insert(_) | SqlStatement::Update(_) | SqlStatement::Delete(_),
) => Ok(()),
(SqlCompiledCommandSurface::Query, SqlStatement::Insert(_)) => {
Err(QueryError::unsupported_query(
"execute_sql_query rejects INSERT; use execute_sql_update::<E>()",
))
}
(SqlCompiledCommandSurface::Query, SqlStatement::Update(_)) => {
Err(QueryError::unsupported_query(
"execute_sql_query rejects UPDATE; use execute_sql_update::<E>()",
))
}
(SqlCompiledCommandSurface::Query, SqlStatement::Delete(_)) => {
Err(QueryError::unsupported_query(
"execute_sql_query rejects DELETE; use execute_sql_update::<E>()",
))
}
(SqlCompiledCommandSurface::Update, SqlStatement::Select(_)) => {
Err(QueryError::unsupported_query(
"execute_sql_update rejects SELECT; use execute_sql_query::<E>()",
))
}
(SqlCompiledCommandSurface::Update, SqlStatement::Explain(_)) => {
Err(QueryError::unsupported_query(
"execute_sql_update rejects EXPLAIN; use execute_sql_query::<E>()",
))
}
(SqlCompiledCommandSurface::Update, SqlStatement::Describe(_)) => {
Err(QueryError::unsupported_query(
"execute_sql_update rejects DESCRIBE; use execute_sql_query::<E>()",
))
}
(SqlCompiledCommandSurface::Update, SqlStatement::ShowIndexes(_)) => {
Err(QueryError::unsupported_query(
"execute_sql_update rejects SHOW INDEXES; use execute_sql_query::<E>()",
))
}
(SqlCompiledCommandSurface::Update, SqlStatement::ShowColumns(_)) => {
Err(QueryError::unsupported_query(
"execute_sql_update rejects SHOW COLUMNS; use execute_sql_query::<E>()",
))
}
(SqlCompiledCommandSurface::Update, SqlStatement::ShowEntities(_)) => {
Err(QueryError::unsupported_query(
"execute_sql_update rejects SHOW ENTITIES; use execute_sql_query::<E>()",
))
}
}
}
pub fn execute_sql_query<E>(&self, sql: &str) -> Result<SqlStatementResult, QueryError>
where
E: PersistedRow<Canister = C> + EntityValue,
{
let compiled = self.compile_sql_query::<E>(sql)?;
self.execute_compiled_sql_owned::<E>(compiled)
}
#[cfg(feature = "diagnostics")]
#[doc(hidden)]
pub fn execute_sql_query_with_attribution<E>(
&self,
sql: &str,
) -> Result<(SqlStatementResult, SqlQueryExecutionAttribution), QueryError>
where
E: PersistedRow<Canister = C> + EntityValue,
{
let (compile_local_instructions, compiled) =
measure_sql_stage(|| self.compile_sql_query_with_cache_attribution::<E>(sql));
let (compiled, compile_cache_attribution, compile_phase_attribution) = compiled?;
let store_get_calls_before = DataStore::current_get_call_count();
let pure_covering_decode_before = current_pure_covering_decode_local_instructions();
let pure_covering_row_assembly_before =
current_pure_covering_row_assembly_local_instructions();
let (result, execute_cache_attribution, execute_phase_attribution) =
self.execute_compiled_sql_with_phase_attribution::<E>(&compiled)?;
let store_get_calls =
DataStore::current_get_call_count().saturating_sub(store_get_calls_before);
let pure_covering_decode_local_instructions =
current_pure_covering_decode_local_instructions()
.saturating_sub(pure_covering_decode_before);
let pure_covering_row_assembly_local_instructions =
current_pure_covering_row_assembly_local_instructions()
.saturating_sub(pure_covering_row_assembly_before);
let execute_local_instructions = execute_phase_attribution
.planner_local_instructions
.saturating_add(execute_phase_attribution.store_local_instructions)
.saturating_add(execute_phase_attribution.executor_local_instructions)
.saturating_add(execute_phase_attribution.response_finalization_local_instructions);
let cache_attribution = compile_cache_attribution.merge(execute_cache_attribution);
let total_local_instructions =
compile_local_instructions.saturating_add(execute_local_instructions);
let grouped = matches!(&result, SqlStatementResult::Grouped { .. }).then_some(
GroupedExecutionAttribution {
stream_local_instructions: execute_phase_attribution
.grouped_stream_local_instructions,
fold_local_instructions: execute_phase_attribution.grouped_fold_local_instructions,
finalize_local_instructions: execute_phase_attribution
.grouped_finalize_local_instructions,
count: GroupedCountAttribution::from_executor(
execute_phase_attribution.grouped_count,
),
},
);
let pure_covering = (pure_covering_decode_local_instructions > 0
|| pure_covering_row_assembly_local_instructions > 0)
.then_some(SqlPureCoveringAttribution {
decode_local_instructions: pure_covering_decode_local_instructions,
row_assembly_local_instructions: pure_covering_row_assembly_local_instructions,
});
Ok((
result,
SqlQueryExecutionAttribution {
compile_local_instructions,
compile: SqlCompileAttribution {
cache_key_local_instructions: compile_phase_attribution.cache_key,
cache_lookup_local_instructions: compile_phase_attribution.cache_lookup,
parse_local_instructions: compile_phase_attribution.parse,
parse_tokenize_local_instructions: compile_phase_attribution.parse_tokenize,
parse_select_local_instructions: compile_phase_attribution.parse_select,
parse_expr_local_instructions: compile_phase_attribution.parse_expr,
parse_predicate_local_instructions: compile_phase_attribution.parse_predicate,
aggregate_lane_check_local_instructions: compile_phase_attribution
.aggregate_lane_check,
prepare_local_instructions: compile_phase_attribution.prepare,
lower_local_instructions: compile_phase_attribution.lower,
bind_local_instructions: compile_phase_attribution.bind,
cache_insert_local_instructions: compile_phase_attribution.cache_insert,
},
plan_lookup_local_instructions: execute_phase_attribution
.planner_local_instructions,
execution: SqlExecutionAttribution {
planner_local_instructions: execute_phase_attribution
.planner_local_instructions,
store_local_instructions: execute_phase_attribution.store_local_instructions,
executor_invocation_local_instructions: execute_phase_attribution
.executor_invocation_local_instructions,
executor_local_instructions: execute_phase_attribution
.executor_local_instructions,
response_finalization_local_instructions: execute_phase_attribution
.response_finalization_local_instructions,
},
grouped,
scalar_aggregate: SqlScalarAggregateAttribution::from_executor(
execute_phase_attribution.scalar_aggregate_terminal,
),
pure_covering,
store_get_calls,
response_decode_local_instructions: 0,
execute_local_instructions,
total_local_instructions,
cache: SqlQueryCacheAttribution {
sql_compiled_command_hits: cache_attribution.sql_compiled_command_cache_hits,
sql_compiled_command_misses: cache_attribution
.sql_compiled_command_cache_misses,
shared_query_plan_hits: cache_attribution.shared_query_plan_cache_hits,
shared_query_plan_misses: cache_attribution.shared_query_plan_cache_misses,
},
},
))
}
pub fn execute_sql_update<E>(&self, sql: &str) -> Result<SqlStatementResult, QueryError>
where
E: PersistedRow<Canister = C> + EntityValue,
{
let compiled = self.compile_sql_update::<E>(sql)?;
self.execute_compiled_sql_owned::<E>(compiled)
}
}