Increase default timeout to 10 minutes (#186)
This commit is contained in:
parent
3b336e3e0b
commit
f994b68ad5
@ -179,7 +179,7 @@ DEFINE_VALIDATED_int32(audit_buffer_flush_interval_ms, audit::kBufferFlushInterv
|
|||||||
// Query flags.
|
// Query flags.
|
||||||
|
|
||||||
// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
|
// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
|
||||||
DEFINE_double(query_execution_timeout_sec, 180,
|
DEFINE_double(query_execution_timeout_sec, 600,
|
||||||
"Maximum allowed query execution time. Queries exceeding this "
|
"Maximum allowed query execution time. Queries exceeding this "
|
||||||
"limit will be aborted. Value of 0 means no limit.");
|
"limit will be aborted. Value of 0 means no limit.");
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ struct InterpreterConfig {
|
|||||||
bool allow_load_csv{true};
|
bool allow_load_csv{true};
|
||||||
} query;
|
} query;
|
||||||
|
|
||||||
// The default execution timeout is 3 minutes.
|
// The default execution timeout is 10 minutes.
|
||||||
double execution_timeout_sec{180.0};
|
double execution_timeout_sec{600.0};
|
||||||
};
|
};
|
||||||
} // namespace query
|
} // namespace query
|
||||||
|
Loading…
Reference in New Issue
Block a user