source

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Aug 14, 2023 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// KeyOrderingColumn is a config name for an ordering column.
	KeyOrderingColumn = "orderingColumn"
	// KeyColumns is a config name for columns.
	KeyColumns = "columns"
	// KeyBatchSize is a config name for a batch size.
	KeyBatchSize = "batchSize"
	// KeyPrimaryKey is column name that records should use for their `Key` fields.
	KeyPrimaryKey string = "primaryKey"
	// KeySnapshot is a config name for snapshotMode.
	KeySnapshot = "snapshot"
)

Variables

This section is empty.

Functions

func New

func New() sdk.Source

New initialises a new source.

Types

type Config

type Config struct {
	config.Config

	// OrderingColumn is a name of a column that the connector will use for ordering rows.
	OrderingColumn string `json:"orderingColumn" validate:"required"`
	// Columns  list of column names that should be included in each Record's payload.
	Columns []string `json:"columns"`
	// BatchSize is the size of rows batch.
	BatchSize int `json:"batchSize" default:"1000" validate:"gt=1,lt=100000"`
	// Key - Column name that records should use for their `Key` fields.
	Key string `json:"primaryKey"`
	// Snapshot whether the plugin will take a snapshot of the entire table before starting cdc.
	Snapshot bool `default:"true"`
}

Config holds source specific configurable values.

func (Config) Parameters

func (Config) Parameters() map[string]sdk.Parameter

type Iterator

type Iterator interface {
	HasNext(ctx context.Context) (bool, error)
	Next(ctx context.Context) (sdk.Record, error)
	Stop(ctx context.Context) error
	Ack(ctx context.Context, rp sdk.Position) error
}

Iterator interface.

type Source

type Source struct {
	sdk.UnimplementedSource
	// contains filtered or unexported fields
}

Source connector.

func (*Source) Ack

func (s *Source) Ack(ctx context.Context, p sdk.Position) error

Ack check if record with position was recorded.

func (*Source) Configure

func (s *Source) Configure(_ context.Context, cfg map[string]string) error

Configure parses and stores configurations, returns an error in case of invalid configuration.

func (*Source) Open

func (s *Source) Open(ctx context.Context, rp sdk.Position) error

Open prepare the plugin to start sending records from the given position.

func (*Source) Parameters

func (s *Source) Parameters() map[string]sdk.Parameter

Parameters returns a map of named sdk.Parameters that describe how to configure the Source.

func (*Source) Read

func (s *Source) Read(ctx context.Context) (sdk.Record, error)

Read gets the next object from the sql server.

func (*Source) Teardown

func (s *Source) Teardown(ctx context.Context) error

Teardown gracefully shutdown connector.

Directories

Path Synopsis
Package mock is a generated GoMock package.
Package mock is a generated GoMock package.

Jump to

Keyboard shortcuts

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