From ac576fad2e9e4dbbefe34c9dda23bb6859fe283b Mon Sep 17 00:00:00 2001 From: Aleksey Myasnikov Date: Mon, 8 Apr 2024 09:47:08 +0300 Subject: [PATCH] fix URL for versioning policy --- balancers/balancers.go | 2 +- config/config.go | 4 +- connection.go | 4 +- coordination/coordination.go | 2 +- driver.go | 4 +- internal/table/config/config.go | 18 +-- .../topic/topicreaderinternal/commit_range.go | 2 +- .../topicwriterinternal/writer_options.go | 2 +- meta.go | 4 +- meta/context.go | 2 +- metrics/config.go | 2 +- metrics/registry.go | 2 +- options.go | 6 +- params_builder.go | 2 +- retry/context.go | 6 +- retry/sql.go | 4 +- sugar/params.go | 4 +- sugar/result.go | 2 +- table/options/models.go | 2 +- table/options/options.go | 8 +- table/table.go | 2 +- table/types/cast.go | 2 +- table/types/types.go | 2 +- table/types/value.go | 8 +- topic/topicoptions/topicoptions_reader.go | 24 ++-- topic/topicoptions/topicoptions_topic.go | 8 +- topic/topicoptions/topicoptions_writer.go | 20 ++-- topic/topicreader/batch_options.go | 2 +- topic/topicreader/reader.go | 2 +- trace/coordination.go | 106 ++++++++--------- trace/discovery.go | 12 +- trace/driver.go | 64 +++++------ trace/query.go | 38 +++--- trace/ratelimiter.go | 2 +- trace/retry.go | 8 +- trace/scheme.go | 32 +++--- trace/scripting.go | 28 ++--- trace/sql.go | 64 +++++------ trace/table.go | 40 +++---- trace/topic.go | 108 +++++++++--------- 40 files changed, 327 insertions(+), 327 deletions(-) diff --git a/balancers/balancers.go b/balancers/balancers.go index 4aef8dd73..c6c7398e1 100644 --- a/balancers/balancers.go +++ b/balancers/balancers.go @@ -9,7 +9,7 @@ import ( "github.com/ydb-platform/ydb-go-sdk/v3/internal/xstring" ) -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func RoundRobin() *balancerConfig.Config { return &balancerConfig.Config{} } diff --git a/config/config.go b/config/config.go index 2bb486ab4..c47beef4b 100644 --- a/config/config.go +++ b/config/config.go @@ -107,7 +107,7 @@ type Option func(c *Config) // WithInternalDNSResolver // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithInternalDNSResolver() Option { return func(c *Config) {} } @@ -170,7 +170,7 @@ func WithApplicationName(applicationName string) Option { // WithUserAgent add provided user agent to all api requests // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithUserAgent(userAgent string) Option { return func(c *Config) { c.metaOptions = append(c.metaOptions, meta.WithApplicationNameOption(userAgent)) diff --git a/connection.go b/connection.go index ae0932770..51fcd42b5 100644 --- a/connection.go +++ b/connection.go @@ -16,7 +16,7 @@ import ( // Connection interface provide access to YDB service clients // Interface and list of clients may be changed in the future // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated type Connection interface { //nolint:interfacebloat // Endpoint returns initial endpoint Endpoint() string @@ -35,7 +35,7 @@ type Connection interface { //nolint:interfacebloat // Query returns query client // - // Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental + // Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental Query() query.Client // Scheme returns scheme client diff --git a/coordination/coordination.go b/coordination/coordination.go index b706c6b53..b0ff0c011 100644 --- a/coordination/coordination.go +++ b/coordination/coordination.go @@ -26,7 +26,7 @@ type Client interface { // - close the Client which the session was created with, // - call any method of the Session until the ErrSessionClosed is returned. // - // Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental + // Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental Session(ctx context.Context, path string, opts ...options.SessionOption) (Session, error) } diff --git a/driver.go b/driver.go index 0ba6c8773..4ec25f4c0 100644 --- a/driver.go +++ b/driver.go @@ -191,7 +191,7 @@ func (d *Driver) Table() table.Client { // Query returns query client // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental func (d *Driver) Query() query.Client { return d.query.Get() } @@ -273,7 +273,7 @@ func MustOpen(ctx context.Context, dsn string, opts ...Option) *Driver { // New connects to database and return driver runtime holder // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func New(ctx context.Context, opts ...Option) (_ *Driver, err error) { //nolint:nonamedreturns d, err := newConnectionFromOptions(ctx, opts...) if err != nil { diff --git a/internal/table/config/config.go b/internal/table/config/config.go index 46d7b6e82..f6246b168 100644 --- a/internal/table/config/config.go +++ b/internal/table/config/config.go @@ -15,13 +15,13 @@ const ( DefaultSessionPoolSizeLimit = 50 DefaultSessionPoolIdleThreshold = 5 * time.Minute - // Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated + // Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated DefaultKeepAliveMinSize = 10 - // Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated + // Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated DefaultIdleKeepAliveThreshold = 2 - // Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated + // Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated DefaultSessionPoolKeepAliveTimeout = 500 * time.Millisecond ) @@ -61,7 +61,7 @@ func WithSizeLimit(sizeLimit int) Option { // If keepAliveMinSize is less than zero, then no sessions will be preserved // If keepAliveMinSize is zero, the DefaultKeepAliveMinSize is used // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithKeepAliveMinSize(keepAliveMinSize int) Option { return func(c *Config) {} } @@ -73,7 +73,7 @@ func WithKeepAliveMinSize(keepAliveMinSize int) Option { // be removed ever. // If IdleKeepAliveThreshold is equal to zero, it will be set to DefaultIdleKeepAliveThreshold // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithIdleKeepAliveThreshold(idleKeepAliveThreshold int) Option { return func(c *Config) {} } @@ -95,7 +95,7 @@ func WithIdleThreshold(idleThreshold time.Duration) Option { // WithKeepAliveTimeout limits maximum time spent on KeepAlive request // If keepAliveTimeout is less than or equal to zero then the DefaultSessionPoolKeepAliveTimeout is used. // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithKeepAliveTimeout(keepAliveTimeout time.Duration) Option { return func(c *Config) {} } @@ -182,7 +182,7 @@ func (c *Config) SizeLimit() int { // If KeepAliveMinSize is less than zero, then no sessions will be preserved // If KeepAliveMinSize is zero, the DefaultKeepAliveMinSize is used // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func (c *Config) KeepAliveMinSize() int { return DefaultKeepAliveMinSize } @@ -199,7 +199,7 @@ func (c *Config) IgnoreTruncated() bool { // be removed ever. // If IdleKeepAliveThreshold is equal to zero, it will be set to DefaultIdleKeepAliveThreshold // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func (c *Config) IdleKeepAliveThreshold() int { return DefaultIdleKeepAliveThreshold } @@ -216,7 +216,7 @@ func (c *Config) IdleThreshold() time.Duration { // KeepAliveTimeout limits maximum time spent on KeepAlive request // If KeepAliveTimeout is less than or equal to zero then the DefaultSessionPoolKeepAliveTimeout is used. // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func (c *Config) KeepAliveTimeout() time.Duration { return DefaultSessionPoolKeepAliveTimeout } diff --git a/internal/topic/topicreaderinternal/commit_range.go b/internal/topic/topicreaderinternal/commit_range.go index 48d035ce1..18d00b0d8 100644 --- a/internal/topic/topicreaderinternal/commit_range.go +++ b/internal/topic/topicreaderinternal/commit_range.go @@ -158,7 +158,7 @@ func (r *CommitRanges) toRawPartitionCommitOffset() []rawtopicreader.PartitionCo // PublicCommitRange contains data for commit messages range // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental type PublicCommitRange struct { priv commitRange } diff --git a/internal/topic/topicwriterinternal/writer_options.go b/internal/topic/topicwriterinternal/writer_options.go index 5e565866b..5c88bdbb3 100644 --- a/internal/topic/topicwriterinternal/writer_options.go +++ b/internal/topic/topicwriterinternal/writer_options.go @@ -51,7 +51,7 @@ func WithTokenUpdateInterval(interval time.Duration) PublicWriterOption { // WithCommonConfig // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental func WithCommonConfig(common config.Common) PublicWriterOption { return func(cfg *WriterReconnectorConfig) { cfg.Common = common diff --git a/meta.go b/meta.go index 3a8941b05..9a7cd2fb8 100644 --- a/meta.go +++ b/meta.go @@ -8,14 +8,14 @@ import ( // WithTraceID returns a copy of parent context with traceID // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithTraceID(ctx context.Context, traceID string) context.Context { return meta.WithTraceID(ctx, traceID) } // WithRequestType returns a copy of parent context with custom request type // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithRequestType(ctx context.Context, requestType string) context.Context { return meta.WithRequestType(ctx, requestType) } diff --git a/meta/context.go b/meta/context.go index 07d6c3b46..75a12c45b 100644 --- a/meta/context.go +++ b/meta/context.go @@ -15,7 +15,7 @@ func WithTraceID(ctx context.Context, traceID string) context.Context { // WithUserAgent returns a copy of parent context with custom user-agent info // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithUserAgent(ctx context.Context, _ string) context.Context { return ctx } diff --git a/metrics/config.go b/metrics/config.go index 8895d5025..e87f190c7 100644 --- a/metrics/config.go +++ b/metrics/config.go @@ -4,7 +4,7 @@ import "github.com/ydb-platform/ydb-go-sdk/v3/trace" // Config is interface for metrics registry config // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental type Config interface { Registry diff --git a/metrics/registry.go b/metrics/registry.go index 4ae8f9c70..efadda86f 100644 --- a/metrics/registry.go +++ b/metrics/registry.go @@ -2,7 +2,7 @@ package metrics // Registry is interface for metrics registry // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental type Registry interface { // CounterVec returns CounterVec by name, subsystem and labels // If counter by args already created - return counter from cache diff --git a/options.go b/options.go index fa0a59655..642565610 100644 --- a/options.go +++ b/options.go @@ -65,7 +65,7 @@ func WithApplicationName(applicationName string) Option { // WithUserAgent add provided user agent value to all api requests // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithUserAgent(userAgent string) Option { return func(ctx context.Context, c *Driver) error { c.options = append(c.options, config.WithApplicationName(userAgent)) @@ -434,14 +434,14 @@ func WithSessionPoolDeleteTimeout(deleteTimeout time.Duration) Option { // WithSessionPoolKeepAliveMinSize set minimum sessions should be keeped alive in table.Client // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithSessionPoolKeepAliveMinSize(keepAliveMinSize int) Option { return func(ctx context.Context, c *Driver) error { return nil } } // WithSessionPoolKeepAliveTimeout set timeout of keep alive requests for session in table.Client // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithSessionPoolKeepAliveTimeout(keepAliveTimeout time.Duration) Option { return func(ctx context.Context, c *Driver) error { return nil } } diff --git a/params_builder.go b/params_builder.go index ef787566c..64768b55c 100644 --- a/params_builder.go +++ b/params_builder.go @@ -4,7 +4,7 @@ import "github.com/ydb-platform/ydb-go-sdk/v3/internal/params" // ParamsBuilder used for create query arguments instead of tons options. // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental func ParamsBuilder() params.Builder { return params.Builder{} } diff --git a/retry/context.go b/retry/context.go index 3d78d6bb2..715eb42b8 100644 --- a/retry/context.go +++ b/retry/context.go @@ -8,21 +8,21 @@ type ( // WithIdempotentOperation returns a copy of parent context with idempotent operation feature // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithIdempotentOperation(ctx context.Context) context.Context { return context.WithValue(ctx, ctxIsOperationIdempotentKey{}, true) } // WithNonIdempotentOperation returns a copy of parent context with non-idempotent operation feature // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithNonIdempotentOperation(ctx context.Context) context.Context { return context.WithValue(ctx, ctxIsOperationIdempotentKey{}, false) } // IsOperationIdempotent returns the flag for retry with no idempotent errors // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func IsOperationIdempotent(ctx context.Context) bool { v, ok := ctx.Value(ctxIsOperationIdempotentKey{}).(bool) diff --git a/retry/sql.go b/retry/sql.go index 3fc5f60d4..3deb8500b 100644 --- a/retry/sql.go +++ b/retry/sql.go @@ -32,7 +32,7 @@ func (retryOptions doRetryOptionsOption) ApplyDoOption(opts *doOptions) { } // WithDoRetryOptions specified retry options -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithDoRetryOptions(opts ...Option) doRetryOptionsOption { return opts } @@ -102,7 +102,7 @@ func (doTxRetryOptions doTxRetryOptionsOption) ApplyDoTxOption(o *doTxOptions) { } // WithDoTxRetryOptions specified retry options -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithDoTxRetryOptions(opts ...Option) doTxRetryOptionsOption { return opts } diff --git a/sugar/params.go b/sugar/params.go index bb343bf51..876df62b4 100644 --- a/sugar/params.go +++ b/sugar/params.go @@ -18,7 +18,7 @@ type constraint interface { // GenerateDeclareSection generates DECLARE section text in YQL query by params // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func GenerateDeclareSection[T constraint](parameters T) (string, error) { switch v := any(parameters).(type) { case *params.Parameters: @@ -36,7 +36,7 @@ func GenerateDeclareSection[T constraint](parameters T) (string, error) { // ToYdbParam converts // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func ToYdbParam(param sql.NamedArg) (*params.Parameter, error) { params, err := bind.Params(param) if err != nil { diff --git a/sugar/result.go b/sugar/result.go index 351efc105..4a2275dcf 100644 --- a/sugar/result.go +++ b/sugar/result.go @@ -73,7 +73,7 @@ func (r *result) Close() error { // Result converts query.Result to iterable result for compatibility with table/result.Result usage // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental func Result(r query.Result) *result { return &result{ r: r, diff --git a/table/options/models.go b/table/options/models.go index 0d9896e9a..b0ff628da 100644 --- a/table/options/models.go +++ b/table/options/models.go @@ -420,7 +420,7 @@ func (kr KeyRange) String() string { return buf.String() } -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated type TTLSettings struct { DateTimeColumn string TTLSeconds uint32 diff --git a/table/options/options.go b/table/options/options.go index 91936bb5c..a3ce3c328 100644 --- a/table/options/options.go +++ b/table/options/options.go @@ -518,7 +518,7 @@ func WithPartitioningPolicyMode(mode PartitioningMode) PartitioningPolicyOption } } -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithPartitioningPolicyUniformPartitions(n uint64) PartitioningPolicyOption { return func(p *partitioningPolicy, a *allocator.Allocator) { p.Partitions = &Ydb_Table.PartitioningPolicy_UniformPartitions{ @@ -527,7 +527,7 @@ func WithPartitioningPolicyUniformPartitions(n uint64) PartitioningPolicyOption } } -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithPartitioningPolicyExplicitPartitions(splitPoints ...value.Value) PartitioningPolicyOption { return func(p *partitioningPolicy, a *allocator.Allocator) { values := make([]*Ydb.TypedValue, len(splitPoints)) @@ -891,7 +891,7 @@ func WithIgnoreTruncated() ExecuteDataQueryOption { // WithQueryCachePolicyKeepInCache manages keep-in-cache policy // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated // Use WithKeepInCache for disabling keep-in-cache policy func WithQueryCachePolicyKeepInCache() QueryCachePolicyOption { return withQueryCachePolicyKeepInCache(true) @@ -905,7 +905,7 @@ func withQueryCachePolicyKeepInCache(keepInCache bool) QueryCachePolicyOption { // WithQueryCachePolicy manages query cache policy // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithQueryCachePolicy(opts ...QueryCachePolicyOption) ExecuteDataQueryOption { return withQueryCachePolicy(opts...) } diff --git a/table/table.go b/table/table.go index 51f192e45..daab8b9b2 100644 --- a/table/table.go +++ b/table/table.go @@ -39,7 +39,7 @@ type Client interface { // - context was canceled or deadlined // - session was created // - // Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated + // Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated CreateSession(ctx context.Context, opts ...Option) (s ClosableSession, err error) // Do provide the best effort for execute operation. diff --git a/table/types/cast.go b/table/types/cast.go index 359987d6e..b65777725 100644 --- a/table/types/cast.go +++ b/table/types/cast.go @@ -93,7 +93,7 @@ func VariantValue(v Value) (name string, idx uint32, _ Value, _ error) { // DictFields returns dict values from abstract Value // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func DictFields(v Value) (map[Value]Value, error) { return DictValues(v) } diff --git a/table/types/types.go b/table/types/types.go index 2c9c8973b..9f4497dfb 100644 --- a/table/types/types.go +++ b/table/types/types.go @@ -120,7 +120,7 @@ const ( // WriteTypeStringTo writes ydb type string representation into buffer // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WriteTypeStringTo(buf *bytes.Buffer, t Type) { //nolint: interfacer buf.WriteString(t.Yql()) } diff --git a/table/types/value.go b/table/types/value.go index 5177c6967..34478aad0 100644 --- a/table/types/value.go +++ b/table/types/value.go @@ -47,7 +47,7 @@ func IntervalValueFromMicroseconds(v int64) Value { return value.IntervalValue(v // IntervalValue makes Value from given microseconds value // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func IntervalValue(v int64) Value { return value.IntervalValue(v) } // TzDateValue makes TzDate value from string @@ -117,7 +117,7 @@ func TzTimestampValueFromTime(t time.Time) Value { // StringValue returns bytes value // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func StringValue(v []byte) Value { return value.BytesValue(v) } func BytesValue(v []byte) Value { return value.BytesValue(v) } @@ -345,7 +345,7 @@ func NullableTzTimestampValueFromTime(v *time.Time) Value { // NullableIntervalValue makes Value which maybe nil or valued // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func NullableIntervalValue(v *int64) Value { return value.NullableIntervalValueFromMicroseconds(v) } @@ -360,7 +360,7 @@ func NullableIntervalValueFromDuration(v *time.Duration) Value { // NullableStringValue // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func NullableStringValue(v *[]byte) Value { return value.NullableBytesValue(v) } diff --git a/topic/topicoptions/topicoptions_reader.go b/topic/topicoptions/topicoptions_reader.go index fdd583018..9145eb20a 100644 --- a/topic/topicoptions/topicoptions_reader.go +++ b/topic/topicoptions/topicoptions_reader.go @@ -26,7 +26,7 @@ type ReaderOption = topicreaderinternal.PublicReaderOption // WithReaderOperationTimeout // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental func WithReaderOperationTimeout(timeout time.Duration) ReaderOption { return func(cfg *topicreaderinternal.ReaderConfig) { config.SetOperationTimeout(&cfg.Common, timeout) @@ -35,7 +35,7 @@ func WithReaderOperationTimeout(timeout time.Duration) ReaderOption { // WithReaderStartTimeout mean timeout for connect to reader stream and work some time without errors // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental func WithReaderStartTimeout(timeout time.Duration) ReaderOption { return func(cfg *topicreaderinternal.ReaderConfig) { cfg.RetrySettings.StartTimeout = timeout @@ -54,7 +54,7 @@ func WithReaderCheckRetryErrorFunction(callback CheckErrorRetryFunction) ReaderO // WithReaderOperationCancelAfter // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental func WithReaderOperationCancelAfter(cancelAfter time.Duration) ReaderOption { return func(cfg *topicreaderinternal.ReaderConfig) { config.SetOperationCancelAfter(&cfg.Common, cancelAfter) @@ -63,7 +63,7 @@ func WithReaderOperationCancelAfter(cancelAfter time.Duration) ReaderOption { // WithCommonConfig // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental func WithCommonConfig(common config.Common) ReaderOption { return func(cfg *topicreaderinternal.ReaderConfig) { cfg.Common = common @@ -71,7 +71,7 @@ func WithCommonConfig(common config.Common) ReaderOption { } // WithCommitTimeLagTrigger -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithCommitTimeLagTrigger(lag time.Duration) ReaderOption { return WithReaderCommitTimeLagTrigger(lag) } @@ -87,7 +87,7 @@ func WithReaderCommitTimeLagTrigger(lag time.Duration) ReaderOption { } // WithCommitCountTrigger -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithCommitCountTrigger(count int) ReaderOption { return WithReaderCommitCountTrigger(count) } @@ -105,7 +105,7 @@ func WithReaderCommitCountTrigger(count int) ReaderOption { // prefer min count messages in batch // sometimes batch can contain fewer messages, for example if local buffer is full and SDK can't receive more messages // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithBatchReadMinCount(count int) ReaderOption { return func(cfg *topicreaderinternal.ReaderConfig) { cfg.DefaultBatchConfig.MinCount = count @@ -113,7 +113,7 @@ func WithBatchReadMinCount(count int) ReaderOption { } // WithBatchReadMaxCount -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithBatchReadMaxCount(count int) ReaderOption { return func(cfg *topicreaderinternal.ReaderConfig) { cfg.DefaultBatchConfig.MaxCount = count @@ -128,7 +128,7 @@ func WithReaderBatchMaxCount(count int) ReaderOption { } // WithMessagesBufferSize -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithMessagesBufferSize(size int) ReaderOption { return WithReaderBufferSizeBytes(size) } @@ -177,7 +177,7 @@ const ( ) // WithCommitMode -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithCommitMode(mode CommitMode) ReaderOption { return WithReaderCommitMode(mode) } @@ -202,7 +202,7 @@ type ( ) // WithGetPartitionStartOffset -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithGetPartitionStartOffset(f GetPartitionStartOffsetFunc) ReaderOption { return WithReaderGetPartitionStartOffset(f) } @@ -217,7 +217,7 @@ func WithReaderGetPartitionStartOffset(f GetPartitionStartOffsetFunc) ReaderOpti // WithReaderTrace set tracer for the topic reader // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental func WithReaderTrace(t trace.Topic) ReaderOption { //nolint:gocritic return func(cfg *topicreaderinternal.ReaderConfig) { cfg.Trace = cfg.Trace.Compose(&t) diff --git a/topic/topicoptions/topicoptions_topic.go b/topic/topicoptions/topicoptions_topic.go index 684c1a04e..f14522866 100644 --- a/topic/topicoptions/topicoptions_topic.go +++ b/topic/topicoptions/topicoptions_topic.go @@ -10,12 +10,12 @@ import ( // TopicOption // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental type TopicOption func(c *topic.Config) // WithTrace defines trace over persqueue client calls // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental func WithTrace(trace trace.Topic, opts ...trace.TopicComposeOption) TopicOption { //nolint:gocritic return func(c *topic.Config) { c.Trace = c.Trace.Compose(&trace, opts...) @@ -28,7 +28,7 @@ func WithTrace(trace trace.Topic, opts ...trace.TopicComposeOption) TopicOption // the client. // If OperationTimeout is zero then no timeout is used. // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental func WithOperationTimeout(operationTimeout time.Duration) TopicOption { return func(c *topic.Config) { config.SetOperationTimeout(&c.Common, operationTimeout) @@ -41,7 +41,7 @@ func WithOperationTimeout(operationTimeout time.Duration) TopicOption { // processing will be continued. // If OperationCancelAfter is zero then no timeout is used. // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental func WithOperationCancelAfter(operationCancelAfter time.Duration) TopicOption { return func(c *topic.Config) { config.SetOperationCancelAfter(&c.Common, operationCancelAfter) diff --git a/topic/topicoptions/topicoptions_writer.go b/topic/topicoptions/topicoptions_writer.go index 912b4e210..8eef6baad 100644 --- a/topic/topicoptions/topicoptions_writer.go +++ b/topic/topicoptions/topicoptions_writer.go @@ -45,7 +45,7 @@ func WithWriterCompressorCount(num int) WriterOption { // WithWriterMaxQueueLen set max len of queue for wait ack // -// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental +// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental func WithWriterMaxQueueLen(num int) WriterOption { return topicwriterinternal.WithMaxQueueLen(num) } @@ -59,7 +59,7 @@ func WithWriterMessageMaxBytesSize(size int) WriterOption { } // WithWriteSessionMeta -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithWriteSessionMeta(meta map[string]string) WriterOption { return WithWriterSessionMeta(meta) } @@ -70,7 +70,7 @@ func WithWriterSessionMeta(meta map[string]string) WriterOption { } // WithProducerID -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithProducerID(producerID string) WriterOption { return WithWriterProducerID(producerID) } @@ -81,7 +81,7 @@ func WithWriterProducerID(producerID string) WriterOption { } // WithPartitionID -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithPartitionID(partitionID int64) WriterOption { return WithWriterPartitionID(partitionID) } @@ -92,7 +92,7 @@ func WithWriterPartitionID(partitionID int64) WriterOption { } // WithSyncWrite -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithSyncWrite(sync bool) WriterOption { return WithWriterWaitServerAck(sync) } @@ -105,16 +105,16 @@ func WithWriterWaitServerAck(wait bool) WriterOption { type ( // WithOnWriterConnectedInfo present information, received from server - // Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated + // Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated WithOnWriterConnectedInfo = topicwriterinternal.PublicWithOnWriterConnectedInfo // OnWriterInitResponseCallback - // Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated + // Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated OnWriterInitResponseCallback = topicwriterinternal.PublicOnWriterInitResponseCallback ) // WithOnWriterFirstConnected set callback f, which will called once - after first successfully init topic writer stream -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithOnWriterFirstConnected(f OnWriterInitResponseCallback) WriterOption { return func(cfg *topicwriterinternal.WriterReconnectorConfig) { cfg.OnWriterInitResponseCallback = f @@ -122,7 +122,7 @@ func WithOnWriterFirstConnected(f OnWriterInitResponseCallback) WriterOption { } // WithCodec -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithCodec(codec topictypes.Codec) WriterOption { return WithWriterCodec(codec) } @@ -133,7 +133,7 @@ func WithWriterCodec(codec topictypes.Codec) WriterOption { } // WithCodecAutoSelect -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func WithCodecAutoSelect() WriterOption { return topicwriterinternal.WithAutoCodec() } diff --git a/topic/topicreader/batch_options.go b/topic/topicreader/batch_options.go index 19085e709..ea03407d9 100644 --- a/topic/topicreader/batch_options.go +++ b/topic/topicreader/batch_options.go @@ -22,7 +22,7 @@ func (count WithBatchMaxCount) Apply( // count must be 1 or greater // it will panic if count < 1 // -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated type WithBatchPreferMinCount int // Apply implements ReadBatchOption interface diff --git a/topic/topicreader/reader.go b/topic/topicreader/reader.go index 2cf27e8b3..71ee67c1c 100644 --- a/topic/topicreader/reader.go +++ b/topic/topicreader/reader.go @@ -75,7 +75,7 @@ func (r *Reader) Commit(ctx context.Context, obj CommitRangeGetter) error { type CommitRangeGetter = topicreaderinternal.PublicCommitRangeGetter // ReadMessageBatch -// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated +// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated func (r *Reader) ReadMessageBatch(ctx context.Context, opts ...ReadBatchOption) (*Batch, error) { if err := r.inCall(&r.readInFlyght); err != nil { return nil, err diff --git a/trace/coordination.go b/trace/coordination.go index 9510e86b6..093bce33f 100644 --- a/trace/coordination.go +++ b/trace/coordination.go @@ -15,53 +15,53 @@ type ( // Coordination specified trace of coordination client activity. // gtrace:gen Coordination struct { - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnNew func(CoordinationNewStartInfo) func(CoordinationNewDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnCreateNode func(CoordinationCreateNodeStartInfo) func(CoordinationCreateNodeDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnAlterNode func(CoordinationAlterNodeStartInfo) func(CoordinationAlterNodeDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnDropNode func(CoordinationDropNodeStartInfo) func(CoordinationDropNodeDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnDescribeNode func(CoordinationDescribeNodeStartInfo) func(CoordinationDescribeNodeDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSession func(CoordinationSessionStartInfo) func(CoordinationSessionDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnClose func(CoordinationCloseStartInfo) func(CoordinationCloseDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnStreamNew func(CoordinationStreamNewStartInfo) func(CoordinationStreamNewDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionStarted func(CoordinationSessionStartedInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionStartTimeout func(CoordinationSessionStartTimeoutInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionKeepAliveTimeout func(CoordinationSessionKeepAliveTimeoutInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionStopped func(CoordinationSessionStoppedInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionStopTimeout func(CoordinationSessionStopTimeoutInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionClientTimeout func(CoordinationSessionClientTimeoutInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionServerExpire func(CoordinationSessionServerExpireInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionServerError func(CoordinationSessionServerErrorInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionReceive func(CoordinationSessionReceiveStartInfo) func(CoordinationSessionReceiveDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionReceiveUnexpected func(CoordinationSessionReceiveUnexpectedInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionStop func(CoordinationSessionStopInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionStart func(CoordinationSessionStartStartInfo) func(CoordinationSessionStartDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionSend func(CoordinationSessionSendStartInfo) func(CoordinationSessionSendDoneInfo) } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationNewStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -70,9 +70,9 @@ type ( Context *context.Context Call call } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationNewDoneInfo struct{} - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationCloseStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -81,11 +81,11 @@ type ( Context *context.Context Call call } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationCloseDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationCreateNodeStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -96,11 +96,11 @@ type ( Path string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationCreateNodeDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationAlterNodeStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -111,11 +111,11 @@ type ( Path string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationAlterNodeDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationDropNodeStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -126,11 +126,11 @@ type ( Path string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationDropNodeDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationDescribeNodeStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -141,11 +141,11 @@ type ( Path string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationDescribeNodeDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -156,78 +156,78 @@ type ( Path string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationStreamNewStartInfo struct{} - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationStreamNewDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionStartedInfo struct { SessionID uint64 ExpectedSessionID uint64 } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionStartTimeoutInfo struct { Timeout time.Duration } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionKeepAliveTimeoutInfo struct { LastGoodResponseTime time.Time Timeout time.Duration } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionStoppedInfo struct { SessionID uint64 ExpectedSessionID uint64 } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionStopTimeoutInfo struct { Timeout time.Duration } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionClientTimeoutInfo struct { LastGoodResponseTime time.Time Timeout time.Duration } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionServerExpireInfo struct { Failure *Ydb_Coordination.SessionResponse_Failure } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionServerErrorInfo struct { Failure *Ydb_Coordination.SessionResponse_Failure } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionReceiveStartInfo struct{} - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionReceiveDoneInfo struct { Response *Ydb_Coordination.SessionResponse Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionReceiveUnexpectedInfo struct { Response *Ydb_Coordination.SessionResponse } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionStartStartInfo struct{} - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionStartDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionStopInfo struct { SessionID uint64 } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionSendStartInfo struct { Request *Ydb_Coordination.SessionRequest } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable CoordinationSessionSendDoneInfo struct { Error error } diff --git a/trace/discovery.go b/trace/discovery.go index 1efe86315..4b3c68f25 100644 --- a/trace/discovery.go +++ b/trace/discovery.go @@ -9,14 +9,14 @@ import "context" type ( // Discovery specified trace of discovery client activity. // gtrace:gen - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable Discovery struct { - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnDiscover func(DiscoveryDiscoverStartInfo) func(DiscoveryDiscoverDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnWhoAmI func(DiscoveryWhoAmIStartInfo) func(DiscoveryWhoAmIDoneInfo) } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DiscoveryDiscoverStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -27,13 +27,13 @@ type ( Address string Database string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DiscoveryDiscoverDoneInfo struct { Location string Endpoints []EndpointInfo Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DiscoveryWhoAmIStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. diff --git a/trace/driver.go b/trace/driver.go index d163301b4..de12bf247 100644 --- a/trace/driver.go +++ b/trace/driver.go @@ -14,36 +14,36 @@ import ( type ( // Driver specified trace of common driver activity. // gtrace:gen - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable Driver struct { // Driver runtime events - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnInit func(DriverInitStartInfo) func(DriverInitDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnWith func(DriverWithStartInfo) func(DriverWithDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnClose func(DriverCloseStartInfo) func(DriverCloseDoneInfo) // Pool of connections - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnPoolNew func(DriverConnPoolNewStartInfo) func(DriverConnPoolNewDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnPoolRelease func(DriverConnPoolReleaseStartInfo) func(DriverConnPoolReleaseDoneInfo) // Resolver events - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnResolve func(DriverResolveStartInfo) func(DriverResolveDoneInfo) // Conn events - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnConnStateChange func(DriverConnStateChangeStartInfo) func(DriverConnStateChangeDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnConnInvoke func(DriverConnInvokeStartInfo) func(DriverConnInvokeDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnConnNewStream func(DriverConnNewStreamStartInfo) func(DriverConnNewStreamDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnConnStreamRecvMsg func(DriverConnStreamRecvMsgStartInfo) func(DriverConnStreamRecvMsgDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnConnStreamSendMsg func(DriverConnStreamSendMsgStartInfo) func(DriverConnStreamSendMsgDoneInfo) OnConnStreamCloseSend func(DriverConnStreamCloseSendStartInfo) func(DriverConnStreamCloseSendDoneInfo) OnConnDial func(DriverConnDialStartInfo) func(DriverConnDialDoneInfo) @@ -129,7 +129,7 @@ type EndpointInfo interface { } type ( - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverConnStateChangeStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -140,21 +140,21 @@ type ( Endpoint EndpointInfo State ConnState } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverConnStateChangeDoneInfo struct { State ConnState } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverResolveStartInfo struct { Call call Target string Resolved []string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverResolveDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverBalancerUpdateStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -164,14 +164,14 @@ type ( Call call NeedLocalDC bool } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverBalancerUpdateDoneInfo struct { Endpoints []EndpointInfo Added []EndpointInfo Dropped []EndpointInfo LocalDC string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverBalancerClusterDiscoveryAttemptStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -181,33 +181,33 @@ type ( Call call Address string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverBalancerClusterDiscoveryAttemptDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverNetReadStartInfo struct { Call call Address string Buffer int } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverNetReadDoneInfo struct { Received int Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverNetWriteStartInfo struct { Call call Address string Bytes int } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverNetWriteDoneInfo struct { Sent int Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverNetDialStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -217,20 +217,20 @@ type ( Call call Address string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverNetDialDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverNetCloseStartInfo struct { Call call Address string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverNetCloseDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverConnTakeStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -240,11 +240,11 @@ type ( Call call Endpoint EndpointInfo } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverConnTakeDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverConnDialStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -254,7 +254,7 @@ type ( Call call Endpoint EndpointInfo } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DriverConnDialDoneInfo struct { Error error } diff --git a/trace/query.go b/trace/query.go index 156f5f4a8..e8924cac7 100644 --- a/trace/query.go +++ b/trace/query.go @@ -20,42 +20,42 @@ type ( // Query specified trace of retry call activity. // gtrace:gen - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable Query struct { - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnNew func(QueryNewStartInfo) func(info QueryNewDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnClose func(QueryCloseStartInfo) func(info QueryCloseDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnPoolNew func(QueryPoolNewStartInfo) func(QueryPoolNewDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnPoolClose func(QueryPoolCloseStartInfo) func(QueryPoolCloseDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnPoolTry func(QueryPoolTryStartInfo) func(QueryPoolTryDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnPoolWith func(QueryPoolWithStartInfo) func(QueryPoolWithDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnPoolPut func(QueryPoolPutStartInfo) func(QueryPoolPutDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnPoolGet func(QueryPoolGetStartInfo) func(QueryPoolGetDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnPoolChange func(QueryPoolChange) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnDo func(QueryDoStartInfo) func(QueryDoDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnDoTx func(QueryDoTxStartInfo) func(QueryDoTxDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionCreate func(QuerySessionCreateStartInfo) func(info QuerySessionCreateDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionAttach func(QuerySessionAttachStartInfo) func(info QuerySessionAttachDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionDelete func(QuerySessionDeleteStartInfo) func(info QuerySessionDeleteDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionExecute func(QuerySessionExecuteStartInfo) func(info QuerySessionExecuteDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionBegin func(QuerySessionBeginStartInfo) func(info QuerySessionBeginDoneInfo) OnTxExecute func(QueryTxExecuteStartInfo) func(info QueryTxExecuteDoneInfo) OnResultNew func(QueryResultNewStartInfo) func(info QueryResultNewDoneInfo) @@ -68,7 +68,7 @@ type ( OnRowScanStruct func(QueryRowScanStructStartInfo) func(info QueryRowScanStructDoneInfo) } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable QueryDoStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -77,7 +77,7 @@ type ( Context *context.Context Call call } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable QueryDoDoneInfo struct { Attempts int Error error diff --git a/trace/ratelimiter.go b/trace/ratelimiter.go index a83c258a0..5d7f1f5fc 100644 --- a/trace/ratelimiter.go +++ b/trace/ratelimiter.go @@ -7,6 +7,6 @@ package trace type ( // Ratelimiter specified trace of ratelimiter client activity. // gtrace:gen - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable Ratelimiter struct{} ) diff --git a/trace/retry.go b/trace/retry.go index cc69a4bed..8863b7eb8 100644 --- a/trace/retry.go +++ b/trace/retry.go @@ -11,12 +11,12 @@ import ( type ( // Retry specified trace of retry call activity. // gtrace:gen - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable Retry struct { - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnRetry func(RetryLoopStartInfo) func(RetryLoopDoneInfo) } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable RetryLoopStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -30,7 +30,7 @@ type ( NestedCall bool // a sign for detect Retry calls inside head Retry } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable RetryLoopDoneInfo struct { Attempts int Error error diff --git a/trace/scheme.go b/trace/scheme.go index acb8e12f2..314320089 100644 --- a/trace/scheme.go +++ b/trace/scheme.go @@ -11,21 +11,21 @@ import ( type ( // Scheme specified trace of scheme client activity. // gtrace:gen - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable Scheme struct { - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnListDirectory func(SchemeListDirectoryStartInfo) func(SchemeListDirectoryDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnDescribePath func(SchemeDescribePathStartInfo) func(SchemeDescribePathDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnMakeDirectory func(SchemeMakeDirectoryStartInfo) func(SchemeMakeDirectoryDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnRemoveDirectory func(SchemeRemoveDirectoryStartInfo) func(SchemeRemoveDirectoryDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnModifyPermissions func(SchemeModifyPermissionsStartInfo) func(SchemeModifyPermissionsDoneInfo) } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable SchemeListDirectoryStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -34,11 +34,11 @@ type ( Context *context.Context Call call } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable SchemeListDirectoryDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable SchemeDescribePathStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -48,12 +48,12 @@ type ( Call call Path string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable SchemeDescribePathDoneInfo struct { EntryType string Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable SchemeMakeDirectoryStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -63,11 +63,11 @@ type ( Call call Path string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable SchemeMakeDirectoryDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable SchemeRemoveDirectoryStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -77,11 +77,11 @@ type ( Call call Path string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable SchemeRemoveDirectoryDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable SchemeModifyPermissionsStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -91,7 +91,7 @@ type ( Call call Path string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable SchemeModifyPermissionsDoneInfo struct { Error error } diff --git a/trace/scripting.go b/trace/scripting.go index 05e6554e2..6d5352694 100644 --- a/trace/scripting.go +++ b/trace/scripting.go @@ -11,11 +11,11 @@ import ( type ( // Scripting specified trace of scripting client activity. // gtrace:gen - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable Scripting struct { - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnExecute func(ScriptingExecuteStartInfo) func(ScriptingExecuteDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnStreamExecute func( ScriptingStreamExecuteStartInfo, ) func( @@ -23,9 +23,9 @@ type ( ) func( ScriptingStreamExecuteDoneInfo, ) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnExplain func(ScriptingExplainStartInfo) func(ScriptingExplainDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnClose func(ScriptingCloseStartInfo) func(ScriptingCloseDoneInfo) } scriptingQueryParameters interface { @@ -38,7 +38,7 @@ type ( scriptingResultErr ResultSetCount() int } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable ScriptingExecuteStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -49,12 +49,12 @@ type ( Query string Parameters scriptingQueryParameters } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable ScriptingExecuteDoneInfo struct { Result scriptingResult Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable ScriptingStreamExecuteStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -65,15 +65,15 @@ type ( Query string Parameters scriptingQueryParameters } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable ScriptingStreamExecuteIntermediateInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable ScriptingStreamExecuteDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable ScriptingExplainStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -83,12 +83,12 @@ type ( Call call Query string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable ScriptingExplainDoneInfo struct { Plan string Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable ScriptingCloseStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -97,7 +97,7 @@ type ( Context *context.Context Call call } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable ScriptingCloseDoneInfo struct { Error error } diff --git a/trace/sql.go b/trace/sql.go index 70d013b1e..49fca95be 100644 --- a/trace/sql.go +++ b/trace/sql.go @@ -10,49 +10,49 @@ import ( type ( // DatabaseSQL specified trace of `database/sql` call activity. // gtrace:gen - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DatabaseSQL struct { - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnConnectorConnect func(DatabaseSQLConnectorConnectStartInfo) func(DatabaseSQLConnectorConnectDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnConnPing func(DatabaseSQLConnPingStartInfo) func(DatabaseSQLConnPingDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnConnPrepare func(DatabaseSQLConnPrepareStartInfo) func(DatabaseSQLConnPrepareDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnConnClose func(DatabaseSQLConnCloseStartInfo) func(DatabaseSQLConnCloseDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnConnBegin func(DatabaseSQLConnBeginStartInfo) func(DatabaseSQLConnBeginDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnConnQuery func(DatabaseSQLConnQueryStartInfo) func(DatabaseSQLConnQueryDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnConnExec func(DatabaseSQLConnExecStartInfo) func(DatabaseSQLConnExecDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnConnIsTableExists func(DatabaseSQLConnIsTableExistsStartInfo) func(DatabaseSQLConnIsTableExistsDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnTxQuery func(DatabaseSQLTxQueryStartInfo) func(DatabaseSQLTxQueryDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnTxExec func(DatabaseSQLTxExecStartInfo) func(DatabaseSQLTxExecDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnTxPrepare func(DatabaseSQLTxPrepareStartInfo) func(DatabaseSQLTxPrepareDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnTxCommit func(DatabaseSQLTxCommitStartInfo) func(DatabaseSQLTxCommitDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnTxRollback func(DatabaseSQLTxRollbackStartInfo) func(DatabaseSQLTxRollbackDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnStmtQuery func(DatabaseSQLStmtQueryStartInfo) func(DatabaseSQLStmtQueryDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnStmtExec func(DatabaseSQLStmtExecStartInfo) func(DatabaseSQLStmtExecDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnStmtClose func(DatabaseSQLStmtCloseStartInfo) func(DatabaseSQLStmtCloseDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnDoTx func(DatabaseSQLDoTxStartInfo) func(DatabaseSQLDoTxIntermediateInfo) func(DatabaseSQLDoTxDoneInfo) } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DatabaseSQLConnectorConnectStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -61,12 +61,12 @@ type ( Context *context.Context Call call } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DatabaseSQLConnectorConnectDoneInfo struct { Error error Session tableSessionInfo } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DatabaseSQLConnPingStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -75,11 +75,11 @@ type ( Context *context.Context Call call } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DatabaseSQLConnPingDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DatabaseSQLConnPrepareStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -89,11 +89,11 @@ type ( Call call Query string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DatabaseSQLConnPrepareDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DatabaseSQLTxPrepareStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -105,11 +105,11 @@ type ( Tx tableTransactionInfo Query string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DatabaseSQLTxPrepareDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DatabaseSQLConnCloseStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -118,11 +118,11 @@ type ( Context *context.Context Call call } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DatabaseSQLConnCloseDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DatabaseSQLConnBeginStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -131,12 +131,12 @@ type ( Context *context.Context Call call } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DatabaseSQLConnBeginDoneInfo struct { Tx tableTransactionInfo Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DatabaseSQLConnQueryStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -149,7 +149,7 @@ type ( Idempotent bool IdleTime time.Duration } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable DatabaseSQLConnQueryDoneInfo struct { Error error } diff --git a/trace/table.go b/trace/table.go index b623649bf..39aa39610 100644 --- a/trace/table.go +++ b/trace/table.go @@ -12,42 +12,42 @@ import ( type ( // Table specified trace of table client activity. // gtrace:gen - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable Table struct { // Client events - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnInit func(TableInitStartInfo) func(TableInitDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnClose func(TableCloseStartInfo) func(TableCloseDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnDo func(TableDoStartInfo) func(TableDoDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnDoTx func(TableDoTxStartInfo) func(TableDoTxDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnCreateSession func(TableCreateSessionStartInfo) func(TableCreateSessionDoneInfo) // Session events - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionNew func(TableSessionNewStartInfo) func(TableSessionNewDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionDelete func(TableSessionDeleteStartInfo) func(TableSessionDeleteDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionKeepAlive func(TableKeepAliveStartInfo) func(TableKeepAliveDoneInfo) // Query events - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionBulkUpsert func(TableBulkUpsertStartInfo) func(TableBulkUpsertDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionQueryPrepare func(TablePrepareDataQueryStartInfo) func(TablePrepareDataQueryDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionQueryExecute func(TableExecuteDataQueryStartInfo) func(TableExecuteDataQueryDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionQueryExplain func(TableExplainQueryStartInfo) func(TableExplainQueryDoneInfo) // Stream events - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionQueryStreamExecute func(TableSessionQueryStreamExecuteStartInfo) func(TableSessionQueryStreamExecuteDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnSessionQueryStreamRead func(TableSessionQueryStreamReadStartInfo) func(TableSessionQueryStreamReadDoneInfo) // Transaction events - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnTxBegin func(TableTxBeginStartInfo) func( TableTxBeginDoneInfo, ) @@ -100,7 +100,7 @@ type ( tableResultErr ResultSetCount() int } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TableSessionNewStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -109,12 +109,12 @@ type ( Context *context.Context Call call } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TableSessionNewDoneInfo struct { Session tableSessionInfo Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TableKeepAliveStartInfo struct { // Context make available context in trace callback function. // Pointer to context provide replacement of context in trace callback function. @@ -371,7 +371,7 @@ type ( Call call Session tableSessionInfo } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TablePoolSessionCloseDoneInfo struct{} TablePoolSessionAddInfo struct { Session tableSessionInfo diff --git a/trace/topic.go b/trace/topic.go index 8095df235..fd5eab7a9 100644 --- a/trace/topic.go +++ b/trace/topic.go @@ -11,29 +11,29 @@ import ( type ( // Topic specified trace of topic reader client activity. // gtrace:gen - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable Topic struct { // TopicReaderCustomerEvents - upper level, on bridge with customer code - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderStart func(info TopicReaderStartInfo) // TopicReaderStreamLifeCycleEvents - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderReconnect func(TopicReaderReconnectStartInfo) func(TopicReaderReconnectDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderReconnectRequest func(TopicReaderReconnectRequestInfo) // TopicReaderPartitionEvents - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderPartitionReadStartResponse func( TopicReaderPartitionReadStartResponseStartInfo, ) func( TopicReaderPartitionReadStartResponseDoneInfo, ) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderPartitionReadStopResponse func( TopicReaderPartitionReadStopResponseStartInfo, ) func( @@ -42,19 +42,19 @@ type ( // TopicReaderStreamEvents - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderCommit func(TopicReaderCommitStartInfo) func(TopicReaderCommitDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderSendCommitMessage func(TopicReaderSendCommitMessageStartInfo) func(TopicReaderSendCommitMessageDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderCommittedNotify func(TopicReaderCommittedNotifyInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderClose func(TopicReaderCloseStartInfo) func(TopicReaderCloseDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderInit func(TopicReaderInitStartInfo) func(TopicReaderInitDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderError func(TopicReaderErrorInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderUpdateToken func( OnReadUpdateTokenStartInfo, ) func( @@ -65,22 +65,22 @@ type ( // TopicReaderMessageEvents - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderSentDataRequest func(TopicReaderSentDataRequestInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderReceiveDataResponse func(TopicReaderReceiveDataResponseStartInfo) func(TopicReaderReceiveDataResponseDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderReadMessages func(TopicReaderReadMessagesStartInfo) func(TopicReaderReadMessagesDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReaderUnknownGrpcMessage func(OnReadUnknownGrpcMessageInfo) // TopicWriterStreamLifeCycleEvents - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnWriterReconnect func(TopicWriterReconnectStartInfo) func(TopicWriterReconnectDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnWriterInitStream func(TopicWriterInitStreamStartInfo) func(TopicWriterInitStreamDoneInfo) - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnWriterClose func(TopicWriterCloseStartInfo) func(TopicWriterCloseDoneInfo) // TopicWriterStreamEvents @@ -90,7 +90,7 @@ type ( OnWriterReadUnknownGrpcMessage func(TopicOnWriterReadUnknownGrpcMessageInfo) } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderPartitionReadStartResponseStartInfo struct { ReaderConnectionID string PartitionContext context.Context @@ -99,20 +99,20 @@ type ( PartitionSessionID int64 } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderStartInfo struct { ReaderID int64 Consumer string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderPartitionReadStartResponseDoneInfo struct { ReadOffset *int64 CommitOffset *int64 Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderPartitionReadStopResponseStartInfo struct { ReaderConnectionID string PartitionContext context.Context @@ -123,17 +123,17 @@ type ( Graceful bool } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderPartitionReadStopResponseDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderSendCommitMessageStartInfo struct { CommitsInfo TopicReaderStreamSendCommitMessageStartMessageInfo } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderStreamCommitInfo struct { Topic string PartitionID int64 @@ -146,12 +146,12 @@ type ( GetCommitsInfo() []TopicReaderStreamCommitInfo } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderSendCommitMessageDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderCommittedNotifyInfo struct { ReaderConnectionID string Topic string @@ -160,20 +160,20 @@ type ( CommittedOffset int64 } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderErrorInfo struct { ReaderConnectionID string Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderSentDataRequestInfo struct { ReaderConnectionID string RequestBytes int LocalBufferSizeAfterSent int } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderReceiveDataResponseStartInfo struct { ReaderConnectionID string LocalBufferSizeAfterReceive int @@ -185,12 +185,12 @@ type ( GetPartitionBatchMessagesCounts() (partitionCount, batchCount, messagesCount int) } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderReceiveDataResponseDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderReadMessagesStartInfo struct { RequestContext context.Context MinCount int @@ -198,7 +198,7 @@ type ( FreeBufferCapacity int } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderReadMessagesDoneInfo struct { MessagesCount int Topic string @@ -210,29 +210,29 @@ type ( Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReadUnknownGrpcMessageInfo struct { ReaderConnectionID string Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderReconnectStartInfo struct { Reason error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderReconnectDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderReconnectRequestInfo struct { Reason error WasSent bool } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderCommitStartInfo struct { RequestContext context.Context Topic string @@ -242,23 +242,23 @@ type ( EndOffset int64 } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderCommitDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderCloseStartInfo struct { ReaderConnectionID string CloseReason error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderCloseDoneInfo struct { CloseError error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderInitStartInfo struct { PreInitReaderConnectionID string InitRequestInfo TopicReadStreamInitRequestInfo @@ -269,24 +269,24 @@ type ( GetTopics() []string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicReaderInitDoneInfo struct { ReaderConnectionID string Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReadUpdateTokenStartInfo struct { ReaderConnectionID string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReadUpdateTokenMiddleTokenReceivedInfo struct { TokenLen int Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable OnReadStreamUpdateTokenDoneInfo struct { Error error } @@ -295,7 +295,7 @@ type ( //////////// TopicWriter //////////// - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicWriterReconnectStartInfo struct { WriterInstanceID string Topic string @@ -303,31 +303,31 @@ type ( Attempt int } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicWriterReconnectDoneInfo struct { Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicWriterInitStreamStartInfo struct { WriterInstanceID string Topic string ProducerID string } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicWriterInitStreamDoneInfo struct { SessionID string Error error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicWriterCloseStartInfo struct { WriterInstanceID string Reason error } - // Unstable: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#unstable + // Unstable: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#unstable TopicWriterCloseDoneInfo struct { Error error }