Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix some params for consumer can not be changed #825

Merged
merged 1 commit into from
May 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions consumer/option.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ func defaultPushConsumerOptions() consumerOptions {
ConsumerModel: Clustering,
AutoCommit: true,
Resolver: primitive.NewHttpResolver("DEFAULT"),
ConsumeTimestamp: time.Now().Add(time.Minute * (-30)).Format("20060102150405"),
}
opts.ClientOptions.GroupName = "DEFAULT_CONSUMER"
return opts
Expand Down Expand Up @@ -158,6 +159,24 @@ func WithConsumeMessageBatchMaxSize(consumeMessageBatchMaxSize int) Option {
}
}

func WithConsumeTimestamp(consumeTimestamp string) Option {
return func(options *consumerOptions) {
options.ConsumeTimestamp = consumeTimestamp
}
}

func WithConsumerPullTimeout(consumerPullTimeout time.Duration) Option {
return func(options *consumerOptions) {
options.ConsumerPullTimeout = consumerPullTimeout
}
}

func WithConsumeConcurrentlyMaxSpan(consumeConcurrentlyMaxSpan int) Option {
return func(options *consumerOptions) {
options.ConsumeConcurrentlyMaxSpan = consumeConcurrentlyMaxSpan
}
}

// WithChainConsumerInterceptor returns a ConsumerOption that specifies the chained interceptor for consumer.
// The first interceptor will be the outer most, while the last interceptor will be the inner most wrapper
// around the real call.
Expand Down