This is an automated email from the ASF dual-hosted git repository. mrproliu pushed a commit to branch ci-stable in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
commit 6b9d830f503ec03f0619da176eaec6c5257c8715 Author: mrproliu <[email protected]> AuthorDate: Thu Jun 18 16:38:24 2026 +0800 Make backup/dump/migration related CI more stable --- 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) }
