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

It should be possible to open an `FDBRecordStore` in read-only mode, disallowing any modification operations through its API's. My thinking around this was that maybe we could add a method...

Add this static method to load store header without opening the store.

If a synthetic index is disabled, the update phase in `FDBRecordStore` will still attempt to write to it.

in `Value` we have the following `eval` method: ```java Object eval(@Nonnull FDBRecordStoreBase store, @Nonnull EvaluationContext context); ``` The first parameter `store` is marked as `Nonnull`, but compile-time `Value`s need only...

enhancement

Currently, the conflicts during the final (ANY) iteration cause the indexers to significantly slow down. Partly because of the conflicts overhead but mostly due to the limit reduction.

With this option, the indexer should abort after performing the first (aka "FULL") iteration. This can be useful when running many parallel indexers, yet wishing only few of them to...

With #1972 a new `ValueWithRanges` is introduced to represent a `Value` with a disjunction of continuous ranges to support filtered indexes and improve optimisation opportunities around them for cases where...

planner

When planning a query the planner might choose a filtered index if the query has compile-time predicates that are enclosed by the filtered index ranges. We should capture these condition(s)...

planner