Documentation ¶
Index ¶
- type ApplyUDSinkErr
- type InternalErr
- type Option
- type UDSgRPCBasedUDSink
- type UserDefinedSink
- func (s *UserDefinedSink) Close() error
- func (s *UserDefinedSink) ForceStop()
- func (s *UserDefinedSink) GetName() string
- func (s *UserDefinedSink) IsFull() bool
- func (s *UserDefinedSink) IsHealthy(ctx context.Context) error
- func (s *UserDefinedSink) Start() <-chan struct{}
- func (s *UserDefinedSink) Stop()
- func (s *UserDefinedSink) Write(ctx context.Context, messages []isb.Message) ([]isb.Offset, []error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApplyUDSinkErr ¶
type ApplyUDSinkErr struct { UserUDSinkErr bool Message string InternalErr }
ApplyUDSinkErr represents any UDSink related error
func (ApplyUDSinkErr) Error ¶
func (e ApplyUDSinkErr) Error() string
func (ApplyUDSinkErr) IsInternalErr ¶
func (e ApplyUDSinkErr) IsInternalErr() bool
IsInternalErr is true if this is a platform issue. This is a blocking error.
func (ApplyUDSinkErr) IsUserUDSinkErr ¶
func (e ApplyUDSinkErr) IsUserUDSinkErr() bool
IsUserUDSinkErr is true if the problem is due to the user code in the UDSink.
type InternalErr ¶
InternalErr represents errors internal to the platform
type Option ¶
type Option func(*UserDefinedSink) error
func WithLogger ¶
func WithLogger(log *zap.SugaredLogger) Option
type UDSgRPCBasedUDSink ¶ added in v0.7.1
type UDSgRPCBasedUDSink struct {
// contains filtered or unexported fields
}
UDSgRPCBasedUDSink applies user defined sink over gRPC (over Unix Domain Socket) client/server where server is the UDSink.
func NewUDSgRPCBasedUDSink ¶ added in v0.7.1
func NewUDSgRPCBasedUDSink() (*UDSgRPCBasedUDSink, error)
NewUDSgRPCBasedUDSink returns UDSgRPCBasedUDSink
func (*UDSgRPCBasedUDSink) Apply ¶ added in v0.7.1
func (u *UDSgRPCBasedUDSink) Apply(ctx context.Context, dList []*sinkpb.DatumRequest) []error
func (*UDSgRPCBasedUDSink) CloseConn ¶ added in v0.7.1
func (u *UDSgRPCBasedUDSink) CloseConn(ctx context.Context) error
CloseConn closes the gRPC client connection.
func (*UDSgRPCBasedUDSink) IsHealthy ¶ added in v0.7.1
func (u *UDSgRPCBasedUDSink) IsHealthy(ctx context.Context) error
IsHealthy checks if the udsink is healthy.
func (*UDSgRPCBasedUDSink) WaitUntilReady ¶ added in v0.7.1
func (u *UDSgRPCBasedUDSink) WaitUntilReady(ctx context.Context) error
WaitUntilReady waits until the udsink is connected.
type UserDefinedSink ¶ added in v0.6.0
type UserDefinedSink struct {
// contains filtered or unexported fields
}
func NewUserDefinedSink ¶
func NewUserDefinedSink(vertex *dfv1.Vertex, fromBuffer isb.BufferReader, fetchWatermark fetch.Fetcher, publishWatermark map[string]publish.Publisher, opts ...Option) (*UserDefinedSink, error)
NewUserDefinedSink returns genericSink type.
func (*UserDefinedSink) Close ¶ added in v0.6.0
func (s *UserDefinedSink) Close() error
func (*UserDefinedSink) ForceStop ¶ added in v0.6.0
func (s *UserDefinedSink) ForceStop()
func (*UserDefinedSink) GetName ¶ added in v0.6.0
func (s *UserDefinedSink) GetName() string
func (*UserDefinedSink) IsFull ¶ added in v0.6.0
func (s *UserDefinedSink) IsFull() bool
func (*UserDefinedSink) IsHealthy ¶ added in v0.6.0
func (s *UserDefinedSink) IsHealthy(ctx context.Context) error
IsHealthy checks if the udsink sidecar is healthy.
func (*UserDefinedSink) Start ¶ added in v0.6.0
func (s *UserDefinedSink) Start() <-chan struct{}
func (*UserDefinedSink) Stop ¶ added in v0.6.0
func (s *UserDefinedSink) Stop()