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

Method execute_async

tests/common/impala_connection.py:277–281  ·  view source on GitHub ↗

Issues a query and returns the handle to the caller for processing. Only one async operation per connection at a time is supported, due to limitations of the Beeswax protocol and the Impyla client.

(self, sql_stmt)

Source from the content-addressed store, hash-verified

275
276 @abc.abstractmethod
277 def execute_async(self, sql_stmt):
278 """Issues a query and returns the handle to the caller for processing. Only one
279 async operation per connection at a time is supported, due to limitations of the
280 Beeswax protocol and the Impyla client."""
281 pass
282
283 @abc.abstractmethod
284 def fetch(self, sql_stmt, operation_handle, max_rows=-1, discard_results=False):

Calls

no outgoing calls