embucket-labs
embucket-labs copied to clipboard
Experimental version. A BYOC option for Snowflake workloads
When following query is executed on Embucket, it returns stack trace of runtime error. ``` sql SELECT t1.id, t1.name, t2.name AS name2, t3.name AS name3, t4.name AS name4, t5.name AS...
- `CLIENT_SESSION_KEEP_ALIVE = true`, - If active, it will periodically send this (with the defined frequency on the client/driver): https://github.com/snowflakedb/snowflake-connector-python/blob/main/src/snowflake/connector/network.py#L587 - By doing this, it should keep this session alive...
`COPY INTO customer FROM 'customer.parquet' FILE_FORMAT = (TYPE = 'PARQUET');` query fails with an error "Query execution error: Stages are currently not supported"
SQL: `SELECT CURRENT_TIMESTAMP` queryResultForma": "json" ### Executed with `snow sql` on Snowflake ``` +----------------------------------+ | CURRENT_TIMESTAMP | |----------------------------------| | 2025-09-18 04:15:44.315000-07:00 | +----------------------------------+ ``` ### Executed with `snow sql` /...
Embucket current panics with the following query ```sql CREATE TABLE local_db.s.t2 AS VALUES (2, -12345678901234567890123456789012345678); ``` This is the stack trace: ``` Error occurred: 000200: 200: Threaded Job error: Panic:...
## Problem Concurrent INSERT operations on the same table complete successfully but only the last operation's data persists to the table, resulting in silent data loss. ## Reproduction ```rust async...
This failure was caught by integration test. Some queries fail with different row count returned. Upon investigation it boils down operations on Decimal somehow fail: i.e. ``` In [41]: r1...
- `DataFusion` doesn't support any `ESCAPE` char outside `\` - Could be an easy change in `DataFusion` internals (to be investigated) - Related to `LIKE ANY` #1606 & `ILIKE ANY`...
## dbt-gitlab ``` 3 010001 (02000): SQL compilation error: column 'DEFAULT' not found ``` ## Example - Snowflake: ```sql create or replace TABLE testing_super AS SELECT 'yes' as DEFAULT; SELECT...