Skip to content

Commit f32f269

Browse files
authored
enhance: Implement new FlushAllMessage and refactor flush all (milvus-io#45920)
This PR: 1. Define and implement the new FlushAllMessage. 2. Refactor FlushAll to flush the entire cluster. issue: milvus-io#45919 --------- Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
1 parent 8780e12 commit f32f269

52 files changed

Lines changed: 4743 additions & 5224 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

client/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,13 @@ require (
66
github.com/blang/semver/v4 v4.0.0
77
github.com/cockroachdb/errors v1.9.1
88
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
9-
github.com/milvus-io/milvus-proto/go-api/v2 v2.6.6-0.20251124145901-0b96e4c8af45
9+
github.com/milvus-io/milvus-proto/go-api/v2 v2.6.6-0.20251210030907-6087c9c0bad6
1010
github.com/milvus-io/milvus/pkg/v2 v2.6.4-0.20251104142533-a2ce70d25256
1111
github.com/quasilyte/go-ruleguard/dsl v0.3.23
1212
github.com/samber/lo v1.27.0
1313
github.com/stretchr/testify v1.11.1
1414
github.com/tidwall/gjson v1.17.1
15-
go.opentelemetry.io/otel v1.34.0
1615
go.uber.org/atomic v1.11.0
17-
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842
1816
google.golang.org/grpc v1.71.0
1917
google.golang.org/protobuf v1.36.5
2018
)
@@ -94,6 +92,7 @@ require (
9492
go.etcd.io/etcd/server/v3 v3.5.5 // indirect
9593
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
9694
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect
95+
go.opentelemetry.io/otel v1.34.0 // indirect
9796
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.20.0 // indirect
9897
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.20.0 // indirect
9998
go.opentelemetry.io/otel/metric v1.34.0 // indirect
@@ -104,6 +103,7 @@ require (
104103
go.uber.org/multierr v1.11.0 // indirect
105104
go.uber.org/zap v1.27.0 // indirect
106105
golang.org/x/crypto v0.45.0 // indirect
106+
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
107107
golang.org/x/net v0.47.0 // indirect
108108
golang.org/x/sync v0.18.0 // indirect
109109
golang.org/x/sys v0.38.0 // indirect

client/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,8 +330,8 @@ github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5
330330
github.com/mediocregopher/radix/v3 v3.4.2/go.mod h1:8FL3F6UQRXHXIBSPUs5h0RybMF8i4n7wVopoX3x7Bv8=
331331
github.com/microcosm-cc/bluemonday v1.0.2/go.mod h1:iVP4YcDBq+n/5fb23BhYFvIMq/leAFZyRl6bYmGDlGc=
332332
github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
333-
github.com/milvus-io/milvus-proto/go-api/v2 v2.6.6-0.20251124145901-0b96e4c8af45 h1:TMUhlirMCH2zgJD+qClP5EP0yuFl1VrE4j+0fiRSuJU=
334-
github.com/milvus-io/milvus-proto/go-api/v2 v2.6.6-0.20251124145901-0b96e4c8af45/go.mod h1:/6UT4zZl6awVeXLeE7UGDWZvXj3IWkRsh3mqsn0DiAs=
333+
github.com/milvus-io/milvus-proto/go-api/v2 v2.6.6-0.20251210030907-6087c9c0bad6 h1:TeHfsRCdjbX30xS7Npcb+POQXd460+AjmXYmmTuxyBA=
334+
github.com/milvus-io/milvus-proto/go-api/v2 v2.6.6-0.20251210030907-6087c9c0bad6/go.mod h1:/6UT4zZl6awVeXLeE7UGDWZvXj3IWkRsh3mqsn0DiAs=
335335
github.com/milvus-io/milvus/pkg/v2 v2.6.4-0.20251104142533-a2ce70d25256 h1:M2waty0w2k4YT2HHzJk3fx6EFPD4DKxNJatitIV+gGU=
336336
github.com/milvus-io/milvus/pkg/v2 v2.6.4-0.20251104142533-a2ce70d25256/go.mod h1:HT6Wxahwj/l8+i+D/C3iwDzCjDa36U9gyVw6CjjK4pE=
337337
github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc=

0 commit comments

Comments
 (0)