fdb-record-layer icon indicating copy to clipboard operation
fdb-record-layer copied to clipboard

A record-oriented store built on FoundationDB

Results 304 fdb-record-layer issues
Sort by recently updated
recently updated
newest added

Streaming aggregate support should have operators for count (including nulls) and countNonNull.

In Java 14, the JDK introduced "record" as a type of restricted class for "plain data carrying". See: https://docs.oracle.com/en/java/javase/14/language/records.html That seems pretty useful, but unfortunately, it introduces the "record" keyword...

With this supported, client can have a total timeout for a series of calls of FDBDatabase.asyncToSync. In first call, it passes in the initial timeout value. Then in each call,...

This is a result of the PR (https://github.com/FoundationDB/fdb-record-layer/pull/1381) for streaming aggregation.

The online indexing API defines a few places where it takes a `Key.Evaluated` (and also usually defines an overload where it takes a `Tuple`). Most of the API, however, uses...

The algorithm is exponential, and could be approximated in linear time. *Cough*

WIth https://github.com/FoundationDB/fdb-record-layer/pull/1344, @panghy provided a mechanism by which the `FDBDatabaseFactory` can have alternative implementations. This resulted in some internal build errors in record layer that were addressed in https://github.com/FoundationDB/fdb-record-layer/pull/1384, however...