#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace DB { namespace ErrorCodes { extern const int ARGUMENT_OUT_OF_BOUND; extern const int CANNOT_PARSE_TEXT; extern const int ILLEGAL_COLUMN; extern const int INCORRECT_QUERY; extern const int LOGICAL_ERROR; extern const int QUERY_IS_NOT_SUPPORTED_IN_WINDOW_VIEW; extern const int SUPPORT_IS_DISABLED; extern const int TABLE_WAS_NOT_DROPPED; } namespace { const auto RESCHEDULE_MS = 500; class ParserStageMergeableOneMatcher { public: using Visitor = InDepthNodeVisitor; struct Data { ASTPtr window_function; String window_column_name; String timestamp_column_name; bool is_tumble = false; bool is_hop = false; }; static bool needChildVisit(ASTPtr & node, const ASTPtr &) { if (node->as()) return false; return true; } static void visit(ASTPtr & ast, Data & data) { if (const auto * t = ast->as()) visit(*t, ast, data); } private: static void visit(const ASTFunction & node, ASTPtr & node_ptr, Data & data) { if (node.name == "TUMBLE") { if (!data.window_function) { data.is_tumble = true; data.window_column_name = node.getColumnName(); data.window_function = node.clone(); data.timestamp_column_name = node.arguments->children[0]->getColumnName(); } else if (serializeAST(node) != serializeAST(*data.window_function)) throw Exception("WINDOW VIEW only support ONE WINDOW FUNCTION", ErrorCodes::QUERY_IS_NOT_SUPPORTED_IN_WINDOW_VIEW); } else if (node.name == "HOP") { if (!data.window_function) { data.is_hop = true; data.window_function = node.clone(); data.timestamp_column_name = node.arguments->children[0]->getColumnName(); auto ptr_ = node.clone(); std::static_pointer_cast(ptr_)->setAlias(""); auto arrayJoin = makeASTFunction("arrayJoin", ptr_); arrayJoin->alias = node.alias; node_ptr = arrayJoin; data.window_column_name = arrayJoin->getColumnName(); } else if (serializeAST(node) != serializeAST(*data.window_function)) throw Exception("WINDOW VIEW only support ONE WINDOW FUNCTION", ErrorCodes::QUERY_IS_NOT_SUPPORTED_IN_WINDOW_VIEW); } } }; class ParserProcTimeFinalMatcher { public: using Visitor = InDepthNodeVisitor; struct Data { bool is_time_column_now = false; String window_column_name; }; static bool needChildVisit(ASTPtr &, const ASTPtr &) { return true; } static void visit(ASTPtr & ast, Data & data) { if (const auto * t = ast->as()) visit(*t, ast, data); } private: static void visit(const ASTFunction & node, ASTPtr & node_ptr, Data & data) { if (node.name == "TUMBLE") { if (const auto * t = node.arguments->children[0]->as(); t && t->name == "now") { data.is_time_column_now = true; node_ptr->children[0]->children[0] = std::make_shared("____timestamp"); data.window_column_name = node.getColumnName(); } } else if (node.name == "HOP") { if (const auto * t = node.arguments->children[0]->as(); t && t->name == "now") data.is_time_column_now = true; } } }; static inline IntervalKind strToIntervalKind(const String& interval_str) { if (interval_str == "Second") return IntervalKind::Second; else if (interval_str == "Minute") return IntervalKind::Minute; else if (interval_str == "Hour") return IntervalKind::Hour; else if (interval_str == "Day") return IntervalKind::Day; else if (interval_str == "Week") return IntervalKind::Week; else if (interval_str == "Month") return IntervalKind::Month; else if (interval_str == "Quarter") return IntervalKind::Quarter; else if (interval_str == "Year") return IntervalKind::Year; __builtin_unreachable(); } static UInt32 addTime(UInt32 time_sec, IntervalKind::Kind window_kind, int window_num_units, const DateLUTImpl & time_zone) { switch (window_kind) { #define CASE_WINDOW_KIND(KIND) \ case IntervalKind::KIND: \ { \ return AddTime::execute(time_sec, window_num_units, time_zone); \ } CASE_WINDOW_KIND(Second) CASE_WINDOW_KIND(Minute) CASE_WINDOW_KIND(Hour) CASE_WINDOW_KIND(Day) CASE_WINDOW_KIND(Week) CASE_WINDOW_KIND(Month) CASE_WINDOW_KIND(Quarter) CASE_WINDOW_KIND(Year) #undef CASE_WINDOW_KIND } __builtin_unreachable(); } static inline String generateInnerTableName(const String & table_name) { return ".inner." + table_name; } static ASTPtr generateDeleteRetiredQuery(StorageID inner_table_id, UInt32 timestamp) { auto function_equal = makeASTFunction( "less", std::make_shared("____w_end"), std::make_shared(timestamp)); auto alterCommand = std::make_shared(); alterCommand->type = ASTAlterCommand::DELETE; alterCommand->predicate = function_equal; alterCommand->children.push_back(alterCommand->predicate); auto alterCommandList = std::make_shared(); alterCommandList->add(alterCommand); auto alterQuery = std::make_shared(); alterQuery->database = inner_table_id.database_name; alterQuery->table = inner_table_id.table_name; alterQuery->set(alterQuery->command_list, alterCommandList); return alterQuery; } static std::shared_ptr generateFetchColumnsQuery(const StorageID & inner_storage) { auto res_query = std::make_shared(); auto select = std::make_shared(); select->children.push_back(std::make_shared()); res_query->setExpression(ASTSelectQuery::Expression::SELECT, select); auto tableInSelectQuery = std::make_shared(); auto tableInSelectQueryElement = std::make_shared(); res_query->setExpression(ASTSelectQuery::Expression::TABLES, std::make_shared()); auto tables = res_query->tables(); auto tables_elem = std::make_shared(); auto table_expr = std::make_shared(); tables->children.push_back(tables_elem); tables_elem->table_expression = table_expr; tables_elem->children.push_back(table_expr); table_expr->database_and_table_name = createTableIdentifier(inner_storage.database_name, inner_storage.table_name); table_expr->children.push_back(table_expr->database_and_table_name); return res_query; } } static void extractDependentTable(ASTSelectQuery & query, String & select_database_name, String & select_table_name) { auto db_and_table = getDatabaseAndTable(query, 0); ASTPtr subquery = extractTableExpression(query, 0); if (!db_and_table && !subquery) return; if (db_and_table) { select_table_name = db_and_table->table; if (db_and_table->database.empty()) { db_and_table->database = select_database_name; AddDefaultDatabaseVisitor visitor(select_database_name); visitor.visit(query); } else select_database_name = db_and_table->database; } else if (auto * ast_select = subquery->as()) { if (ast_select->list_of_selects->children.size() != 1) throw Exception("UNION is not supported for WINDOW VIEW", ErrorCodes::QUERY_IS_NOT_SUPPORTED_IN_WINDOW_VIEW); auto & inner_query = ast_select->list_of_selects->children.at(0); extractDependentTable(inner_query->as(), select_database_name, select_table_name); } else throw Exception( "Logical error while creating StorageWindowView." " Could not retrieve table name from select query.", DB::ErrorCodes::LOGICAL_ERROR); } void StorageWindowView::checkTableCanBeDropped() const { auto table_id = getStorageID(); Dependencies dependencies = global_context.getDependencies(table_id); if (!dependencies.empty()) { StorageID dependent_table_id = dependencies.front(); throw Exception("Table has dependency " + dependent_table_id.getNameForLogs(), ErrorCodes::TABLE_WAS_NOT_DROPPED); } } static void executeDropQuery(ASTDropQuery::Kind kind, Context & global_context, const StorageID & target_table_id) { if (global_context.tryGetTable(target_table_id)) { auto drop_query = std::make_shared(); drop_query->database = target_table_id.database_name; drop_query->table = target_table_id.table_name; drop_query->kind = kind; ASTPtr ast_drop_query = drop_query; InterpreterDropQuery drop_interpreter(ast_drop_query, global_context); drop_interpreter.execute(); } } void StorageWindowView::drop(TableStructureWriteLockHolder &) { auto table_id = getStorageID(); global_context.removeDependency(select_table_id, table_id); if (!inner_table_id.empty()) executeDropQuery(ASTDropQuery::Kind::Drop, global_context, inner_table_id); std::lock_guard lock(mutex); is_dropped = true; fire_condition.notify_all(); } void StorageWindowView::truncate(const ASTPtr &, const Context &, TableStructureWriteLockHolder &) { if (!inner_table_id.empty()) executeDropQuery(ASTDropQuery::Kind::Truncate, global_context, inner_table_id); else { std::lock_guard lock(mutex); mergeable_blocks.clear(); } } bool StorageWindowView::optimize(const ASTPtr & query, const ASTPtr & partition, bool final, bool deduplicate, const Context & context) { if (inner_table_id.empty()) throw Exception( "OPTIMIZE only supported when creating WINDOW VIEW within INNER table.", ErrorCodes::INCORRECT_QUERY); return getInnerStorage()->optimize(query, partition, final, deduplicate, context); } Pipes StorageWindowView::blocksToPipes(BlocksList & blocks, Block & sample_block) { Pipes pipes; for (auto & block_ : blocks) pipes.emplace_back(std::make_shared(sample_block, Chunk(block_.getColumns(), block_.rows()))); return pipes; } inline void StorageWindowView::cleanCache() { UInt32 w_bound; if (is_proctime) { w_bound = getWindowUpperBound(std::time(nullptr)); } else { std::lock_guard lock(fire_signal_mutex); if (max_watermark == 0) return; w_bound = max_fired_watermark; if (w_bound == 0) return; if (allowed_lateness) { UInt32 lateness_bound = addTime(max_timestamp, lateness_kind, -1 * lateness_num_units, time_zone); lateness_bound = getWindowLowerBound(lateness_bound); if (lateness_bound < w_bound) w_bound = lateness_bound; } } w_bound = is_tumble ? addTime(w_bound, window_kind, -1 * window_num_units, time_zone) : addTime(w_bound, hop_kind, -1 * hop_num_units, time_zone); if (!inner_table_id.empty()) { auto sql = generateDeleteRetiredQuery(inner_table_id, w_bound); InterpreterAlterQuery alt_query(sql, global_context); alt_query.execute(); } else { std::lock_guard lock(mutex); mergeable_blocks.remove_if([w_bound](Block & block_) { auto & column_ = block_.getByName("____w_end").column; const auto & data = static_cast(*column_).getData(); for (size_t i = 0; i < column_->size(); ++i) { if (data[i] >= w_bound) return false; } return true; }); } std::lock_guard lock(fire_signal_mutex); watch_streams.remove_if([](std::weak_ptr & ptr) { return ptr.expired(); }); } inline void StorageWindowView::fire(UInt32 watermark) { if (target_table_id.empty() && watch_streams.empty()) return; BlockInputStreamPtr in_stream; { std::lock_guard lock(mutex); in_stream = getNewBlocksInputStreamPtr(watermark); } if (target_table_id.empty()) { in_stream->readPrefix(); while (auto block_ = in_stream->read()) { for (auto & watch_stream : watch_streams) { if (auto watch_stream_ = watch_stream.lock()) watch_stream_->addBlock(block_); } } in_stream->readSuffix(); } else { try { StoragePtr target_table = getTargetStorage(); auto _lock = target_table->lockStructureForShare(true, global_context.getCurrentQueryId()); auto out_stream = target_table->write(getInnerQuery(), global_context); in_stream->readPrefix(); out_stream->writePrefix(); while (auto block_ = in_stream->read()) { for (auto & watch_stream : watch_streams) { if (auto watch_stream_ = watch_stream.lock()) watch_stream_->addBlock(block_); } out_stream->write(std::move(block_)); } in_stream->readSuffix(); out_stream->writeSuffix(); } catch (...) { tryLogCurrentException(__PRETTY_FUNCTION__); } } fire_condition.notify_all(); } std::shared_ptr StorageWindowView::generateInnerTableCreateQuery(const ASTCreateQuery & inner_create_query, const String & database_name, const String & table_name) { /// We will create a query to create an internal table. auto manual_create_query = std::make_shared(); manual_create_query->database = database_name; manual_create_query->table = table_name; auto new_columns_list = std::make_shared(); auto sample_block_ = InterpreterSelectQuery(getInnerQuery(), global_context, getParentStorage(), SelectQueryOptions(QueryProcessingStage::WithMergeableState)) .getSampleBlock(); auto columns_list = std::make_shared(); if (is_time_column_now && is_tumble) { auto column_window = std::make_shared(); column_window->name = window_column_name; column_window->type = makeASTFunction("Tuple", std::make_shared("DateTime"), std::make_shared("DateTime")); columns_list->children.push_back(column_window); } for (auto & column_ : sample_block_.getColumnsWithTypeAndName()) { ParserIdentifierWithOptionalParameters parser; String sql = column_.type->getName(); ASTPtr ast = parseQuery(parser, sql.data(), sql.data() + sql.size(), "data type", 0); auto column_dec = std::make_shared(); column_dec->name = column_.name; column_dec->type = ast; columns_list->children.push_back(column_dec); } auto column_wend = std::make_shared(); column_wend->name = "____w_end"; column_wend->type = std::make_shared("DateTime"); columns_list->children.push_back(column_wend); new_columns_list->set(new_columns_list->columns, columns_list); manual_create_query->set(manual_create_query->columns_list, new_columns_list); manual_create_query->set(manual_create_query->storage, inner_create_query.storage->ptr()); return manual_create_query; } inline UInt32 StorageWindowView::getWindowLowerBound(UInt32 time_sec) { IntervalKind window_kind_; if (is_tumble) window_kind_ = window_kind; else window_kind_ = hop_kind; switch (window_kind_) { #define CASE_WINDOW_KIND(KIND) \ case IntervalKind::KIND: \ { \ if (is_tumble) \ return ToStartOfTransform::execute(time_sec, window_num_units, time_zone); \ else \ return ToStartOfTransform::execute(time_sec, hop_num_units, time_zone); \ } CASE_WINDOW_KIND(Second) CASE_WINDOW_KIND(Minute) CASE_WINDOW_KIND(Hour) CASE_WINDOW_KIND(Day) CASE_WINDOW_KIND(Week) CASE_WINDOW_KIND(Month) CASE_WINDOW_KIND(Quarter) CASE_WINDOW_KIND(Year) #undef CASE_WINDOW_KIND } __builtin_unreachable(); } inline UInt32 StorageWindowView::getWindowUpperBound(UInt32 time_sec) { switch (window_kind) { #define CASE_WINDOW_KIND(KIND) \ case IntervalKind::KIND: \ { \ UInt32 start = ToStartOfTransform::execute(time_sec, window_num_units, time_zone); \ return AddTime::execute(start, window_num_units, time_zone); \ } CASE_WINDOW_KIND(Second) CASE_WINDOW_KIND(Minute) CASE_WINDOW_KIND(Hour) CASE_WINDOW_KIND(Day) CASE_WINDOW_KIND(Week) CASE_WINDOW_KIND(Month) CASE_WINDOW_KIND(Quarter) CASE_WINDOW_KIND(Year) #undef CASE_WINDOW_KIND } __builtin_unreachable(); } inline void StorageWindowView::addFireSignal(std::set & signals) { std::lock_guard lock(fire_signal_mutex); for (auto it = signals.begin(); it != signals.end(); ++it) fire_signal.push_back(*it); fire_signal_condition.notify_all(); } inline void StorageWindowView::updateMaxTimestamp(UInt32 timestamp) { std::lock_guard lock(fire_signal_mutex); if (timestamp > max_timestamp) max_timestamp = timestamp; } inline void StorageWindowView::updateMaxWatermark(UInt32 watermark) { std::lock_guard lock(fire_signal_mutex); if (max_watermark == 0) { max_watermark = watermark; return; } bool updated; if (is_watermark_strictly_ascending) { updated = max_watermark < watermark; while (max_watermark < watermark) { fire_signal.push_back(max_watermark); max_fired_watermark = max_watermark; max_watermark = addTime(max_watermark, window_kind, window_num_units, time_zone); } } else // strictly || bounded { UInt32 max_watermark_bias = addTime(max_watermark, watermark_kind, watermark_num_units, time_zone); updated = max_watermark_bias <= watermark; while (max_watermark_bias <= max_timestamp) { fire_signal.push_back(max_watermark); max_fired_watermark = max_watermark; max_watermark = addTime(max_watermark, window_kind, window_num_units, time_zone); max_watermark_bias = addTime(max_watermark, window_kind, window_num_units, time_zone); } } if (updated) fire_signal_condition.notify_all(); } void StorageWindowView::threadFuncCleanCache() { while (!shutdown_called) { try { sleep(clean_interval); cleanCache(); } catch (...) { tryLogCurrentException(__PRETTY_FUNCTION__); break; } } if (!shutdown_called) cleanCacheTask->scheduleAfter(RESCHEDULE_MS); } void StorageWindowView::threadFuncFireProc() { std::unique_lock lock(fire_signal_mutex); while (!shutdown_called) { UInt32 timestamp_now = std::time(nullptr); while (next_fire_signal <= timestamp_now) { fire(next_fire_signal); next_fire_signal = addTime(next_fire_signal, window_kind, window_num_units, time_zone); } next_fire_signal = getWindowUpperBound(timestamp_now); UInt64 timestamp_usec = static_cast(Poco::Timestamp().epochMicroseconds()); fire_signal_condition.wait_for(lock, std::chrono::microseconds(static_cast(next_fire_signal) * 1000000 - timestamp_usec)); } if (!shutdown_called) fireTask->scheduleAfter(RESCHEDULE_MS); } void StorageWindowView::threadFuncFireEvent() { std::unique_lock lock(fire_signal_mutex); while (!shutdown_called) { bool signaled = std::cv_status::no_timeout == fire_signal_condition.wait_for(lock, std::chrono::seconds(5)); if (!signaled) continue; while (!fire_signal.empty()) { fire(fire_signal.front()); fire_signal.pop_front(); } } if (!shutdown_called) fireTask->scheduleAfter(RESCHEDULE_MS); } BlockInputStreams StorageWindowView::watch( const Names & /*column_names*/, const SelectQueryInfo & query_info, const Context & /*context*/, QueryProcessingStage::Enum & processed_stage, size_t /*max_block_size*/, const unsigned /*num_streams*/) { ASTWatchQuery & query = typeid_cast(*query_info.query); bool has_limit = false; UInt64 limit = 0; if (query.limit_length) { has_limit = true; limit = safeGet(typeid_cast(*query.limit_length).value); } auto reader = std::make_shared( std::static_pointer_cast(shared_from_this()), has_limit, limit, global_context.getSettingsRef().window_view_heartbeat_interval.totalSeconds()); std::lock_guard lock(fire_signal_mutex); watch_streams.push_back(reader); processed_stage = QueryProcessingStage::Complete; return {reader}; } StorageWindowView::StorageWindowView( const StorageID & table_id_, Context & local_context, const ASTCreateQuery & query, const ColumnsDescription & columns_, bool attach_) : IStorage(table_id_) , global_context(local_context.getGlobalContext()) , time_zone(DateLUT::instance()) { setColumns(columns_); if (!query.select) throw Exception("SELECT query is not specified for " + getName(), ErrorCodes::INCORRECT_QUERY); if (query.select->list_of_selects->children.size() != 1) throw Exception("UNION is not supported for Window View", ErrorCodes::QUERY_IS_NOT_SUPPORTED_IN_WINDOW_VIEW); auto inner_query_ = query.select->list_of_selects->children.at(0); ASTSelectQuery & select_query = typeid_cast(*inner_query_); String select_database_name = local_context.getCurrentDatabase(); String select_table_name; extractDependentTable(select_query, select_database_name, select_table_name); select_table_id = StorageID(select_database_name, select_table_name); inner_query = innerQueryParser(select_query); final_query = inner_query->clone(); ParserProcTimeFinalMatcher::Data final_query_data; ParserProcTimeFinalMatcher::Visitor(final_query_data).visit(final_query); is_time_column_now = final_query_data.is_time_column_now; if (is_time_column_now && is_tumble) window_column_name = final_query_data.window_column_name; is_watermark_strictly_ascending = query.is_watermark_strictly_ascending; is_watermark_ascending = query.is_watermark_ascending; is_watermark_bounded = query.is_watermark_bounded; /// If the table is not specified - use the table `system.one` if (select_table_name.empty()) { select_database_name = "system"; select_table_name = "one"; } global_context.addDependency(select_table_id, table_id_); if (!query.to_table.empty()) target_table_id = StorageID(query.to_database, query.to_table); clean_interval = local_context.getSettingsRef().window_view_clean_interval.totalSeconds(); next_fire_signal = getWindowUpperBound(std::time(nullptr)); if (query.is_watermark_strictly_ascending || query.is_watermark_ascending || query.is_watermark_bounded) { is_proctime = false; if (is_time_column_now) throw Exception("now() is not support for Event time processing.", ErrorCodes::INCORRECT_QUERY); if (query.is_watermark_ascending) { is_watermark_bounded = true; watermark_kind = IntervalKind::Second; watermark_num_units = 1; } else if (query.is_watermark_bounded) { // parser watermark function const auto & watermark_function = std::static_pointer_cast(query.watermark_function); if (!startsWith(watermark_function->name, "toInterval")) throw Exception("Illegal type of WATERMARK function, should be Interval", ErrorCodes::ILLEGAL_COLUMN); const auto & interval_units_p1 = std::static_pointer_cast(watermark_function->children.front()->children.front()); watermark_kind = strToIntervalKind(watermark_function->name.substr(10)); try { watermark_num_units = boost::lexical_cast(interval_units_p1->value.get()); } catch (const boost::bad_lexical_cast &) { throw Exception("Cannot parse string '" + interval_units_p1->value.get() + "' as Integer.", ErrorCodes::CANNOT_PARSE_TEXT); } if (watermark_num_units <= 0) throw Exception("Value for WATERMARK function must be positive.", ErrorCodes::ARGUMENT_OUT_OF_BOUND); } } if (query.allowed_lateness) { allowed_lateness = true; // parser lateness function const auto & lateness_function = std::static_pointer_cast(query.lateness_function); if (!startsWith(lateness_function->name, "toInterval")) throw Exception("Illegal type of ALLOWED_LATENESS function, should be Interval", ErrorCodes::ILLEGAL_COLUMN); const auto & interval_units_p1 = std::static_pointer_cast(lateness_function->children.front()->children.front()); lateness_kind = strToIntervalKind(lateness_function->name.substr(10)); try { lateness_num_units = boost::lexical_cast(interval_units_p1->value.get()); } catch (const boost::bad_lexical_cast &) { throw Exception( "Cannot parse string '" + interval_units_p1->value.get() + "' as Integer.", ErrorCodes::CANNOT_PARSE_TEXT); } if (lateness_num_units <= 0) throw Exception("Value for ALLOWED_LATENESS function must be positive.", ErrorCodes::ARGUMENT_OUT_OF_BOUND); } if (query.storage) { if (attach_) { inner_table_id = StorageID(table_id_.database_name, generateInnerTableName(table_id_.table_name)); } else { if (query.storage->engine->name != "MergeTree") throw Exception( "The ENGINE of WindowView must be MergeTree family of table engines including the engines with replication support", ErrorCodes::INCORRECT_QUERY); auto manual_create_query = generateInnerTableCreateQuery(query, table_id_.database_name, generateInnerTableName(table_id_.table_name)); InterpreterCreateQuery create_interpreter(manual_create_query, local_context); create_interpreter.setInternal(true); create_interpreter.execute(); inner_storage = global_context.getTable(manual_create_query->database, manual_create_query->table); inner_table_id = inner_storage->getStorageID(); } fetch_column_query = generateFetchColumnsQuery(inner_table_id); } { // write expressions ColumnsWithTypeAndName columns__; columns__.emplace_back( nullptr, std::make_shared(DataTypes{std::make_shared(), std::make_shared()}), window_column_name); columns__.emplace_back(nullptr, std::make_shared(), "____timestamp"); const auto & function_tuple = FunctionFactory::instance().get("tupleElement", global_context); writeExpressions = std::make_shared(columns__, global_context); writeExpressions->add(ExpressionAction::addColumn( {std::make_shared()->createColumnConst(1, toField(2)), std::make_shared(), "____tuple_arg"})); writeExpressions->add(ExpressionAction::applyFunction(function_tuple, Names{window_column_name, "____tuple_arg"}, "____w_end")); writeExpressions->add(ExpressionAction::removeColumn("____tuple_arg")); } cleanCacheTask = global_context.getSchedulePool().createTask(getStorageID().getFullTableName(), [this] { threadFuncCleanCache(); }); if (is_proctime) fireTask = global_context.getSchedulePool().createTask(getStorageID().getFullTableName(), [this] { threadFuncFireProc(); }); else fireTask = global_context.getSchedulePool().createTask(getStorageID().getFullTableName(), [this] { threadFuncFireEvent(); }); cleanCacheTask->deactivate(); fireTask->deactivate(); } ASTPtr StorageWindowView::innerQueryParser(ASTSelectQuery & query) { if (!query.groupBy()) throw Exception("GROUP BY query is required for " + getName(), ErrorCodes::INCORRECT_QUERY); // parse stage mergeable ASTPtr result = query.clone(); ASTPtr expr_list = result; ParserStageMergeableOneMatcher::Data stageMergeableOneData; ParserStageMergeableOneMatcher::Visitor(stageMergeableOneData).visit(expr_list); if (!stageMergeableOneData.is_tumble && !stageMergeableOneData.is_hop) throw Exception("WINDOW FUNCTION is not specified for " + getName(), ErrorCodes::INCORRECT_QUERY); window_column_name = stageMergeableOneData.window_column_name; timestamp_column_name = stageMergeableOneData.timestamp_column_name; is_tumble = stageMergeableOneData.is_tumble; // parser window function ASTFunction & window_function = typeid_cast(*stageMergeableOneData.window_function); const auto & arguments = window_function.arguments->children; const auto & arg1 = std::static_pointer_cast(arguments.at(1)); if (!arg1 || !startsWith(arg1->name, "toInterval")) throw Exception("Illegal type of second argument of function " + arg1->name + " should be Interval", ErrorCodes::ILLEGAL_COLUMN); window_kind = strToIntervalKind(arg1->name.substr(10)); const auto & interval_units_p1 = std::static_pointer_cast(arg1->children.front()->children.front()); window_num_units = stoi(interval_units_p1->value.get()); if (window_num_units <= 0) throw Exception("Interval value for WINDOW function must be positive.", ErrorCodes::ARGUMENT_OUT_OF_BOUND); if (!is_tumble) { const auto & arg2 = std::static_pointer_cast(arguments.at(2)); if (!arg2 || !startsWith(arg2->name, "toInterval")) throw Exception("Illegal type of last argument of function " + arg2->name + " should be Interval", ErrorCodes::ILLEGAL_COLUMN); hop_kind = strToIntervalKind(arg2->name.substr(10)); const auto & interval_units_p2 = std::static_pointer_cast(arg2->children.front()->children.front()); hop_num_units = stoi(interval_units_p2->value.get()); if (hop_num_units <= 0) throw Exception("Interval value for WINDOW function must be positive.", ErrorCodes::ARGUMENT_OUT_OF_BOUND); } return result; } void StorageWindowView::writeIntoWindowView(StorageWindowView & window_view, const Block & block, const Context & context) { Pipe pipe(std::make_shared(block.cloneEmpty(), Chunk(block.getColumns(), block.rows()))); BlockInputStreamPtr source_stream; std::shared_lock fire_signal_lock; if (window_view.is_proctime) { fire_signal_lock = std::shared_lock(window_view.fire_signal_mutex); if (window_view.is_tumble) { UInt32 timestamp_now = std::time(nullptr); pipe.addSimpleTransform(std::make_shared>( pipe.getHeader(), std::make_shared(), timestamp_now, "____timestamp")); } InterpreterSelectQuery select_block(window_view.getFinalQuery(), context, {std::move(pipe)}, QueryProcessingStage::WithMergeableState); source_stream = select_block.execute().in; source_stream = std::make_shared(source_stream, window_view.writeExpressions); source_stream = std::make_shared( source_stream, context.getSettingsRef().min_insert_block_size_rows, context.getSettingsRef().min_insert_block_size_bytes); } else { UInt32 max_fired_watermark_ = 0; if (window_view.allowed_lateness) { UInt32 max_timestamp_ = 0; UInt32 max_watermark_ = 0; { std::lock_guard lock(window_view.fire_signal_mutex); max_fired_watermark_ = window_view.max_fired_watermark; max_watermark_ = window_view.max_watermark; max_timestamp_ = window_view.max_timestamp; } if (max_timestamp_!= 0) { UInt32 lateness_bound = addTime(max_timestamp_, window_view.lateness_kind, -1 * window_view.lateness_num_units, window_view.time_zone); if (window_view.is_watermark_bounded) { UInt32 watermark_lower_bound = window_view.is_tumble ? addTime(max_watermark_, window_view.window_kind, -1 * window_view.window_num_units, window_view.time_zone) : addTime(max_watermark_, window_view.hop_kind, -1 * window_view.hop_num_units, window_view.time_zone); if (watermark_lower_bound < lateness_bound) lateness_bound = watermark_lower_bound; } ColumnsWithTypeAndName columns__; columns__.emplace_back(nullptr, std::make_shared(), window_view.timestamp_column_name); ExpressionActionsPtr filterExpressions = std::make_shared(columns__, context); filterExpressions->add( ExpressionAction::addColumn({std::make_shared()->createColumnConst(1, toField(lateness_bound)), std::make_shared(), "____lateness_bound"})); const auto & function_greater = FunctionFactory::instance().get("greaterOrEquals", context); filterExpressions->add(ExpressionAction::applyFunction( function_greater, Names{window_view.timestamp_column_name, "____lateness_bound"}, "____filter")); pipe.addSimpleTransform(std::make_shared(pipe.getHeader(), filterExpressions, "____filter", true)); } } UInt32 max_timestamp__ = 0; if (!window_view.is_tumble || window_view.is_watermark_bounded || window_view.allowed_lateness) { auto & column_timestamp = block.getByName(window_view.timestamp_column_name).column; const ColumnUInt32::Container & timestamp_data = static_cast(*column_timestamp).getData(); for (size_t i = 0; i < timestamp_data.size(); ++i) { if (timestamp_data[i] > max_timestamp__) max_timestamp__ = timestamp_data[i]; } } InterpreterSelectQuery select_block(window_view.getFinalQuery(), context, {std::move(pipe)}, QueryProcessingStage::WithMergeableState); source_stream = select_block.execute().in; source_stream = std::make_shared(source_stream, window_view.writeExpressions); source_stream = std::make_shared( source_stream, context.getSettingsRef().min_insert_block_size_rows, context.getSettingsRef().min_insert_block_size_bytes); if (!window_view.is_tumble) source_stream = std::make_shared(source_stream, window_view, window_view.getWindowUpperBound(max_timestamp__)); else source_stream = std::make_shared(source_stream, window_view); if (window_view.is_watermark_bounded || window_view.allowed_lateness) std::static_pointer_cast(source_stream)->setMaxTimestamp(max_timestamp__); if (window_view.allowed_lateness && max_fired_watermark_ != 0) std::static_pointer_cast(source_stream)->setAllowedLateness(max_fired_watermark_); } if (!window_view.inner_table_id.empty()) { auto & inner_storage = window_view.getInnerStorage(); auto lock_ = inner_storage->lockStructureForShare(true, context.getCurrentQueryId()); auto stream = inner_storage->write(window_view.getInnerQuery(), context); copyData(*source_stream, *stream); } else { source_stream->readPrefix(); { std::lock_guard lock(window_view.mutex); while (Block block_ = source_stream->read()) window_view.mergeable_blocks.push_back(std::move(block_)); } source_stream->readSuffix(); } } void StorageWindowView::startup() { // Start the working thread cleanCacheTask->activateAndSchedule(); fireTask->activateAndSchedule(); } void StorageWindowView::shutdown() { bool expected = false; if (!shutdown_called.compare_exchange_strong(expected, true)) return; cleanCacheTask->deactivate(); fireTask->deactivate(); } StorageWindowView::~StorageWindowView() { shutdown(); } Block & StorageWindowView::getHeader() const { std::lock_guard lock(sample_block_lock); if (!sample_block) { sample_block = InterpreterSelectQuery( getInnerQuery(), global_context, getParentStorage(), SelectQueryOptions(QueryProcessingStage::Complete)) .getSampleBlock(); for (size_t i = 0; i < sample_block.columns(); ++i) sample_block.safeGetByPosition(i).column = sample_block.safeGetByPosition(i).column->convertToFullColumnIfConst(); } return sample_block; } StoragePtr StorageWindowView::getParentStorage() const { if (parent_storage == nullptr) parent_storage = global_context.getTable(select_table_id); return parent_storage; } Block & StorageWindowView::getMergeableHeader() const { if (!mergeable_sample_block) mergeable_sample_block = mergeable_blocks.front().cloneEmpty(); return mergeable_sample_block; } StoragePtr & StorageWindowView::getInnerStorage() const { if (inner_storage == nullptr && !inner_table_id.empty()) inner_storage = global_context.getTable(inner_table_id); return inner_storage; } StoragePtr & StorageWindowView::getTargetStorage() const { if (target_storage == nullptr && !target_table_id.empty()) target_storage = global_context.getTable(target_table_id); return target_storage; } BlockInputStreamPtr StorageWindowView::getNewBlocksInputStreamPtr(UInt32 watermark) { Pipes pipes; if (!inner_table_id.empty()) { auto & storage = getInnerStorage(); InterpreterSelectQuery fetch(fetch_column_query, global_context, storage, SelectQueryOptions(QueryProcessingStage::FetchColumns)); QueryPipeline pipeline; BlockInputStreams streams = fetch.executeWithMultipleStreams(pipeline); for (auto & stream : streams) pipes.emplace_back(std::make_shared(std::move(stream))); } else { if (mergeable_blocks.empty()) return std::make_shared(getHeader()); pipes = blocksToPipes(mergeable_blocks, getMergeableHeader()); } ColumnsWithTypeAndName columns_; columns_.emplace_back(nullptr, std::make_shared(), "____w_end"); ExpressionActionsPtr actions_ = std::make_shared(columns_, global_context); actions_->add(ExpressionAction::addColumn({std::make_shared()->createColumnConst(1, toField(watermark)), std::make_shared(), "____watermark"})); const auto & function_equals = FunctionFactory::instance().get("equals", global_context); ExpressionActionsPtr apply_function_actions = std::make_shared(columns_, global_context); actions_->add(ExpressionAction::applyFunction(function_equals, Names{"____w_end", "____watermark"}, "____filter")); actions_->add(ExpressionAction::removeColumn("____w_end")); actions_->add(ExpressionAction::removeColumn("____watermark")); for (auto & pipe : pipes) pipe.addSimpleTransform(std::make_shared(pipe.getHeader(), actions_, "____filter", true)); auto proxy_storage = std::make_shared( StorageID("", "WindowViewProxyStorage"), getParentStorage()->getColumns(), std::move(pipes), QueryProcessingStage::WithMergeableState); InterpreterSelectQuery select(getFinalQuery(), global_context, proxy_storage, QueryProcessingStage::Complete); BlockInputStreamPtr data = std::make_shared(select.execute().in); /// Squashing is needed here because the view query can generate a lot of blocks /// even when only one block is inserted into the parent table (e.g. if the query is a GROUP BY /// and two-level aggregation is triggered). data = std::make_shared( data, global_context.getSettingsRef().min_insert_block_size_rows, global_context.getSettingsRef().min_insert_block_size_bytes); return data; } void registerStorageWindowView(StorageFactory & factory) { factory.registerStorage("WindowView", [](const StorageFactory::Arguments & args) { if (!args.attach && !args.local_context.getSettingsRef().allow_experimental_window_view) throw Exception( "Experimental WINDOW VIEW feature is not enabled (the setting 'allow_experimental_window_view')", ErrorCodes::SUPPORT_IS_DISABLED); return StorageWindowView::create(args.table_id, args.local_context, args.query, args.columns, args.attach); }); } }