This is an automated email from the ASF dual-hosted git repository. hanahmily pushed a change to branch lifecyc-sync in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
from ba62dfe2 Update changes add 3267b041 Support background property repair (#712) add de98541d Merge branch 'main' into lifecyc-sync No new revisions were added by this update. Summary of changes: api/proto/banyandb/property/v1/gossip.proto | 5 +- api/proto/banyandb/property/v1/repair.proto | 105 ++++ banyand/property/db.go | 33 +- banyand/property/gossip/client.go | 17 +- banyand/property/gossip/message.go | 12 +- banyand/property/gossip/server.go | 89 ++- banyand/property/gossip/service.go | 62 +- banyand/property/gossip/service_test.go | 19 +- banyand/property/repair.go | 303 ++++++++-- banyand/property/repair_gossip.go | 891 ++++++++++++++++++++++++++++ banyand/property/repair_gossip_test.go | 581 ++++++++++++++++++ banyand/property/repair_test.go | 26 +- banyand/property/service.go | 23 +- banyand/property/shard.go | 32 +- banyand/property/shard_test.go | 20 +- docs/api-reference.md | 217 +++++++ docs/concept/property-repair.md | 25 +- pkg/index/inverted/query.go | 19 + 18 files changed, 2306 insertions(+), 173 deletions(-) create mode 100644 api/proto/banyandb/property/v1/repair.proto create mode 100644 banyand/property/repair_gossip.go create mode 100644 banyand/property/repair_gossip_test.go