You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rootCommand.PersistentFlags().StringVar(&coordinatorTyp, "coordinator", defaultCoordinator, "Specifies how to coordinate transfer nodes (\"memory\", \"s3\", \"etcd\")")
142
+
rootCommand.PersistentFlags().StringVar(&coordinatorTyp, "coordinator", defaultCoordinator, "Specifies how to coordinate transfer nodes (\"memory\", \"s3\")")
177
143
rootCommand.PersistentFlags().StringVar(&coordinatorS3Bucket, "coordinator-s3-bucket", "", "Bucket for s3 coordinator")
178
-
rootCommand.PersistentFlags().StringSliceVar(&coordinatorEtcdEndpoints, "coordinator-etcd-endpoints", []string{"http://localhost:2379"}, "Endpoints for etcd coordinator")
179
-
rootCommand.PersistentFlags().StringVar(&coordinatorEtcdUsername, "coordinator-etcd-username", "", "Username for etcd coordinator")
180
-
rootCommand.PersistentFlags().StringVar(&coordinatorEtcdPassword, "coordinator-etcd-password", "", "Password for etcd coordinator")
181
-
rootCommand.PersistentFlags().StringVar(&coordinatorEtcdCertFile, "coordinator-etcd-cert-file", "", "Path to the etcd client certificate file")
182
-
rootCommand.PersistentFlags().StringVar(&coordinatorEtcdKeyFile, "coordinator-etcd-key-file", "", "Path to the etcd client key file")
183
-
rootCommand.PersistentFlags().StringVar(&coordinatorEtcdCAFile, "coordinator-etcd-ca-file", "", "Path to the etcd CA certificate file")
184
-
185
144
rootCommand.PersistentFlags().BoolVar(&runProfiler, "run-profiler", true, "Run go pprof for performance profiles on 8080 port")
rootCommand.PersistentFlags().IntVar(&rt.ShardingUpload.JobCount, "coordinator-job-count", 0, "Worker job count, if more then 1 - run consider as sharded, coordinator is required to be non memory")
Copy file name to clipboardExpand all lines: pkg/abstract/async_sink.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ type AsyncSink interface {
19
19
// AsyncPushConcurrencyErr indicates a Push has been called on an already closed AsyncSink. This must not happen and means there are concurrency issues in the implementation of a source.
20
20
varAsyncPushConcurrencyErr=xerrors.NewSentinel("AsyncPush is called after Close")
21
21
22
-
// PusherFromAsyncSink wraps the given sink into a (synchronous) pusher interface.
22
+
// PusherFromAsyncSink wraps the given sink into a (synchronous) pusher interface
// OldOrCurrentKeys returns a string representing the values of the columns from the given set of columns, extracted from OldKeys or ColumnValues, if OldKeys are absent.
307
+
// OldOrCurrentKeys returns a string representing the values of the columns from the given set of columns, extracted from OldKeys or ColumnValues, if OldKeys are absent
0 commit comments