impalaservice

package
v1.2.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 16, 2022 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var GoUnusedProtection__ int
View Source
var ImpalaServiceCancelArgs_QueryID_DEFAULT *beeswax.QueryHandle
View Source
var ImpalaServiceCancelResult_Error_DEFAULT *beeswax.BeeswaxException
View Source
var ImpalaServiceCancelResult_Success_DEFAULT *status.TStatus
View Source
var ImpalaServiceCloseInsertArgs_Handle_DEFAULT *beeswax.QueryHandle
View Source
var ImpalaServiceCloseInsertResult_Error2_DEFAULT *beeswax.BeeswaxException
View Source
var ImpalaServiceCloseInsertResult_Error_DEFAULT *beeswax.QueryNotFoundException
View Source
var ImpalaServiceGetExecSummaryArgs_Handle_DEFAULT *beeswax.QueryHandle
View Source
var ImpalaServiceGetExecSummaryResult_Error2_DEFAULT *beeswax.BeeswaxException
View Source
var ImpalaServiceGetExecSummaryResult_Error_DEFAULT *beeswax.QueryNotFoundException
View Source
var ImpalaServiceGetExecSummaryResult_Success_DEFAULT *execstats.TExecSummary
View Source
var ImpalaServiceGetRuntimeProfileArgs_QueryID_DEFAULT *beeswax.QueryHandle
View Source
var ImpalaServiceGetRuntimeProfileResult_Error_DEFAULT *beeswax.BeeswaxException
View Source
var ImpalaServiceGetRuntimeProfileResult_Success_DEFAULT string
View Source
var ImpalaServiceResetCatalogResult_Success_DEFAULT *status.TStatus
View Source
var ImpalaServiceResetTableResult_Success_DEFAULT *status.TStatus
View Source
var TGetExecSummaryReq_OperationHandle_DEFAULT *tcliservice.TOperationHandle
View Source
var TGetExecSummaryReq_SessionHandle_DEFAULT *tcliservice.TSessionHandle
View Source
var TGetExecSummaryResp_Status_DEFAULT *tcliservice.TStatus
View Source
var TGetExecSummaryResp_Summary_DEFAULT *execstats.TExecSummary
View Source
var TGetRuntimeProfileReq_OperationHandle_DEFAULT *tcliservice.TOperationHandle
View Source
var TGetRuntimeProfileReq_SessionHandle_DEFAULT *tcliservice.TSessionHandle
View Source
var TGetRuntimeProfileResp_Profile_DEFAULT string
View Source
var TGetRuntimeProfileResp_Status_DEFAULT *tcliservice.TStatus

Functions

This section is empty.

Types

type ImpalaHiveServer2Service

type ImpalaHiveServer2Service interface {
	tcliservice.TCLIService

	// Parameters:
	//  - Req
	GetExecSummary(ctx context.Context, req *TGetExecSummaryReq) (r *TGetExecSummaryResp, err error)
	// Parameters:
	//  - Req
	GetRuntimeProfile(ctx context.Context, req *TGetRuntimeProfileReq) (r *TGetRuntimeProfileResp, err error)
}

type ImpalaHiveServer2ServiceClient

type ImpalaHiveServer2ServiceClient struct {
	*tcliservice.TCLIServiceClient
}

func NewImpalaHiveServer2ServiceClient

func NewImpalaHiveServer2ServiceClient(c thrift.TClient) *ImpalaHiveServer2ServiceClient

func NewImpalaHiveServer2ServiceClientProtocol

func NewImpalaHiveServer2ServiceClientProtocol(t thrift.TTransport, iprot thrift.TProtocol, oprot thrift.TProtocol) *ImpalaHiveServer2ServiceClient

func (*ImpalaHiveServer2ServiceClient) GetExecSummary

Parameters:

  • Req

func (*ImpalaHiveServer2ServiceClient) GetRuntimeProfile

Parameters:

  • Req

type ImpalaHiveServer2ServiceGetExecSummaryArgs

type ImpalaHiveServer2ServiceGetExecSummaryArgs struct {
	Req *TGetExecSummaryReq `thrift:"req,1" db:"req" json:"req"`
}

Attributes:

  • Req

func NewImpalaHiveServer2ServiceGetExecSummaryArgs

func NewImpalaHiveServer2ServiceGetExecSummaryArgs() *ImpalaHiveServer2ServiceGetExecSummaryArgs

func (*ImpalaHiveServer2ServiceGetExecSummaryArgs) GetReq

func (*ImpalaHiveServer2ServiceGetExecSummaryArgs) IsSetReq

func (*ImpalaHiveServer2ServiceGetExecSummaryArgs) Read

func (*ImpalaHiveServer2ServiceGetExecSummaryArgs) ReadField1

func (*ImpalaHiveServer2ServiceGetExecSummaryArgs) String

func (*ImpalaHiveServer2ServiceGetExecSummaryArgs) Write

type ImpalaHiveServer2ServiceGetExecSummaryResult

