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

A record-oriented store built on FoundationDB

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

Performance profiling shows that the initialization of context file and format readers takes a long time during record updates. This optimization initializes the readers in a separate thread to reduce...

Attempt to remove sequential blocking access during commit.

We can shortcut the execution immediately when observing that one of the `PartialMatch`s has a remaining computation.

planner

When estimating the cardinality for an aggregate index plan, we check whether the equality-bound ordering values contain the grouping value(s), if so we estimate the cardinality to be either 0...

planner

This adds record type key matching to the Cascades planner. This is designed to handle two scenarios: 1. Record type key fields in an index. This makes some amount of...

With #1997 we add support for sparse indexes, and enhance the index metadata with predicate information. With this PR, the index maintainer throws an exception if it encounters such an...

The planner currently doesn't match reverse sorts correctly if there are some values bound with equality predicates. For example, if there is a query like: ```java RecordQuery.newBuilder() .setFilter(Query.field("a").equalsValue("foo")) .setSort(Key.Expressions.concatenateFields("a", "b"),...

planner

The Cascades planner currently doesn't match record type keys at all during planning. This can be a problem for operations like querying for a single type when the primary key...

planner