MCPcopy Create free account
hub / github.com/apache/impala / get_runtime_profile

Method get_runtime_profile

tests/common/impala_connection.py:483–488  ·  view source on GitHub ↗
(self, operation_handle,
                          profile_format=TRuntimeProfileFormat.STRING)

Source from the content-addressed store, hash-verified

481 return self.__beeswax_client.get_exec_summary(operation_handle.get_handle())
482
483 def get_runtime_profile(self, operation_handle,
484 profile_format=TRuntimeProfileFormat.STRING):
485 assert profile_format == TRuntimeProfileFormat.STRING, (
486 "Beeswax client only supports getting runtime profile in STRING format.")
487 self.log_handle(operation_handle, 'getting runtime profile operation')
488 return self.__beeswax_client.get_runtime_profile(operation_handle.get_handle())
489
490 def wait_for_finished_timeout(self, operation_handle, timeout):
491 self.log_handle(operation_handle, 'waiting for query to reach FINISHED state')

Callers

nothing calls this directly

Calls 3

get_handleMethod · 0.80
log_handleMethod · 0.45
get_runtime_profileMethod · 0.45

Tested by

no test coverage detected