Return a string id for given operation_handle. Most implementations will return an Impala query id for given handle. Otherwise, return str(operation_handle).
(self, operation_handle)
| 299 | |
| 300 | @abc.abstractmethod |
| 301 | def handle_id(self, operation_handle): |
| 302 | """Return a string id for given operation_handle. |
| 303 | Most implementations will return an Impala query id for given handle. |
| 304 | Otherwise, return str(operation_handle).""" |
| 305 | pass |
| 306 | |
| 307 | def log_handle(self, operation_handle, message): |
| 308 | """Log 'message' at INFO level, along with id of 'operation_handle'.""" |
no outgoing calls