-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #124454 from cockroachdb/blathers/backport-release…
…-23.1.22-rc-123970 release-23.1.22-rc: release-23.1: changefeedccl: fix initial scan checkpointing
- Loading branch information
Showing
3 changed files
with
148 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
// Copyright 2024 The Cockroach Authors. | ||
// | ||
// Licensed as a CockroachDB Enterprise file under the Cockroach Community | ||
// License (the "License"); you may not use this file except in compliance with | ||
// the License. You may obtain a copy of the License at | ||
// | ||
// https://github.com/cockroachdb/cockroach/blob/master/licenses/CCL.txt | ||
|
||
package changefeedccl | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/cockroachdb/cockroach/pkg/roachpb" | ||
"github.com/cockroachdb/cockroach/pkg/sql/execinfrapb" | ||
"github.com/cockroachdb/cockroach/pkg/util/hlc" | ||
"github.com/cockroachdb/cockroach/pkg/util/leaktest" | ||
"github.com/cockroachdb/cockroach/pkg/util/log" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
// TestSetupSpansAndFrontier tests that the setupSpansAndFrontier function | ||
// correctly sets up frontier for the changefeed aggregator frontier. | ||
func TestSetupSpansAndFrontier(t *testing.T) { | ||
defer leaktest.AfterTest(t)() | ||
defer log.Scope(t).Close(t) | ||
|
||
for _, tc := range []struct { | ||
name string | ||
expectedFrontier hlc.Timestamp | ||
watches []execinfrapb.ChangeAggregatorSpec_Watch | ||
}{ | ||
{ | ||
name: "new initial scan", | ||
expectedFrontier: hlc.Timestamp{}, | ||
watches: []execinfrapb.ChangeAggregatorSpec_Watch{ | ||
{ | ||
Span: roachpb.Span{Key: roachpb.Key("a"), EndKey: roachpb.Key("b")}, | ||
InitialResolved: hlc.Timestamp{}, | ||
}, | ||
{ | ||
Span: roachpb.Span{Key: roachpb.Key("b"), EndKey: roachpb.Key("c")}, | ||
InitialResolved: hlc.Timestamp{}, | ||
}, | ||
{ | ||
Span: roachpb.Span{Key: roachpb.Key("c"), EndKey: roachpb.Key("d")}, | ||
InitialResolved: hlc.Timestamp{}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
name: "incomplete initial scan with non-empty initial resolved in the middle", | ||
expectedFrontier: hlc.Timestamp{}, | ||
watches: []execinfrapb.ChangeAggregatorSpec_Watch{ | ||
{ | ||
Span: roachpb.Span{Key: roachpb.Key("a"), EndKey: roachpb.Key("b")}, | ||
InitialResolved: hlc.Timestamp{WallTime: 5}, | ||
}, | ||
{ | ||
Span: roachpb.Span{Key: roachpb.Key("b"), EndKey: roachpb.Key("c")}, | ||
InitialResolved: hlc.Timestamp{}, | ||
}, | ||
{ | ||
Span: roachpb.Span{Key: roachpb.Key("c"), EndKey: roachpb.Key("d")}, | ||
InitialResolved: hlc.Timestamp{WallTime: 20}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
name: "incomplete initial scan with non-empty initial resolved in the front", | ||
expectedFrontier: hlc.Timestamp{}, | ||
watches: []execinfrapb.ChangeAggregatorSpec_Watch{ | ||
{ | ||
Span: roachpb.Span{Key: roachpb.Key("a"), EndKey: roachpb.Key("b")}, | ||
InitialResolved: hlc.Timestamp{}, | ||
}, | ||
{ | ||
Span: roachpb.Span{Key: roachpb.Key("b"), EndKey: roachpb.Key("c")}, | ||
InitialResolved: hlc.Timestamp{WallTime: 10}, | ||
}, | ||
{ | ||
Span: roachpb.Span{Key: roachpb.Key("c"), EndKey: roachpb.Key("d")}, | ||
InitialResolved: hlc.Timestamp{WallTime: 20}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
name: "incomplete initial scan with empty initial resolved in the end", | ||
expectedFrontier: hlc.Timestamp{}, | ||
watches: []execinfrapb.ChangeAggregatorSpec_Watch{ | ||
{ | ||
Span: roachpb.Span{Key: roachpb.Key("a"), EndKey: roachpb.Key("b")}, | ||
InitialResolved: hlc.Timestamp{WallTime: 10}, | ||
}, | ||
{ | ||
Span: roachpb.Span{Key: roachpb.Key("b"), EndKey: roachpb.Key("c")}, | ||
InitialResolved: hlc.Timestamp{WallTime: 20}, | ||
}, | ||
{ | ||
Span: roachpb.Span{Key: roachpb.Key("c"), EndKey: roachpb.Key("d")}, | ||
InitialResolved: hlc.Timestamp{}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
name: "complete initial scan", | ||
expectedFrontier: hlc.Timestamp{WallTime: 5}, | ||
watches: []execinfrapb.ChangeAggregatorSpec_Watch{ | ||
{ | ||
Span: roachpb.Span{Key: roachpb.Key("a"), EndKey: roachpb.Key("b")}, | ||
InitialResolved: hlc.Timestamp{WallTime: 10}, | ||
}, | ||
{ | ||
Span: roachpb.Span{Key: roachpb.Key("b"), EndKey: roachpb.Key("c")}, | ||
InitialResolved: hlc.Timestamp{WallTime: 20}, | ||
}, | ||
{ | ||
Span: roachpb.Span{Key: roachpb.Key("c"), EndKey: roachpb.Key("d")}, | ||
InitialResolved: hlc.Timestamp{WallTime: 5}, | ||
}, | ||
}, | ||
}, | ||
} { | ||
t.Run(tc.name, func(t *testing.T) { | ||
ca := &changeAggregator{ | ||
spec: execinfrapb.ChangeAggregatorSpec{ | ||
Watches: tc.watches, | ||
}, | ||
} | ||
_, err := ca.setupSpansAndFrontier() | ||
require.NoError(t, err) | ||
require.Equal(t, tc.expectedFrontier, ca.frontier.Frontier()) | ||
}) | ||
} | ||
} |