Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#375: Added resolvedTimestampsInterval to changefeed description #376

Merged
merged 2 commits into from
Feb 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package tech.ydb.table.description;

import java.time.Duration;
import java.util.Objects;

import tech.ydb.table.settings.Changefeed;
Expand Down Expand Up @@ -30,14 +31,36 @@ public enum State {
private final Changefeed.Format format;
private final State state;
private final boolean virtualTimestamps;
private final Duration resolvedTimestampsInterval;

public ChangefeedDescription(String name, Changefeed.Mode mode, Changefeed.Format format, State state,
boolean virtualTimestamps) {
public ChangefeedDescription(
String name,
Changefeed.Mode mode,
Changefeed.Format format,
State state,
boolean virtualTimestamps,
Duration resolvedTimestampsInterval
) {
this.name = name;
this.mode = mode;
this.format = format;
this.state = state;
this.virtualTimestamps = virtualTimestamps;
this.resolvedTimestampsInterval = resolvedTimestampsInterval;
}

/**
* @deprecated use constructor with resolvedTimestampsInterval instead
*/
@Deprecated
public ChangefeedDescription(
String name,
Changefeed.Mode mode,
Changefeed.Format format,
State state,
boolean virtualTimestamps
) {
this(name, mode, format, state, virtualTimestamps, null);
}

/**
Expand Down Expand Up @@ -75,9 +98,16 @@ public boolean hasVirtualTimestamps() {
return virtualTimestamps;
}

/**
* @return Heartbeat interval
*/
public Duration getResolvedTimestampsInterval() {
return resolvedTimestampsInterval;
}

@Override
public int hashCode() {
return Objects.hash(name, mode, format, state, virtualTimestamps);
return Objects.hash(name, mode, format, state, virtualTimestamps, resolvedTimestampsInterval);
}

@Override
Expand All @@ -94,7 +124,8 @@ public boolean equals(Object o) {
&& mode == cd.mode
&& format == cd.format
&& state == cd.state
&& virtualTimestamps == cd.virtualTimestamps;
&& virtualTimestamps == cd.virtualTimestamps
&& Objects.equals(resolvedTimestampsInterval, cd.resolvedTimestampsInterval);
}

@Override
Expand All @@ -104,6 +135,8 @@ public String toString() {
.append(", format=").append(format)
.append(", mode=").append(mode)
.append(", virtual timestamps=").append(virtualTimestamps)
.append(", resolved timestamps=").append(
resolvedTimestampsInterval != null ? resolvedTimestampsInterval : "null")
.append("}").toString();
}
}
12 changes: 11 additions & 1 deletion table/src/main/java/tech/ydb/table/impl/BaseSession.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import tech.ydb.core.grpc.YdbHeaders;
import tech.ydb.core.impl.call.ProxyReadStream;
import tech.ydb.core.operation.Operation;
import tech.ydb.core.utils.ProtobufUtils;
import tech.ydb.core.utils.URITools;
import tech.ydb.proto.StatusCodesProtos.StatusIds;
import tech.ydb.proto.ValueProtos;
Expand Down Expand Up @@ -261,6 +262,14 @@ public static YdbTable.Changefeed buildChangefeed(Changefeed changefeed) {
.build());
}

Duration resolvedTimestampsInterval = changefeed.getResolvedTimestampsInterval();
if (resolvedTimestampsInterval != null) {
builder.setResolvedTimestampsInterval(com.google.protobuf.Duration.newBuilder()
.setSeconds(resolvedTimestampsInterval.getSeconds())
.setNanos(resolvedTimestampsInterval.getNano())
.build());
}

return builder.build();
}

Expand Down Expand Up @@ -849,7 +858,8 @@ private static TableDescription mapDescribeTable(
mapChangefeedMode(pb.getMode()),
mapChangefeedFormat(pb.getFormat()),
mapChangefeedState(pb.getState()),
pb.getVirtualTimestamps()
pb.getVirtualTimestamps(),
ProtobufUtils.protoToDuration(pb.getResolvedTimestampsInterval())
));
}

Expand Down
13 changes: 13 additions & 0 deletions table/src/main/java/tech/ydb/table/settings/Changefeed.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public tech.ydb.proto.table.YdbTable.ChangefeedFormat.Format toProto() {
private final boolean virtualTimestamps;
private final Duration retentionPeriod;
private final boolean initialScan;
private final Duration resolvedTimestampsInterval;

private Changefeed(Builder builder) {
this.name = builder.name;
Expand All @@ -52,6 +53,7 @@ private Changefeed(Builder builder) {
this.virtualTimestamps = builder.virtualTimestamps;
this.retentionPeriod = builder.retentionPeriod;
this.initialScan = builder.initialScan;
this.resolvedTimestampsInterval = builder.resolvedTimestampsInterval;
}

public String getName() {
Expand All @@ -78,6 +80,10 @@ public Duration getRetentionPeriod() {
return retentionPeriod;
}

public Duration getResolvedTimestampsInterval() {
return resolvedTimestampsInterval;
}

@Deprecated
public tech.ydb.proto.table.YdbTable.Changefeed toProto() {
return BaseSession.buildChangefeed(this);
Expand All @@ -98,12 +104,14 @@ public static class Builder {
private boolean virtualTimestamps = false;
private Duration retentionPeriod = null;
private boolean initialScan = false;
private Duration resolvedTimestampsInterval = null;

private Builder(ChangefeedDescription description) {
this.name = description.getName();
this.mode = description.getMode();
this.format = description.getFormat();
this.virtualTimestamps = description.hasVirtualTimestamps();
this.resolvedTimestampsInterval = description.getResolvedTimestampsInterval();
}

private Builder(String name) {
Expand Down Expand Up @@ -135,6 +143,11 @@ public Builder withRetentionPeriod(Duration retentionPeriod) {
return this;
}

public Builder withResolvedTimestampsInterval(Duration resolvedTimestampsInterval) {
this.resolvedTimestampsInterval = resolvedTimestampsInterval;
return this;
}

public Changefeed build() {
return new Changefeed(this);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ public void tableChangefeedsTest() {
.withMode(Changefeed.Mode.NEW_AND_OLD_IMAGES)
.withVirtualTimestamps(true)
.withRetentionPeriod(Duration.ofDays(5))
.withResolvedTimestampsInterval(Duration.ofSeconds(3))
.build())
)).join();
Assert.assertTrue("Alter table changefeed 2 " + alterStatus, alterStatus.isSuccess());
Expand All @@ -142,8 +143,9 @@ public void tableChangefeedsTest() {
Assert.assertEquals(Changefeed.Format.JSON, ch1.getFormat());
Assert.assertEquals(ChangefeedDescription.State.ENABLED, ch1.getState());
Assert.assertFalse(ch1.hasVirtualTimestamps());
Assert.assertEquals(ch1.getResolvedTimestampsInterval(), Duration.ZERO); // zero is default when not specified
Assert.assertEquals(
"Changefeed['change1']{state=ENABLED, format=JSON, mode=KEYS_ONLY, virtual timestamps=false}",
"Changefeed['change1']{state=ENABLED, format=JSON, mode=KEYS_ONLY, virtual timestamps=false, resolved timestamps=PT0S}",
ch1.toString()
);

Expand All @@ -152,6 +154,7 @@ public void tableChangefeedsTest() {
Assert.assertEquals(Changefeed.Mode.NEW_AND_OLD_IMAGES, ch2.getMode());
Assert.assertEquals(Changefeed.Format.JSON, ch2.getFormat());
Assert.assertTrue(ch2.hasVirtualTimestamps());
Assert.assertEquals(ch2.getResolvedTimestampsInterval(), Duration.ofSeconds(3));

// State may be flaky
Assert.assertTrue(ch2.getState() == ChangefeedDescription.State.INITIAL_SCAN ||
Expand Down