zed
zed copied to clipboard
A novel data lake based on super-structured data
## tl;dr I managed to crash `zed serve` by starting a `zed load` and hitting Ctrl-C part way through. ## Details Repro is with GA Zed tagged `v1.16.0`. I first...
## tl;dr We intend to deprecate multi-`from` syntax, e.g., users that previously did: ``` from ( pool sample.zng pool prs.json get https://ifconfig.co/ ) ``` Would now use something like: ```...
This commit reparents the "super dev compile" command under the top-level "super" command and creates a parallel command "super db compile". This makes it much clearer as to when you...
## tl;dr The file generated by the following can be read back in with Zed tools but not some other tools. ``` $ echo '{device_floor: 3 (uint8)}' | zq -f...
A proposed new `batch` operator: ``` batch 2 => ( collect(this) | // do something with 2-element array ) ``` ## Details Repro is with `super` commit 0af34e0. A community...
Repro is with Zed commit d64a090. We started a debate years ago about this difference between SQL and Zed behaviors. Start with this [data.csv](https://github.com/brimdata/zed/files/12032717/data.csv) test data. ``` id,key,val 1,max,hi 2,zap,my...
[Primitive Values](https://zed.brimdata.io/docs/v1.18.0/formats/zson#23-primitive-values) in the 1.18 docs show that "month" is not included unit in the type: > Valid time units are "ns" (nanosecond), "us" (microsecond), "ms" (millisecond), "s" (second), "m"...
A community user recently inquired about how to compute the delta between the values in back-to-back input records. The only solution we could come up with that uses existing building...
## tl;dr I can't explain why the first line of output is repeated twice here. ``` $ zq -z ' yield [{id:1},{id:2}] | over this | left join ( yield...