Jordan Frazier

Results 18 comments of Jordan Frazier

We do have the ability to specify the window width with respect to time, but in a very limited fashion. ``` Foo | count(window=since(hourly())) ``` Is a (hopping) hourly window....

``` failed to extract plan protos ├╴at crates/sparrow-compiler/src/compile.rs:98:10 │ ╰─:arrow_forward: adding expression 18 ├╴at crates/sparrow-compiler/src/compile.rs:97:10 ├╴backtrace (1) ├╴span trace with 1 frames (1) ╰╴Input OperationInputRef { producing_operation: 0, input_column: 4294967295,...

Copying comment from #367 Representing maps in Fenl will likely depend on bag semantics. BigQuery, for example, unnests (https://cloud.google.com/bigquery/docs/arrays) arrays to expand the single row to multiple rows. However, since...

A few issues: * Suspect some interesting aspects of asyncio or the GIL -- print statements in the `execution.stop()` code were not being executed (or displayed(?)) * The `execution` lock...

Still open. Currently just manually redacting fields.

![final_with_filter](https://github.com/kaskada-ai/kaskada/assets/122494242/f5783d40-d4d0-4a71-a997-f75fa1a615b3) This issue arose from attempting to hack a fix for trailing windows by shifting the input forward, merging that with the original, feeding that to the collect, then filtering...

This is a behavior that is likely correct, but possible to have subtle and meaningful impact on complex queries. We should discuss ways to alleviate this risk

Failing here: https://github.com/kaskada-ai/kaskada/blob/c700afe114b6bac4d2bd92659a9438f395f36223/crates/sparrow-runtime/src/read/parquet_file.rs#L59 Which means that it correctly created the `Url` and was able to get the `path` from it. It's possible a source of issue is coming from how...

Example failed run: https://github.com/kaskada-ai/kaskada/actions/runs/6436537441/job/17480075331

### Current status: Windows build fails when attempting to parse an invalid URL. Despite our best efforts to use `URLs` and `Paths` (instead of manual string manipulation), the windows build...