This is an automated email from the ASF dual-hosted git repository.

hanahmily pushed a change to branch feat/segmeta
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git


    from d20527794 chore
     add 2890d8e0a Enhance group deletion integration tests (#1039)
     add 5dedaa1aa Add documentation for Trace model (#1040)
     add 01858b25e fix(ui): correct query editor refresh/reset behavior and 
BydbQL keyword highlighting (#1045)
     add ae3de0997 fix take snapshot error when no data in the segment (#1046)
     add fbfa1cec7 Merge branch 'main' into feat/segmeta

No new revisions were added by this update.

Summary of changes:
 CHANGES.md                                         |   2 +
 banyand/internal/storage/disk_monitor_test.go      |   2 +
 banyand/internal/storage/rotation_test.go          |  21 +
 banyand/internal/storage/storage.go                |   4 +-
 banyand/internal/storage/tsdb.go                   |  37 +-
 banyand/internal/storage/tsdb_test.go              |  50 +++
 banyand/internal/wqueue/wqueue.go                  |  16 +-
 banyand/measure/metadata.go                        |  29 +-
 banyand/measure/metrics.go                         |   7 +-
 banyand/measure/snapshot.go                        |  13 +-
 banyand/measure/snapshot_test.go                   |  40 ++
 banyand/observability/bypass.go                    |   2 +
 banyand/observability/services/factory.go          |   9 +
 banyand/observability/type.go                      |   1 +
 banyand/stream/metadata.go                         |   4 +-
 banyand/stream/metrics.go                          |   4 +-
 banyand/stream/snapshot.go                         |  24 +-
 banyand/stream/snapshot_test.go                    |  41 ++
 banyand/trace/metadata.go                          |   4 +-
 banyand/trace/metrics.go                           |   4 +-
 banyand/trace/snapshot.go                          |  26 +-
 banyand/trace/snapshot_test.go                     |  46 +++
 dist/LICENSE                                       |   4 +-
 docs/clients.md                                    |   7 +-
 docs/concept/clustering.md                         |  10 +-
 docs/concept/data-model.md                         | 230 +++++++----
 docs/concept/rotation.md                           |  39 +-
 docs/concept/tsdb.md                               |  28 +-
 docs/installation/kubernetes.md                    |  35 +-
 docs/interacting/bydbctl/analyze.md                |   6 +-
 docs/interacting/bydbctl/bydbctl.md                |   8 +-
 docs/interacting/bydbctl/query/filter-operation.md |  10 +-
 docs/interacting/bydbctl/query/stream.md           |  31 +-
 docs/interacting/bydbctl/query/trace.md            | 208 ++++++++++
 docs/interacting/bydbctl/schema/group.md           |   3 +-
 .../bydbctl/schema/index-rule-binding.md           |  14 +-
 docs/interacting/bydbctl/schema/index-rule.md      |   7 +-
 docs/interacting/bydbctl/schema/measure.md         |   4 +-
 docs/interacting/bydbctl/schema/stream.md          |  13 +-
 .../bydbctl/schema/top-n-aggregation.md            |  12 +-
 docs/interacting/bydbctl/schema/trace.md           | 145 +++++++
 docs/interacting/bydbql.md                         | 304 ++++++++-------
 docs/interacting/data-lifecycle.md                 |  13 +-
 docs/menu.yml                                      |   4 +
 docs/operation/cluster.md                          |  12 +-
 docs/operation/configuration.md                    |  10 +-
 docs/operation/lifecycle.md                        |  79 ++--
 docs/operation/observability.md                    |  24 +-
 docs/operation/troubleshooting/crash.md            |   2 +-
 docs/operation/troubleshooting/no-data.md          |   2 +-
 docs/operation/troubleshooting/overhead.md         |   2 +-
 docs/operation/troubleshooting/query.md            |  20 +-
 pkg/meter/meter.go                                 |   1 +
 pkg/meter/native/provider.go                       |   3 +
 pkg/meter/prom/prom.go                             |  59 +--
 pkg/test/setup/setup.go                            |  37 ++
 test/integration/distributed/deletion/common.go    | 432 +++++++++++++++++++++
 .../distributed/deletion/deletion_suite_test.go    | 313 ---------------
 .../{inspection => deletion}/etcd/suite_test.go    |  24 +-
 .../property/suite_test.go                         |  22 +-
 test/integration/standalone/deletion/common.go     | 414 ++++++++++++++++++++
 .../standalone/deletion/deletion_suite_test.go     | 225 -----------
 .../{observability => deletion/etcd}/suite_test.go |  16 +-
 .../property}/suite_test.go                        |  16 +-
 ui/LICENSE                                         |   4 +-
 ui/package-lock.json                               |  18 +-
 ui/src/components/CodeMirror/bydbql-mode.js        |   9 +
 ui/src/components/Property/PropertyRead.vue        |  36 +-
 ui/src/components/Read/index.vue                   |  14 +-
 69 files changed, 2241 insertions(+), 1074 deletions(-)
 create mode 100644 docs/interacting/bydbctl/query/trace.md
 create mode 100644 docs/interacting/bydbctl/schema/trace.md
 create mode 100644 test/integration/distributed/deletion/common.go
 delete mode 100644 test/integration/distributed/deletion/deletion_suite_test.go
 copy test/integration/distributed/{inspection => deletion}/etcd/suite_test.go 
(72%)
 copy test/integration/distributed/{inspection => 
deletion}/property/suite_test.go (73%)
 create mode 100644 test/integration/standalone/deletion/common.go
 delete mode 100644 test/integration/standalone/deletion/deletion_suite_test.go
 copy test/integration/standalone/{observability => 
deletion/etcd}/suite_test.go (81%)
 copy test/integration/standalone/{observability => 
deletion/property}/suite_test.go (83%)

Reply via email to