You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: fdb-record-layer-core/src/main/java/com/apple/foundationdb/record/provider/foundationdb/FDBRecordStore.java
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4966,6 +4966,7 @@ public void removeFormerIndex(FormerIndex formerIndex) {
Copy file name to clipboardExpand all lines: fdb-record-layer-core/src/main/java/com/apple/foundationdb/record/provider/foundationdb/IndexingHeartbeat.java
+25-27Lines changed: 25 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -37,23 +37,25 @@
37
37
importjava.util.concurrent.atomic.AtomicInteger;
38
38
39
39
publicclassIndexingHeartbeat {
40
-
// [prefix, xid] -> [indexing-type, genesis time, heartbeat time]
40
+
// [prefix, indexerId] -> [indexing-type, genesis time, heartbeat time]
Copy file name to clipboardExpand all lines: fdb-record-layer-core/src/main/java/com/apple/foundationdb/record/provider/foundationdb/OnlineIndexOperationConfig.java
+16-2Lines changed: 16 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -186,6 +186,19 @@ public static Builder newBuilder() {
186
186
returnnewBuilder();
187
187
}
188
188
189
+
190
+
/**
191
+
* Not used anymore.
192
+
* @return always false;
193
+
* @deprecated see {@link Builder#setUseSynchronizedSession(boolean)}
194
+
*/
195
+
@API(API.Status.DEPRECATED)
196
+
@SuppressWarnings("PMD.AvoidUsingHardCodedIP") // version is not IP
197
+
@Deprecated(since = "4.4.3.0", forRemoval = true)
198
+
publicbooleanshouldUseSynchronizedSession() {
199
+
returnfalse;
200
+
}
201
+
189
202
publiclonggetLeaseLengthMillis() {
190
203
returnleaseLengthMillis;
191
204
}
@@ -496,8 +509,9 @@ public Builder setUseSynchronizedSession(boolean useSynchronizedSession) {
496
509
}
497
510
498
511
/**
499
-
* Set the lease length in milliseconds if the synchronized session is used. By default this is {@link #DEFAULT_LEASE_LENGTH_MILLIS}.
0 commit comments