This is an automated email from the ASF dual-hosted git repository.
hanahmily pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
The following commit(s) were added to refs/heads/main by this push:
new dfad95c93 Make backup/dump/migration related CI more stable (#1183)
dfad95c93 is described below
commit dfad95c93aa26e6b21f24c10c65ad9d4910843f4
Author: mrproliu <[email protected]>
AuthorDate: Fri Jun 19 08:11:12 2026 +0800
Make backup/dump/migration related CI more stable (#1183)
Co-authored-by: Gao Hongtao <[email protected]>
---
banyand/backup/lifecycle/roundtrip_test.go | 2 +-
banyand/internal/dump/measure/suite_test.go | 2 +-
banyand/stream/migration_slowpath_test.go | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/banyand/backup/lifecycle/roundtrip_test.go
b/banyand/backup/lifecycle/roundtrip_test.go
index 43dd1ae4a..a488345d5 100644
--- a/banyand/backup/lifecycle/roundtrip_test.go
+++ b/banyand/backup/lifecycle/roundtrip_test.go
@@ -667,7 +667,7 @@ const (
roundtripE2ETagFamily = "default"
roundtripE2EIndexRule = "service_index"
roundtripE2EPointCount = 10
- roundtripE2EFlushWait = 30 * time.Second
+ roundtripE2EFlushWait = 60 * time.Second
roundtripE2EBatchTimout = 5 * time.Second
)
diff --git a/banyand/internal/dump/measure/suite_test.go
b/banyand/internal/dump/measure/suite_test.go
index 3c4de30ef..1e2264880 100644
--- a/banyand/internal/dump/measure/suite_test.go
+++ b/banyand/internal/dump/measure/suite_test.go
@@ -368,7 +368,7 @@ func TestMeasureIndexedTagResolvedFromIndex(t *testing.T) {
require.Eventually(t, func() bool {
count, _ := inverted.ReadOnlyDocCount(sidxPath)
return count >= int64(total)
- }, 30*time.Second, 100*time.Millisecond, "series index not fully
persisted after stop")
+ }, 60*time.Second, 100*time.Millisecond, "series index not fully
persisted after stop")
ruleToTag := map[uint32]dump.IndexedTagSpec{
strRuleID: {Family: "default", Name: "idxStr", Type:
pbv1.ValueTypeStr},
diff --git a/banyand/stream/migration_slowpath_test.go
b/banyand/stream/migration_slowpath_test.go
index 4ccfaceaf..989b5def0 100644
--- a/banyand/stream/migration_slowpath_test.go
+++ b/banyand/stream/migration_slowpath_test.go
@@ -81,7 +81,7 @@ func eventuallyIdxTerm(t *testing.T, idxPath string, ruleID
uint32, seriesID com
}
}
return true
- }, 10*time.Second, 100*time.Millisecond,
+ }, 60*time.Second, 100*time.Millisecond,
"idx %s rule %d series %v value=%s: expected elementIDs %v not
visible in time",
idxPath, ruleID, seriesID, value, want)
}