trait QueryExecutionListener extends AnyRef
The interface of query execution listener that can be used to analyze execution metrics.
- Note
Implementations should guarantee thread-safety as they can be invoked by multiple different threads.
- Alphabetic
- By Inheritance
- QueryExecutionListener
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
onFailure(funcName: String, qe: QueryExecution, exception: Exception): Unit
A callback function that will be called when a query execution failed.
A callback function that will be called when a query execution failed.
- funcName
the name of the action that triggered this query.
- qe
the QueryExecution object that carries detail information like logical plan, physical plan, etc.
- exception
the exception that failed this query. If
java.lang.Error
is thrown during execution, it will be wrapped with anException
and it can be accessed byexception.getCause
.
- Annotations
- @DeveloperApi()
- Note
This can be invoked by multiple different threads.
-
abstract
def
onSuccess(funcName: String, qe: QueryExecution, durationNs: Long): Unit
A callback function that will be called when a query executed successfully.
A callback function that will be called when a query executed successfully.
- funcName
name of the action that triggered this query.
- qe
the QueryExecution object that carries detail information like logical plan, physical plan, etc.
- durationNs
the execution time for this query in nanoseconds.
- Annotations
- @DeveloperApi()
- Note
This can be invoked by multiple different threads.
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()