c

org.apache.kyuubi.operation

OperationManager

abstract class OperationManager extends AbstractService

The OperationManager manages all the operations during their lifecycle.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. OperationManager
  2. AbstractService
  3. Logging
  4. Service
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new OperationManager(name: String)

    name

    Service Name

Abstract Value Members

  1. abstract def getQueryId(operation: Operation): String
  2. abstract def newExecuteStatementOperation(session: Session, statement: String, confOverlay: Map[String, String], runAsync: Boolean, queryTimeout: Long): Operation
  3. abstract def newGetCatalogsOperation(session: Session): Operation
  4. abstract def newGetColumnsOperation(session: Session, catalogName: String, schemaName: String, tableName: String, columnName: String): Operation
  5. abstract def newGetCrossReferenceOperation(session: Session, primaryCatalog: String, primarySchema: String, primaryTable: String, foreignCatalog: String, foreignSchema: String, foreignTable: String): Operation
  6. abstract def newGetCurrentCatalogOperation(session: Session): Operation
  7. abstract def newGetCurrentDatabaseOperation(session: Session): Operation
  8. abstract def newGetFunctionsOperation(session: Session, catalogName: String, schemaName: String, functionName: String): Operation
  9. abstract def newGetPrimaryKeysOperation(session: Session, catalogName: String, schemaName: String, tableName: String): Operation
  10. abstract def newGetSchemasOperation(session: Session, catalog: String, schema: String): Operation
  11. abstract def newGetTableTypesOperation(session: Session): Operation
  12. abstract def newGetTablesOperation(session: Session, catalogName: String, schemaName: String, tableName: String, tableTypes: List[String]): Operation
  13. abstract def newGetTypeInfoOperation(session: Session): Operation
  14. abstract def newSetCurrentCatalogOperation(session: Session, catalog: String): Operation
  15. abstract def newSetCurrentDatabaseOperation(session: Session, database: String): Operation

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def addOperation(operation: Operation): Operation
  5. def allOperations(): Iterable[Operation]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. final def cancelOperation(opHandle: OperationHandle): Unit
    Annotations
    @throws( ... )
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  9. final def closeOperation(opHandle: OperationHandle): Unit
    Annotations
    @throws( ... )
  10. var conf: KyuubiConf
    Attributes
    protected
    Definition Classes
    AbstractService
  11. def debug(message: ⇒ Any, t: Throwable): Unit
    Definition Classes
    Logging
  12. def debug(message: ⇒ Any): Unit
    Definition Classes
    Logging
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def error(message: ⇒ Any): Unit
    Definition Classes
    Logging
  16. def error(message: ⇒ Any, t: Throwable): Unit
    Definition Classes
    Logging
  17. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def getConf: KyuubiConf

    Get the configuration of this service.

    Get the configuration of this service. This is normally not a clone and may be manipulated, though there are no guarantees as to what the consequences of such actions may be

    returns

    the current configuration, unless a specific implementation chooses otherwise.

    Definition Classes
    AbstractServiceService
  20. def getName: String

    Get the name of this service.

    Get the name of this service.

    returns

    the service name

    Definition Classes
    AbstractServiceService
  21. final def getOperation(opHandle: OperationHandle): Operation
    Annotations
    @throws( ... )
  22. def getOperationCount: Int
  23. def getOperationLogRowSet(opHandle: OperationHandle, order: FetchOrientation, maxRows: Int): TFetchResultsResp
  24. final def getOperationNextRowSet(opHandle: OperationHandle, order: FetchOrientation, maxRows: Int): TFetchResultsResp
  25. final def getOperationResultSetSchema(opHandle: OperationHandle): TGetResultSetMetadataResp
  26. def getServiceState: ServiceState

    Get the current service state

    Get the current service state

    returns

    the state of the service

    Definition Classes
    AbstractServiceService
  27. def getStartTime: Long

    Get the service start time

    Get the service start time

    returns

    the start time of the service. This will be zero if the service has not yet been started.

    Definition Classes
    AbstractServiceService
  28. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  29. def info(message: ⇒ Any, t: Throwable): Unit
    Definition Classes
    Logging
  30. def info(message: ⇒ Any): Unit
    Definition Classes
    Logging
  31. def initialize(conf: KyuubiConf): Unit

    Initialize the service.

    Initialize the service.

    The transition must be from LATENTto INITIALIZED unless the operation failed and an exception was raised.

    conf

    the configuration of the service

    Definition Classes
    OperationManagerAbstractServiceService
  32. def initializeLoggerIfNecessary(isInterpreter: Boolean): Unit
    Attributes
    protected
    Definition Classes
    Logging
  33. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  34. def logger: Logger
    Attributes
    protected
    Definition Classes
    Logging
  35. def loggerName: String
    Attributes
    protected
    Definition Classes
    Logging
  36. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  37. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  38. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  39. final def processCatalogDatabase(session: Session, statement: String, confOverlay: Map[String, String]): Operation
  40. final def removeExpiredOperations(handles: Seq[OperationHandle]): Seq[Operation]
  41. final def removeOperation(opHandle: OperationHandle): Operation
    Annotations
    @throws( ... )
  42. def skipOperationLog: Boolean
    Attributes
    protected
  43. def start(): Unit

    Start the service.

    Start the service.

    The transition should be from INITIALIZED to STARTED unless the operation failed and an exception was raised.

    Definition Classes
    AbstractServiceService
  44. var startTime: Long
    Attributes
    protected
    Definition Classes
    AbstractService
  45. var state: ServiceState
    Attributes
    protected
    Definition Classes
    AbstractService
  46. def stop(): Unit

    Stop the service.

    Stop the service.

    This operation must be designed to complete regardless of the initial state of the service, including the state of all its internal fields.

    Definition Classes
    AbstractServiceService
  47. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  48. def toString(): String
    Definition Classes
    AnyRef → Any
  49. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  52. def warn(message: ⇒ Any, t: Throwable): Unit
    Definition Classes
    Logging
  53. def warn(message: ⇒ Any): Unit
    Definition Classes
    Logging

Inherited from AbstractService

Inherited from Logging

Inherited from Service

Inherited from AnyRef

Inherited from Any

Ungrouped