c

org.apache.kyuubi.service

AbstractBackendService

abstract class AbstractBackendService extends CompositeService with BackendService

A Shorthand for implementing BackendServices

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

Instance Constructors

  1. new AbstractBackendService(name: String)

Abstract Value Members

  1. abstract def sessionManager: SessionManager
    Definition Classes
    BackendService

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. def addService(service: Service): Unit
    Attributes
    protected
    Definition Classes
    CompositeService
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def cancelOperation(operationHandle: OperationHandle): Unit
    Definition Classes
    AbstractBackendServiceBackendService
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. def closeOperation(operationHandle: OperationHandle): Unit
    Definition Classes
    AbstractBackendServiceBackendService
  9. def closeSession(sessionHandle: SessionHandle): Unit
    Definition Classes
    AbstractBackendServiceBackendService
  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 executeStatement(sessionHandle: SessionHandle, statement: String, confOverlay: Map[String, String], runAsync: Boolean, queryTimeout: Long): OperationHandle
    Definition Classes
    AbstractBackendServiceBackendService
  18. def fetchResults(operationHandle: OperationHandle, orientation: FetchOrientation, maxRows: Int, fetchLog: Boolean): TFetchResultsResp
    Definition Classes
    AbstractBackendServiceBackendService
  19. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def getCatalogs(sessionHandle: SessionHandle): OperationHandle
    Definition Classes
    AbstractBackendServiceBackendService
  21. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def getColumns(sessionHandle: SessionHandle, catalogName: String, schemaName: String, tableName: String, columnName: String): OperationHandle
    Definition Classes
    AbstractBackendServiceBackendService
  23. 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
  24. def getCrossReference(sessionHandle: SessionHandle, primaryCatalog: String, primarySchema: String, primaryTable: String, foreignCatalog: String, foreignSchema: String, foreignTable: String): OperationHandle
    Definition Classes
    AbstractBackendServiceBackendService
  25. def getFunctions(sessionHandle: SessionHandle, catalogName: String, schemaName: String, functionName: String): OperationHandle
    Definition Classes
    AbstractBackendServiceBackendService
  26. def getInfo(sessionHandle: SessionHandle, infoType: TGetInfoType): TGetInfoValue
    Definition Classes
    AbstractBackendServiceBackendService
  27. def getName: String

    Get the name of this service.

    Get the name of this service.

    returns

    the service name

    Definition Classes
    AbstractServiceService
  28. def getOperationStatus(operationHandle: OperationHandle, maxWait: Option[Long]): OperationStatus
    Definition Classes
    AbstractBackendServiceBackendService
  29. def getPrimaryKeys(sessionHandle: SessionHandle, catalogName: String, schemaName: String, tableName: String): OperationHandle
    Definition Classes
    AbstractBackendServiceBackendService
  30. def getQueryId(operationHandle: OperationHandle): String
    Definition Classes
    AbstractBackendServiceBackendService
  31. def getResultSetMetadata(operationHandle: OperationHandle): TGetResultSetMetadataResp
    Definition Classes
    AbstractBackendServiceBackendService
  32. def getSchemas(sessionHandle: SessionHandle, catalogName: String, schemaName: String): OperationHandle
    Definition Classes
    AbstractBackendServiceBackendService
  33. def getServiceState: ServiceState

    Get the current service state

    Get the current service state

    returns

    the state of the service

    Definition Classes
    AbstractServiceService
  34. def getServices: Seq[Service]
    Definition Classes
    CompositeService
  35. 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
  36. def getTableTypes(sessionHandle: SessionHandle): OperationHandle
    Definition Classes
    AbstractBackendServiceBackendService
  37. def getTables(sessionHandle: SessionHandle, catalogName: String, schemaName: String, tableName: String, tableTypes: List[String]): OperationHandle
    Definition Classes
    AbstractBackendServiceBackendService
  38. def getTypeInfo(sessionHandle: SessionHandle): OperationHandle
    Definition Classes
    AbstractBackendServiceBackendService
  39. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  40. def info(message: ⇒ Any, t: Throwable): Unit
    Definition Classes
    Logging
  41. def info(message: ⇒ Any): Unit
    Definition Classes
    Logging
  42. 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
    AbstractBackendServiceCompositeServiceAbstractServiceService
  43. def initializeLoggerIfNecessary(isInterpreter: Boolean): Unit
    Attributes
    protected
    Definition Classes
    Logging
  44. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  45. def logger: Logger
    Attributes
    protected
    Definition Classes
    Logging
  46. def loggerName: String
    Attributes
    protected
    Definition Classes
    Logging
  47. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  48. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  49. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  50. def openSession(protocol: TProtocolVersion, user: String, password: String, ipAddr: String, configs: Map[String, String]): SessionHandle
    Definition Classes
    AbstractBackendServiceBackendService
  51. 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
    CompositeServiceAbstractServiceService
  52. var startTime: Long
    Attributes
    protected
    Definition Classes
    AbstractService
  53. var state: ServiceState
    Attributes
    protected
    Definition Classes
    AbstractService
  54. 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
    CompositeServiceAbstractServiceService
  55. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  56. def toString(): String
    Definition Classes
    AnyRef → Any
  57. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  58. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  59. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  60. def warn(message: ⇒ Any, t: Throwable): Unit
    Definition Classes
    Logging
  61. def warn(message: ⇒ Any): Unit
    Definition Classes
    Logging

Inherited from BackendService

Inherited from CompositeService

Inherited from AbstractService

Inherited from Logging

Inherited from Service

Inherited from AnyRef

Inherited from Any

Ungrouped