[chore](removelogs) remove debug query timeout logs

This commit is contained in:
yiguolei
2024-01-12 14:37:20 +08:00
parent 62064a86bf
commit e4e57e9b05
4 changed files with 17 additions and 17 deletions

View File

@ -197,13 +197,13 @@ Status VScanNode::alloc_resource(RuntimeState* state) {
if (_scanner_ctx) {
DCHECK(!_eos && _num_scanners->value() > 0);
RETURN_IF_ERROR(_scanner_ctx->init());
LOG(INFO) << "yyyy instance " << print_id(state->fragment_instance_id())
<< " submit scanner ctx " << _scanner_ctx->debug_string();
//LOG(INFO) << "yyyy instance " << print_id(state->fragment_instance_id())
// << " submit scanner ctx " << _scanner_ctx->debug_string();
RETURN_IF_ERROR(_state->exec_env()->scanner_scheduler()->submit(_scanner_ctx));
}
if (_shared_scan_opt) {
LOG(INFO) << "instance shared scan enabled"
<< print_id(state->fragment_instance_id());
//LOG(INFO) << "instance shared scan enabled"
// << print_id(state->fragment_instance_id());
_shared_scanner_controller->set_scanner_context(id(),
_eos ? nullptr : _scanner_ctx);
}
@ -222,8 +222,8 @@ Status VScanNode::alloc_resource(RuntimeState* state) {
if (_scanner_ctx) {
RETURN_IF_ERROR(_scanner_ctx->init());
LOG(INFO) << "yyyy instance " << print_id(state->fragment_instance_id())
<< " submit scanner ctx " << _scanner_ctx->debug_string();
//LOG(INFO) << "yyyy instance " << print_id(state->fragment_instance_id())
// << " submit scanner ctx " << _scanner_ctx->debug_string();
RETURN_IF_ERROR(_state->exec_env()->scanner_scheduler()->submit(_scanner_ctx));
}
}