This is an automated email from the ASF dual-hosted git repository.
hanahmily pushed a change to branch chore/mcp-vendor-update
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
discard e8d8388d9 chore(mcp): exclude mcp-licenses dir from license-eye header
check
discard 664901fd5 chore(mcp): fix stale gitignore entry for license artifacts
discard 3df8de28e chore(mcp): update license file for bumped dependencies
discard a69d1358a chore(mcp): bump npm dependencies
add 9aeec6f26 Refactor migration tool and support stream catalog data
(#1174)
add d0308d493 chore(mcp): bump npm dependencies
add 136cee6be chore(mcp): update license file for bumped dependencies
add 71531ac62 chore(mcp): fix stale gitignore entry for license artifacts
add fa20fbe27 chore(mcp): exclude mcp-licenses dir from license-eye header
check
add 5967c7ec3 chore(ui): bump npm dependencies
add 49fe73a59 chore(ui): update license file for bumped dependencies
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (e8d8388d9)
\
N -- N -- N refs/heads/chore/mcp-vendor-update (49fe73a59)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
CHANGES.md | 2 +-
banyand/cmd/migration/MIGRATION.md | 163 ++--
banyand/cmd/migration/README.md | 49 +-
banyand/cmd/migration/analyze.go | 286 ++++---
banyand/cmd/migration/copy.go | 65 +-
banyand/cmd/migration/example/plan-backup.yaml | 20 +-
banyand/cmd/migration/example/plan-live.yaml | 67 +-
banyand/cmd/migration/example/runner-pod.yaml | 19 +-
banyand/cmd/migration/main.go | 29 +-
banyand/cmd/migration/plan.go | 285 +------
banyand/cmd/migration/scripts/verify-data.sh | 77 +-
banyand/cmd/migration/verify.go | 186 ++++-
banyand/internal/migration/classify.go | 84 ++
banyand/internal/migration/classify_test.go | 178 ++++
banyand/internal/migration/executor.go | 78 ++
banyand/internal/migration/fsutil.go | 122 +++
banyand/internal/migration/fsutil_test.go | 74 ++
.../internal/migration/migration_measure_test.go | 266 ++++++
.../internal/migration/migration_stream_test.go | 581 +++++++++++++
banyand/internal/migration/orchestrator.go | 314 +++++++
banyand/internal/migration/orchestrator_test.go | 79 ++
banyand/{cmd => internal}/migration/plan.go | 131 +--
banyand/{cmd => internal}/migration/plan_test.go | 18 +-
banyand/internal/migration/schemaroot.go | 98 +++
banyand/internal/migration/srcroots.go | 91 +++
banyand/internal/migration/unionsidx.go | 332 ++++++++
.../migration/unionsidx_test.go} | 96 +--
banyand/measure/migration_analyze.go | 7 -
banyand/measure/migration_copy.go | 881 ++------------------
banyand/measure/migration_copy_test.go | 245 ------
banyand/measure/migration_e2e_test.go | 43 +-
banyand/measure/migration_executor.go | 153 ++++
banyand/measure/migration_schema.go | 404 +--------
banyand/measure/migration_schema_test.go | 91 +--
banyand/measure/migration_verify.go | 143 +---
banyand/metadata/schema/property/client.go | 6 +-
banyand/metadata/schema/property/converter.go | 5 +-
banyand/metadata/schema/property/converter_test.go | 14 +-
banyand/metadata/schema/reader/loaders.go | 184 +++++
banyand/metadata/schema/reader/reader.go | 213 +++++
banyand/metadata/schema/reader/reader_test.go | 209 +++++
banyand/stream/migration_analyze.go | 359 ++++++++
banyand/stream/migration_copy.go | 901 +++++++++++++++++++++
banyand/stream/migration_copy_test.go | 349 ++++++++
banyand/stream/migration_element_index.go | 767 ++++++++++++++++++
banyand/stream/migration_executor.go | 150 ++++
banyand/stream/migration_schema.go | 150 ++++
banyand/stream/migration_slowpath_test.go | 770 ++++++++++++++++++
banyand/stream/migration_verify.go | 327 ++++++++
pkg/index/inverted/query.go | 11 +
ui/LICENSE | 64 +-
ui/package-lock.json | 584 ++++++-------
52 files changed, 8147 insertions(+), 2673 deletions(-)
create mode 100644 banyand/internal/migration/classify.go
create mode 100644 banyand/internal/migration/classify_test.go
create mode 100644 banyand/internal/migration/executor.go
create mode 100644 banyand/internal/migration/fsutil.go
create mode 100644 banyand/internal/migration/fsutil_test.go
create mode 100644 banyand/internal/migration/migration_measure_test.go
create mode 100644 banyand/internal/migration/migration_stream_test.go
create mode 100644 banyand/internal/migration/orchestrator.go
create mode 100644 banyand/internal/migration/orchestrator_test.go
copy banyand/{cmd => internal}/migration/plan.go (69%)
rename banyand/{cmd => internal}/migration/plan_test.go (93%)
create mode 100644 banyand/internal/migration/schemaroot.go
create mode 100644 banyand/internal/migration/srcroots.go
create mode 100644 banyand/internal/migration/unionsidx.go
copy banyand/{measure/migration_copy_test.go =>
internal/migration/unionsidx_test.go} (72%)
create mode 100644 banyand/measure/migration_executor.go
create mode 100644 banyand/metadata/schema/reader/loaders.go
create mode 100644 banyand/metadata/schema/reader/reader.go
create mode 100644 banyand/metadata/schema/reader/reader_test.go
create mode 100644 banyand/stream/migration_analyze.go
create mode 100644 banyand/stream/migration_copy.go
create mode 100644 banyand/stream/migration_copy_test.go
create mode 100644 banyand/stream/migration_element_index.go
create mode 100644 banyand/stream/migration_executor.go
create mode 100644 banyand/stream/migration_schema.go
create mode 100644 banyand/stream/migration_slowpath_test.go
create mode 100644 banyand/stream/migration_verify.go