type ImpalaHiveServer2ServiceGetExecSummaryResult struct {
	Success *TGetExecSummaryResp `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewImpalaHiveServer2ServiceGetExecSummaryResult

func NewImpalaHiveServer2ServiceGetExecSummaryResult() *ImpalaHiveServer2ServiceGetExecSummaryResult

func (*ImpalaHiveServer2ServiceGetExecSummaryResult) GetSuccess

func (*ImpalaHiveServer2ServiceGetExecSummaryResult) IsSetSuccess

func (*ImpalaHiveServer2ServiceGetExecSummaryResult) Read

func (*ImpalaHiveServer2ServiceGetExecSummaryResult) ReadField0

func (*ImpalaHiveServer2ServiceGetExecSummaryResult) String

func (*ImpalaHiveServer2ServiceGetExecSummaryResult) Write

type ImpalaHiveServer2ServiceGetRuntimeProfileArgs

type ImpalaHiveServer2ServiceGetRuntimeProfileArgs struct {
	Req *TGetRuntimeProfileReq `thrift:"req,1" db:"req" json:"req"`
}

Attributes:

  • Req

func NewImpalaHiveServer2ServiceGetRuntimeProfileArgs

func NewImpalaHiveServer2ServiceGetRuntimeProfileArgs() *ImpalaHiveServer2ServiceGetRuntimeProfileArgs

func (*ImpalaHiveServer2ServiceGetRuntimeProfileArgs) GetReq

func (*ImpalaHiveServer2ServiceGetRuntimeProfileArgs) IsSetReq

func (*ImpalaHiveServer2ServiceGetRuntimeProfileArgs) Read

func (*ImpalaHiveServer2ServiceGetRuntimeProfileArgs) ReadField1

func (*ImpalaHiveServer2ServiceGetRuntimeProfileArgs) String

func (*ImpalaHiveServer2ServiceGetRuntimeProfileArgs) Write

type ImpalaHiveServer2ServiceGetRuntimeProfileResult

type ImpalaHiveServer2ServiceGetRuntimeProfileResult struct {
	Success *TGetRuntimeProfileResp `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewImpalaHiveServer2ServiceGetRuntimeProfileResult

func NewImpalaHiveServer2ServiceGetRuntimeProfileResult() *ImpalaHiveServer2ServiceGetRuntimeProfileResult

func (*ImpalaHiveServer2ServiceGetRuntimeProfileResult) GetSuccess

func (*ImpalaHiveServer2ServiceGetRuntimeProfileResult) IsSetSuccess

func (*ImpalaHiveServer2ServiceGetRuntimeProfileResult) Read

func (*ImpalaHiveServer2ServiceGetRuntimeProfileResult) ReadField0

func (*ImpalaHiveServer2ServiceGetRuntimeProfileResult) String

func (*ImpalaHiveServer2ServiceGetRuntimeProfileResult) Write

type ImpalaHiveServer2ServiceProcessor

type ImpalaHiveServer2ServiceProcessor struct {
	*tcliservice.TCLIServiceProcessor
}

type ImpalaService

type ImpalaService interface {
	beeswax.BeeswaxService

	// Parameters:
	//  - QueryID
	Cancel(ctx context.Context, query_id *beeswax.QueryHandle) (r *status.TStatus, err error)
	ResetCatalog(ctx context.Context) (r *status.TStatus, err error)
	// Parameters:
	//  - Request
	ResetTable(ctx context.Context, request *TResetTableReq) (r *status.TStatus, err error)
	// Parameters:
	//  - QueryID
	GetRuntimeProfile(ctx context.Context, query_id *beeswax.QueryHandle) (r string, err error)
	// Parameters:
	//  - Handle
	CloseInsert(ctx context.Context, handle *beeswax.QueryHandle) (r *TInsertResult_, err error)
	PingImpalaService(ctx context.Context) (r *TPingImpalaServiceResp, err error)
	// Parameters:
	//  - Handle
	GetExecSummary(ctx context.Context, handle *beeswax.QueryHandle) (r *execstats.TExecSummary, err error)
}

type ImpalaServiceCancelArgs

type ImpalaServiceCancelArgs struct {
	QueryID *beeswax.QueryHandle `thrift:"query_id,1" db:"query_id" json:"query_id"`
}

Attributes:

  • QueryID

func NewImpalaServiceCancelArgs

func NewImpalaServiceCancelArgs() *ImpalaServiceCancelArgs

func (*ImpalaServiceCancelArgs) GetQueryID

func (p *ImpalaServiceCancelArgs) GetQueryID() *beeswax.QueryHandle

func (*ImpalaServiceCancelArgs) IsSetQueryID

func (p *ImpalaServiceCancelArgs) IsSetQueryID() bool

func (*ImpalaServiceCancelArgs) Read

func (*ImpalaServiceCancelArgs) ReadField1

func (p *ImpalaServiceCancelArgs) ReadField1(iprot thrift.TProtocol) error

func (*ImpalaServiceCancelArgs) String

func (p *ImpalaServiceCancelArgs) String() string

func (*ImpalaServiceCancelArgs) Write

type ImpalaServiceCancelResult

type ImpalaServiceCancelResult struct {
	Success *status.TStatus           `thrift:"success,0" db:"success" json:"success,omitempty"`
	Error   *beeswax.BeeswaxException `thrift:"error,1" db:"error" json:"error,omitempty"`
}

Attributes:

  • Success
  • Error

func NewImpalaServiceCancelResult

func NewImpalaServiceCancelResult() *ImpalaServiceCancelResult

func (*ImpalaServiceCancelResult) GetError

func (*ImpalaServiceCancelResult) GetSuccess

func (p *ImpalaServiceCancelResult) GetSuccess() *status.TStatus

func (*ImpalaServiceCancelResult) IsSetError

func (p *ImpalaServiceCancelResult) IsSetError() bool

func (*ImpalaServiceCancelResult) IsSetSuccess

func (p *ImpalaServiceCancelResult) IsSetSuccess() bool

func (*ImpalaServiceCancelResult) Read

func (*ImpalaServiceCancelResult) ReadField0

func (p *ImpalaServiceCancelResult) ReadField0(iprot thrift.TProtocol) error

func (*ImpalaServiceCancelResult) ReadField1

func (p *ImpalaServiceCancelResult) ReadField1(iprot thrift.TProtocol) error

func (*ImpalaServiceCancelResult) String

func (p *ImpalaServiceCancelResult) String() string

func (*ImpalaServiceCancelResult) Write

type ImpalaServiceClient

type ImpalaServiceClient struct {
	*beeswax.BeeswaxServiceClient
}

func NewImpalaServiceClient

func NewImpalaServiceClient(c thrift.TClient) *ImpalaServiceClient

func NewImpalaServiceClientProtocol

func NewImpalaServiceClientProtocol(t thrift.TTransport, iprot thrift.TProtocol, oprot thrift.TProtocol) *ImpalaServiceClient

func (*ImpalaServiceClient) Cancel

func (p *ImpalaServiceClient) Cancel(ctx context.Context, query_id *beeswax.QueryHandle) (r *status.TStatus, err error)

Parameters:

  • QueryID

func (*ImpalaServiceClient) CloseInsert

func (p *ImpalaServiceClient) CloseInsert(ctx context.Context, handle *beeswax.QueryHandle) (r *TInsertResult_, err error)

Parameters:

  • Handle

func (*ImpalaServiceClient) GetExecSummary

func (p *ImpalaServiceClient) GetExecSummary(ctx context.Context, handle *beeswax.QueryHandle) (r *execstats.TExecSummary, err error)

Parameters:

  • Handle

func (*ImpalaServiceClient) GetRuntimeProfile

func (p *ImpalaServiceClient) GetRuntimeProfile(ctx context.Context, query_id *beeswax.QueryHandle) (r string, err error)

Parameters:

  • QueryID

func (*ImpalaServiceClient) PingImpalaService

func (p *ImpalaServiceClient) PingImpalaService(ctx context.Context) (r *TPingImpalaServiceResp, err error)

func (*ImpalaServiceClient) ResetCatalog

func (p *ImpalaServiceClient) ResetCatalog(ctx context.Context) (r *status.TStatus, err error)

func (*ImpalaServiceClient) ResetTable

func (p *ImpalaServiceClient) ResetTable(ctx context.Context, request *TResetTableReq) (r *status.TStatus, err error)

Parameters:

  • Request

type ImpalaServiceCloseInsertArgs

type ImpalaServiceCloseInsertArgs struct {
	Handle *beeswax.QueryHandle `thrift:"handle,1" db:"handle" json:"handle"`
}

Attributes:

  • Handle

func NewImpalaServiceCloseInsertArgs

func NewImpalaServiceCloseInsertArgs() *ImpalaServiceCloseInsertArgs

func (*ImpalaServiceCloseInsertArgs) GetHandle

func (*ImpalaServiceCloseInsertArgs) IsSetHandle

func (p *ImpalaServiceCloseInsertArgs) IsSetHandle() bool

func (*ImpalaServiceCloseInsertArgs) Read

func (*ImpalaServiceCloseInsertArgs) ReadField1

func (p *ImpalaServiceCloseInsertArgs) ReadField1(iprot thrift.TProtocol) error

func (*ImpalaServiceCloseInsertArgs) String

func (*ImpalaServiceCloseInsertArgs) Write

type ImpalaServiceCloseInsertResult

type ImpalaServiceCloseInsertResult struct {
	Success *TInsertResult_                 `thrift:"success,0" db:"success" json:"success,omitempty"`
	Error   *beeswax.QueryNotFoundException `thrift:"error,1" db:"error" json:"error,omitempty"`
	Error2  *beeswax.BeeswaxException       `thrift:"error2,2" db:"error2" json:"error2,omitempty"`
}

Attributes:

  • Success
  • Error
  • Error2

func NewImpalaServiceCloseInsertResult

func NewImpalaServiceCloseInsertResult() *ImpalaServiceCloseInsertResult

func (*ImpalaServiceCloseInsertResult) GetError

func (*ImpalaServiceCloseInsertResult) GetError2

func (*ImpalaServiceCloseInsertResult) GetSuccess

func (*ImpalaServiceCloseInsertResult) IsSetError

func (p *ImpalaServiceCloseInsertResult) IsSetError() bool

func (*ImpalaServiceCloseInsertResult) IsSetError2

func (p *ImpalaServiceCloseInsertResult) IsSetError2() bool

func (*ImpalaServiceCloseInsertResult) IsSetSuccess

func (p *ImpalaServiceCloseInsertResult) IsSetSuccess() bool

func (*ImpalaServiceCloseInsertResult) Read

func (*ImpalaServiceCloseInsertResult) ReadField0

func (*ImpalaServiceCloseInsertResult) ReadField1

func (*ImpalaServiceCloseInsertResult) ReadField2

func (*ImpalaServiceCloseInsertResult) String

func (*ImpalaServiceCloseInsertResult) Write

type ImpalaServiceGetExecSummaryArgs

type ImpalaServiceGetExecSummaryArgs struct {
	Handle *beeswax.QueryHandle `thrift:"handle,1" db:"handle" json:"handle"`
}

Attributes:

  • Handle

func NewImpalaServiceGetExecSummaryArgs

func NewImpalaServiceGetExecSummaryArgs() *ImpalaServiceGetExecSummaryArgs

func (*ImpalaServiceGetExecSummaryArgs) GetHandle

func (*ImpalaServiceGetExecSummaryArgs) IsSetHandle

func (p *ImpalaServiceGetExecSummaryArgs) IsSetHandle() bool

func (*ImpalaServiceGetExecSummaryArgs) Read

func (*ImpalaServiceGetExecSummaryArgs) ReadField1

func (*ImpalaServiceGetExecSummaryArgs) String

func (*ImpalaServiceGetExecSummaryArgs) Write

type ImpalaServiceGetExecSummaryResult

type ImpalaServiceGetExecSummaryResult struct {
	Success *execstats.TExecSummary         `thrift:"success,0" db:"success" json:"success,omitempty"`
	Error   *beeswax.QueryNotFoundException `thrift:"error,1" db:"error" json:"error,omitempty"`
	Error2  *beeswax.BeeswaxException       `thrift:"error2,2" db:"error2" json:"error2,omitempty"`
}

Attributes:

  • Success
  • Error
  • Error2

func NewImpalaServiceGetExecSummaryResult

func NewImpalaServiceGetExecSummaryResult() *ImpalaServiceGetExecSummaryResult

func (*ImpalaServiceGetExecSummaryResult) GetError

func (*ImpalaServiceGetExecSummaryResult) GetError2

func (*ImpalaServiceGetExecSummaryResult) GetSuccess

func (*ImpalaServiceGetExecSummaryResult) IsSetError

func (p *ImpalaServiceGetExecSummaryResult) IsSetError() bool

func (*ImpalaServiceGetExecSummaryResult) IsSetError2

func (p *ImpalaServiceGetExecSummaryResult) IsSetError2() bool

func (*ImpalaServiceGetExecSummaryResult) IsSetSuccess

func (p *ImpalaServiceGetExecSummaryResult) IsSetSuccess() bool

func (*ImpalaServiceGetExecSummaryResult) Read

func (*ImpalaServiceGetExecSummaryResult) ReadField0

func (*ImpalaServiceGetExecSummaryResult) ReadField1

func (*ImpalaServiceGetExecSummaryResult) ReadField2

func (*ImpalaServiceGetExecSummaryResult) String

func (*ImpalaServiceGetExecSummaryResult) Write

type ImpalaServiceGetRuntimeProfileArgs

type ImpalaServiceGetRuntimeProfileArgs struct {
	QueryID *beeswax.QueryHandle `thrift:"query_id,1" db:"query_id" json:"query_id"`
}

Attributes:

  • QueryID

func NewImpalaServiceGetRuntimeProfileArgs

func NewImpalaServiceGetRuntimeProfileArgs() *ImpalaServiceGetRuntimeProfileArgs

func (*ImpalaServiceGetRuntimeProfileArgs) GetQueryID

func (*ImpalaServiceGetRuntimeProfileArgs) IsSetQueryID

func (p *ImpalaServiceGetRuntimeProfileArgs) IsSetQueryID() bool

func (*ImpalaServiceGetRuntimeProfileArgs) Read

func (*ImpalaServiceGetRuntimeProfileArgs) ReadField1

func (*ImpalaServiceGetRuntimeProfileArgs) String

func (*ImpalaServiceGetRuntimeProfileArgs) Write

type ImpalaServiceGetRuntimeProfileResult

type ImpalaServiceGetRuntimeProfileResult struct {
	Success *string                   `thrift:"success,0" db:"success" json:"success,omitempty"`
	Error   *beeswax.BeeswaxException `thrift:"error,1" db:"error" json:"error,omitempty"`
}

Attributes:

  • Success
  • Error

func NewImpalaServiceGetRuntimeProfileResult

func NewImpalaServiceGetRuntimeProfileResult() *ImpalaServiceGetRuntimeProfileResult

func (*ImpalaServiceGetRuntimeProfileResult) GetError

func (*ImpalaServiceGetRuntimeProfileResult) GetSuccess

func (*ImpalaServiceGetRuntimeProfileResult) IsSetError

func (*ImpalaServiceGetRuntimeProfileResult) IsSetSuccess

func (p *ImpalaServiceGetRuntimeProfileResult) IsSetSuccess() bool

func (*ImpalaServiceGetRuntimeProfileResult) Read

func (*ImpalaServiceGetRuntimeProfileResult) ReadField0

func (*ImpalaServiceGetRuntimeProfileResult) ReadField1

func (*ImpalaServiceGetRuntimeProfileResult) String

func (*ImpalaServiceGetRuntimeProfileResult) Write

type ImpalaServicePingImpalaServiceArgs

type ImpalaServicePingImpalaServiceArgs struct {
}

func NewImpalaServicePingImpalaServiceArgs

func NewImpalaServicePingImpalaServiceArgs() *ImpalaServicePingImpalaServiceArgs

func (*ImpalaServicePingImpalaServiceArgs) Read

func (*ImpalaServicePingImpalaServiceArgs) String

func (*ImpalaServicePingImpalaServiceArgs) Write

type ImpalaServicePingImpalaServiceResult

type ImpalaServicePingImpalaServiceResult struct {
	Success *TPingImpalaServiceResp `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewImpalaServicePingImpalaServiceResult

func NewImpalaServicePingImpalaServiceResult() *ImpalaServicePingImpalaServiceResult

func (*ImpalaServicePingImpalaServiceResult) GetSuccess

func (*ImpalaServicePingImpalaServiceResult) IsSetSuccess

func (p *ImpalaServicePingImpalaServiceResult) IsSetSuccess() bool

func (*ImpalaServicePingImpalaServiceResult) Read

func (*ImpalaServicePingImpalaServiceResult) ReadField0

func (*ImpalaServicePingImpalaServiceResult) String

func (*ImpalaServicePingImpalaServiceResult) Write

type ImpalaServiceProcessor

type ImpalaServiceProcessor struct {
	*beeswax.BeeswaxServiceProcessor
}

func NewImpalaServiceProcessor

func NewImpalaServiceProcessor(handler ImpalaService) *ImpalaServiceProcessor

type ImpalaServiceResetCatalogArgs

type ImpalaServiceResetCatalogArgs struct {
}

func NewImpalaServiceResetCatalogArgs

func NewImpalaServiceResetCatalogArgs() *ImpalaServiceResetCatalogArgs

func (*ImpalaServiceResetCatalogArgs) Read

func (*ImpalaServiceResetCatalogArgs) String

func (*ImpalaServiceResetCatalogArgs) Write

type ImpalaServiceResetCatalogResult

type ImpalaServiceResetCatalogResult struct {
	Success *status.TStatus `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewImpalaServiceResetCatalogResult

func NewImpalaServiceResetCatalogResult() *ImpalaServiceResetCatalogResult

func (*ImpalaServiceResetCatalogResult) GetSuccess

func (*ImpalaServiceResetCatalogResult) IsSetSuccess

func (p *ImpalaServiceResetCatalogResult) IsSetSuccess() bool

func (*ImpalaServiceResetCatalogResult) Read

func (*ImpalaServiceResetCatalogResult) ReadField0

func (*ImpalaServiceResetCatalogResult) String

func (*ImpalaServiceResetCatalogResult) Write

type ImpalaServiceResetTableArgs

type ImpalaServiceResetTableArgs struct {
	Request *TResetTableReq `thrift:"request,1" db:"request" json:"request"`
}

Attributes:

  • Request

func NewImpalaServiceResetTableArgs

func NewImpalaServiceResetTableArgs() *ImpalaServiceResetTableArgs

func (*ImpalaServiceResetTableArgs) GetRequest

func (*ImpalaServiceResetTableArgs) IsSetRequest

func (p *ImpalaServiceResetTableArgs) IsSetRequest() bool

func (*ImpalaServiceResetTableArgs) Read

func (*ImpalaServiceResetTableArgs) ReadField1

func (p *ImpalaServiceResetTableArgs) ReadField1(iprot thrift.TProtocol) error

func (*ImpalaServiceResetTableArgs) String

func (p *ImpalaServiceResetTableArgs) String() string

func (*ImpalaServiceResetTableArgs) Write

type ImpalaServiceResetTableResult

type ImpalaServiceResetTableResult struct {
	Success *status.TStatus `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewImpalaServiceResetTableResult

func NewImpalaServiceResetTableResult() *ImpalaServiceResetTableResult

func (*ImpalaServiceResetTableResult) GetSuccess

func (p *ImpalaServiceResetTableResult) GetSuccess() *status.TStatus

func (*ImpalaServiceResetTableResult) IsSetSuccess

func (p *ImpalaServiceResetTableResult) IsSetSuccess() bool

func (*ImpalaServiceResetTableResult) Read

func (*ImpalaServiceResetTableResult) ReadField0

func (p *ImpalaServiceResetTableResult) ReadField0(iprot thrift.TProtocol) error

func (*ImpalaServiceResetTableResult) String

func (*ImpalaServiceResetTableResult) Write

type TGetExecSummaryReq

type TGetExecSummaryReq struct {
	OperationHandle *tcliservice.TOperationHandle `thrift:"operationHandle,1" db:"operationHandle" json:"operationHandle,omitempty"`
	SessionHandle   *tcliservice.TSessionHandle   `thrift:"sessionHandle,2" db:"sessionHandle" json:"sessionHandle,omitempty"`
}

Attributes:

  • OperationHandle
  • SessionHandle
var ImpalaHiveServer2ServiceGetExecSummaryArgs_Req_DEFAULT *TGetExecSummaryReq

func NewTGetExecSummaryReq

func NewTGetExecSummaryReq() *TGetExecSummaryReq

func (*TGetExecSummaryReq) GetOperationHandle

func (p *TGetExecSummaryReq) GetOperationHandle() *tcliservice.TOperationHandle

func (*TGetExecSummaryReq) GetSessionHandle

func (p *TGetExecSummaryReq) GetSessionHandle() *tcliservice.TSessionHandle

func (*TGetExecSummaryReq) IsSetOperationHandle

func (p *TGetExecSummaryReq) IsSetOperationHandle() bool

func (*TGetExecSummaryReq) IsSetSessionHandle

func (p *TGetExecSummaryReq) IsSetSessionHandle() bool

func (*TGetExecSummaryReq) Read

func (p *TGetExecSummaryReq) Read(iprot thrift.TProtocol) error

func (*TGetExecSummaryReq) ReadField1

func (p *TGetExecSummaryReq) ReadField1(iprot thrift.TProtocol) error

func (*TGetExecSummaryReq) ReadField2

func (p *TGetExecSummaryReq) ReadField2(iprot thrift.TProtocol) error

func (*TGetExecSummaryReq) String

func (p *TGetExecSummaryReq) String() string

func (*TGetExecSummaryReq) Write

func (p *TGetExecSummaryReq) Write(oprot thrift.TProtocol) error

type TGetExecSummaryResp

type TGetExecSummaryResp struct {
	Status  *tcliservice.TStatus    `thrift:"status,1,required" db:"status" json:"status"`
	Summary *execstats.TExecSummary `thrift:"summary,2" db:"summary" json:"summary,omitempty"`
}

Attributes:

  • Status
  • Summary
var ImpalaHiveServer2ServiceGetExecSummaryResult_Success_DEFAULT *TGetExecSummaryResp

func NewTGetExecSummaryResp

func NewTGetExecSummaryResp() *TGetExecSummaryResp

func (*TGetExecSummaryResp) GetStatus

func (p *TGetExecSummaryResp) GetStatus() *tcliservice.TStatus

func (*TGetExecSummaryResp) GetSummary

func (p *TGetExecSummaryResp) GetSummary() *execstats.TExecSummary

func (*TGetExecSummaryResp) IsSetStatus

func (p *TGetExecSummaryResp) IsSetStatus() bool

func (*TGetExecSummaryResp) IsSetSummary

func (p *TGetExecSummaryResp) IsSetSummary() bool

func (*TGetExecSummaryResp) Read

func (p *TGetExecSummaryResp) Read(iprot thrift.TProtocol) error

func (*TGetExecSummaryResp) ReadField1

func (p *TGetExecSummaryResp) ReadField1(iprot thrift.TProtocol) error

func (*TGetExecSummaryResp) ReadField2

func (p *TGetExecSummaryResp) ReadField2(iprot thrift.TProtocol) error

func (*TGetExecSummaryResp) String

func (p *TGetExecSummaryResp) String() string

func (*TGetExecSummaryResp) Write

func (p *TGetExecSummaryResp) Write(oprot thrift.TProtocol) error

type TGetRuntimeProfileReq

type TGetRuntimeProfileReq struct {
	OperationHandle *tcliservice.TOperationHandle `thrift:"operationHandle,1" db:"operationHandle" json:"operationHandle,omitempty"`
	SessionHandle   *tcliservice.TSessionHandle   `thrift:"sessionHandle,2" db:"sessionHandle" json:"sessionHandle,omitempty"`
}

Attributes:

  • OperationHandle
  • SessionHandle
var ImpalaHiveServer2ServiceGetRuntimeProfileArgs_Req_DEFAULT *TGetRuntimeProfileReq

func NewTGetRuntimeProfileReq

func NewTGetRuntimeProfileReq() *TGetRuntimeProfileReq

func (*TGetRuntimeProfileReq) GetOperationHandle

func (p *TGetRuntimeProfileReq) GetOperationHandle() *tcliservice.TOperationHandle

func (*TGetRuntimeProfileReq) GetSessionHandle

func (p *TGetRuntimeProfileReq) GetSessionHandle() *tcliservice.TSessionHandle

func (*TGetRuntimeProfileReq) IsSetOperationHandle

func (p *TGetRuntimeProfileReq) IsSetOperationHandle() bool

func (*TGetRuntimeProfileReq) IsSetSessionHandle

func (p *TGetRuntimeProfileReq) IsSetSessionHandle() bool

func (*TGetRuntimeProfileReq) Read

func (*TGetRuntimeProfileReq) ReadField1

func (p *TGetRuntimeProfileReq) ReadField1(iprot thrift.TProtocol) error

func (*TGetRuntimeProfileReq) ReadField2

func (p *TGetRuntimeProfileReq) ReadField2(iprot thrift.TProtocol) error

func (*TGetRuntimeProfileReq) String

func (p *TGetRuntimeProfileReq) String() string

func (*TGetRuntimeProfileReq) Write

func (p *TGetRuntimeProfileReq) Write(oprot thrift.TProtocol) error

type TGetRuntimeProfileResp

type TGetRuntimeProfileResp struct {
	Status  *tcliservice.TStatus `thrift:"status,1,required" db:"status" json:"status"`
	Profile *string              `thrift:"profile,2" db:"profile" json:"profile,omitempty"`
}

Attributes:

  • Status
  • Profile
var ImpalaHiveServer2ServiceGetRuntimeProfileResult_Success_DEFAULT *TGetRuntimeProfileResp

func NewTGetRuntimeProfileResp

func NewTGetRuntimeProfileResp() *TGetRuntimeProfileResp

func (*TGetRuntimeProfileResp) GetProfile

func (p *TGetRuntimeProfileResp) GetProfile() string

func (*TGetRuntimeProfileResp) GetStatus

func (p *TGetRuntimeProfileResp) GetStatus() *tcliservice.TStatus

func (*TGetRuntimeProfileResp) IsSetProfile

func (p *TGetRuntimeProfileResp) IsSetProfile() bool

func (*TGetRuntimeProfileResp) IsSetStatus

func (p *TGetRuntimeProfileResp) IsSetStatus() bool

func (*TGetRuntimeProfileResp) Read

func (*TGetRuntimeProfileResp) ReadField1

func (p *TGetRuntimeProfileResp) ReadField1(iprot thrift.TProtocol) error

func (*TGetRuntimeProfileResp) ReadField2

func (p *TGetRuntimeProfileResp) ReadField2(iprot thrift.TProtocol) error

func (*TGetRuntimeProfileResp) String

func (p *TGetRuntimeProfileResp) String() string

func (*TGetRuntimeProfileResp) Write

func (p *TGetRuntimeProfileResp) Write(oprot thrift.TProtocol) error

type TImpalaQueryOptions

type TImpalaQueryOptions int64
const (
	TImpalaQueryOptions_ABORT_ON_ERROR                  TImpalaQueryOptions = 0
	TImpalaQueryOptions_MAX_ERRORS                      TImpalaQueryOptions = 1
	TImpalaQueryOptions_DISABLE_CODEGEN                 TImpalaQueryOptions = 2
	TImpalaQueryOptions_BATCH_SIZE                      TImpalaQueryOptions = 3
	TImpalaQueryOptions_MEM_LIMIT                       TImpalaQueryOptions = 4
	TImpalaQueryOptions_NUM_NODES                       TImpalaQueryOptions = 5
	TImpalaQueryOptions_MAX_SCAN_RANGE_LENGTH           TImpalaQueryOptions = 6
	TImpalaQueryOptions_MAX_IO_BUFFERS                  TImpalaQueryOptions = 7
	TImpalaQueryOptions_NUM_SCANNER_THREADS             TImpalaQueryOptions = 8
	TImpalaQueryOptions_ALLOW_UNSUPPORTED_FORMATS       TImpalaQueryOptions = 9
	TImpalaQueryOptions_DEFAULT_ORDER_BY_LIMIT          TImpalaQueryOptions = 10
	TImpalaQueryOptions_DEBUG_ACTION                    TImpalaQueryOptions = 11
	TImpalaQueryOptions_ABORT_ON_DEFAULT_LIMIT_EXCEEDED TImpalaQueryOptions = 12
	TImpalaQueryOptions_COMPRESSION_CODEC               TImpalaQueryOptions = 13
	TImpalaQueryOptions_HBASE_CACHING                   TImpalaQueryOptions = 14
	TImpalaQueryOptions_HBASE_CACHE_BLOCKS              TImpalaQueryOptions = 15
	TImpalaQueryOptions_PARQUET_FILE_SIZE               TImpalaQueryOptions = 16
	TImpalaQueryOptions_EXPLAIN_LEVEL                   TImpalaQueryOptions = 17
	TImpalaQueryOptions_SYNC_DDL                        TImpalaQueryOptions = 18
	TImpalaQueryOptions_REQUEST_POOL                    TImpalaQueryOptions = 19
	TImpalaQueryOptions_V_CPU_CORES                     TImpalaQueryOptions = 20
	TImpalaQueryOptions_RESERVATION_REQUEST_TIMEOUT     TImpalaQueryOptions = 21
	TImpalaQueryOptions_DISABLE_CACHED_READS            TImpalaQueryOptions = 22
	TImpalaQueryOptions_DISABLE_OUTERMOST_TOPN          TImpalaQueryOptions = 23
	TImpalaQueryOptions_RM_INITIAL_MEM                  TImpalaQueryOptions = 24
	TImpalaQueryOptions_QUERY_TIMEOUT_S                 TImpalaQueryOptions = 25
	TImpalaQueryOptions_MAX_BLOCK_MGR_MEMORY            TImpalaQueryOptions = 26
	TImpalaQueryOptions_APPX_COUNT_DISTINCT             TImpalaQueryOptions = 27
	TImpalaQueryOptions_DISABLE_UNSAFE_SPILLS           TImpalaQueryOptions = 28
)

func TImpalaQueryOptionsFromString

func TImpalaQueryOptionsFromString(s string) (TImpalaQueryOptions, error)

func TImpalaQueryOptionsPtr

func TImpalaQueryOptionsPtr(v TImpalaQueryOptions) *TImpalaQueryOptions

func (TImpalaQueryOptions) MarshalText

func (p TImpalaQueryOptions) MarshalText() ([]byte, error)

func (*TImpalaQueryOptions) Scan

func (p *TImpalaQueryOptions) Scan(value interface{}) error

func (TImpalaQueryOptions) String

func (p TImpalaQueryOptions) String() string

func (*TImpalaQueryOptions) UnmarshalText

func (p *TImpalaQueryOptions) UnmarshalText(text []byte) error

func (*TImpalaQueryOptions) Value

func (p *TImpalaQueryOptions) Value() (driver.Value, error)

type TInsertResult_

type TInsertResult_ struct {
	RowsAppended map[string]int64 `thrift:"rows_appended,1,required" db:"rows_appended" json:"rows_appended"`
}

Attributes:

  • RowsAppended
var ImpalaServiceCloseInsertResult_Success_DEFAULT *TInsertResult_

func NewTInsertResult_

func NewTInsertResult_() *TInsertResult_

func (*TInsertResult_) GetRowsAppended

func (p *TInsertResult_) GetRowsAppended() map[string]int64

func (*TInsertResult_) Read

func (p *TInsertResult_) Read(iprot thrift.TProtocol) error

func (*TInsertResult_) ReadField1

func (p *TInsertResult_) ReadField1(iprot thrift.TProtocol) error

func (*TInsertResult_) String

func (p *TInsertResult_) String() string

func (*TInsertResult_) Write

func (p *TInsertResult_) Write(oprot thrift.TProtocol) error

type TPingImpalaServiceResp

type TPingImpalaServiceResp struct {
	Version string `thrift:"version,1" db:"version" json:"version"`
}

Attributes:

  • Version
var ImpalaServicePingImpalaServiceResult_Success_DEFAULT *TPingImpalaServiceResp

func NewTPingImpalaServiceResp

func NewTPingImpalaServiceResp() *TPingImpalaServiceResp

func (*TPingImpalaServiceResp) GetVersion

func (p *TPingImpalaServiceResp) GetVersion() string

func (*TPingImpalaServiceResp) Read

func (*TPingImpalaServiceResp) ReadField1

func (p *TPingImpalaServiceResp) ReadField1(iprot thrift.TProtocol) error

func (*TPingImpalaServiceResp) String

func (p *TPingImpalaServiceResp) String() string

func (*TPingImpalaServiceResp) Write

func (p *TPingImpalaServiceResp) Write(oprot thrift.TProtocol) error

type TResetTableReq

type TResetTableReq struct {
	DbName    string `thrift:"db_name,1,required" db:"db_name" json:"db_name"`
	TableName string `thrift:"table_name,2,required" db:"table_name" json:"table_name"`
}

Attributes:

  • DbName
  • TableName
var ImpalaServiceResetTableArgs_Request_DEFAULT *TResetTableReq

func NewTResetTableReq

func NewTResetTableReq() *TResetTableReq

func (*TResetTableReq) GetDbName

func (p *TResetTableReq) GetDbName() string

func (*TResetTableReq) GetTableName

func (p *TResetTableReq) GetTableName() string

func (*TResetTableReq) Read

func (p *TResetTableReq) Read(iprot thrift.TProtocol) error

func (*TResetTableReq) ReadField1

func (p *TResetTableReq) ReadField1(iprot thrift.TProtocol) error

func (*TResetTableReq) ReadField2

func (p *TResetTableReq) ReadField2(iprot thrift.TProtocol) error

func (*TResetTableReq) String

func (p *TResetTableReq) String() string

func (*TResetTableReq) Write

func (p *TResetTableReq) Write(oprot thrift.TProtocol) error

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL