pranadb icon indicating copy to clipboard operation
pranadb copied to clipboard

Results 100 pranadb issues
Sort by recently updated
recently updated
newest added

`make start` fails on M1 with the following error: ``` => ERROR [build_base 7/7] RUN go build -tags musl -o ./out/pranadb ./cmd/pranadb 13.9s ------ > [build_base 7/7] RUN go build...

bug

It should be possible to set a table retention in time on a source (and MV?). Records older than this will be automatically deleted from the source.

high priority

Implement push joins. Joins should follow the standard SQL syntax. Join state will need to be persisted in an internal table.

Sinks will allow the output from materialized views or sources to be sent to a Kafka topic. Similarly to sources, they will be declared using a CREATE SINK command. Something...

high priority

We currently use the default Pebble config. We should set config and tune it appropriately for our usage. Looking at the config settings that Dragonboat uses for Pebble would be...

Each shard has a 1-1 correspondence with a Raft group. We have R replicas of each shard (including the leader), where R is the replication factor. The leader replica for...

We should allow for periodic snapshots to be taken of the shards, either written to the filesystem or pushed to S3.

This PR enables out of band pull queries. Previously we were executing all pull queries through raft as linearizable reads. This didn't buy us anything as our data is effectively...

Though we have no internal usages since we are tied down by Wire only supporting proto2