mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Update clickhouse-test
This commit is contained in:
parent
ebf3e7b9e4
commit
9c9ce0aa37
@ -98,6 +98,7 @@ def get_processlist(client_cmd):
|
||||
return "" # server seems dead
|
||||
|
||||
|
||||
# collect server stacktraces using gdb
|
||||
def get_stacktraces_from_gdb(server_pid):
|
||||
cmd = "gdb -batch -ex 'thread apply all backtrace' -p {}".format(server_pid)
|
||||
try:
|
||||
@ -106,6 +107,7 @@ def get_stacktraces_from_gdb(server_pid):
|
||||
return "Error occured while receiving stack traces from gdb: {}".format(str(ex))
|
||||
|
||||
|
||||
# collect server stacktraces from system.stack_trace table
|
||||
def get_stacktraces_from_clickhouse(client):
|
||||
try:
|
||||
return subprocess.check_call("{} --allow_introspection_functions=1 --query \"SELECT arrayStringConcat(arrayMap(x, y -> concat(x, ': ', y), arrayMap(x -> addressToLine(x), trace), arrayMap(x -> demangle(addressToSymbol(x)), trace)), '\n') as trace FROM system.stack_trace format Vertical\"".format(client), shell=True)
|
||||
|
Loading…
Reference in New Issue
Block a user