embucket-labs icon indicating copy to clipboard operation
embucket-labs copied to clipboard

Experimental version. A BYOC option for Snowflake workloads

Results 100 embucket-labs issues
Sort by recently updated
recently updated
newest added

Metastore on sqlite + inmemory for tables No core-utils, No Slatedb

### Partial implementation of Metastore on sqlite * Volumes, databases, schemas are migrated on SQLITE (no vfs used) * We use diesel orm to map mentioned ^^ entities to sql....

Here is the difference between Snowflake and embucket: ```sql CREATE OR REPLACE TABLE variant_test_embucket ( id INT, data VARIANT ); INSERT INTO variant_test_embucket SELECT 1, PARSE_JSON('{"name": "test", "id": "1d110fd7-0f54-4452-8dc6-c4a3eac02024"}'); >...

Added physical plan query metrics - save metrics to SQLite during query execution Closes #1900

* Collect metrics during query exectuion if possible * If not possible, collect metrics after query completed * Add an option to cancel running query in the UI * Render...

At the moment it is possible to specify per-executor memory limits. Add support for another mode for resource allocation - per-query. This will be the mode whereas both CPU and...