kafka

package
v0.15.12 Latest Latest
Warning

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

Go to latest
Published: Jan 22, 2024 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Check added in v0.9.0

func Check(v *Config, workers map[eosc.RequireId]eosc.IWorker) error

func Create added in v0.9.0

func Create(id, name string, conf *Config, workers map[eosc.RequireId]eosc.IWorker) (eosc.IWorker, error)

func NewFactory

func NewFactory() eosc.IExtenderDriverFactory

func Register

func Register(register eosc.IExtenderDriverRegister)

Register 注册kafka_output驱动工厂

Types

type Config

type Config struct {
	Scopes        []string             `json:"scopes" label:"作用域"`
	Topic         string               `json:"topic" yaml:"topic" label:"Topic"`
	Address       string               `json:"address" yaml:"address" label:"请求地址"`
	Timeout       int                  `json:"timeout" yaml:"timeout" label:"超时时间"`
	Version       string               `` /* 468-byte string literal not displayed */
	PartitionType string               `json:"partition_type" yaml:"partition_type" enum:"robin,hash,manual,random"`
	Partition     int32                `json:"partition" yaml:"partition" switch:"partition_type==='manual'"`
	PartitionKey  string               `json:"partition_key" yaml:"partition_key" switch:"partition_type==='hash'"`
	Type          string               `json:"type" yaml:"type" enum:"json,line" label:"输出格式"`
	ContentResize []ContentResize      `json:"content_resize" yaml:"content_resize" label:"内容截断配置" switch:"type===json"`
	Formatter     eosc.FormatterConfig `json:"formatter" yaml:"formatter" label:"格式化配置"`
}

type ContentResize added in v0.15.1

type ContentResize struct {
	Size   int    `json:"size" label:"内容截断大小" description:"单位:M" default:"10" minimum:"0"`
	Suffix string `json:"suffix" label:"匹配标签后缀"`
}

type Driver

type Driver struct {
	// contains filtered or unexported fields
}

type Output

type Output struct {
	drivers.WorkerBase
	// contains filtered or unexported fields
}

func (*Output) CheckSkill

func (o *Output) CheckSkill(skill string) bool

func (*Output) Output

func (o *Output) Output(entry eosc.IEntry) error

func (*Output) Reset

func (o *Output) Reset(conf interface{}, workers map[eosc.RequireId]eosc.IWorker) error

func (*Output) Start

func (o *Output) Start() error

func (*Output) Stop

func (o *Output) Stop() error

type Producer added in v0.8.0

type Producer interface {
	// contains filtered or unexported methods
}

type ProducerConfig

type ProducerConfig struct {
	Scopes        []string             `json:"scopes" yaml:"scopes"`
	Address       []string             `json:"address" yaml:"address"`
	Topic         string               `json:"topic" yaml:"topic"`
	Partition     int32                `json:"partition" yaml:"partition"`
	PartitionKey  string               `json:"partition_key" yaml:"partition_key"`
	PartitionType string               `json:"partition_type" yaml:"partition_type"`
	Conf          *sarama.Config       `json:"conf" yaml:"conf"`
	Type          string               `json:"type" yaml:"type"`
	ContentResize []ContentResize      `json:"content_resize" yaml:"content_resize"`
	Formatter     eosc.FormatterConfig `json:"formatter" yaml:"formatter"`
}

Jump to

Keyboard shortcuts

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