zed
zed copied to clipboard
A novel data lake based on super-structured data
## tl;dr @mccanne's statement upon seeing the repro below: > That looks like a bug! We're not resetting the streaming agg state at end-of-stream. ## Details Repro is with Zed...
The ZSON serializer has a bug where it thinks a named type is implied when it isn't. Reproduce with this input: ``` $ echo '[1(=A),{s:"foo"(=B)}(=A)]' | zq - [1(=A),{s:"foo"}(=A)] ```...
At the time of the filing of this issue, Zed is at commit 2689e24. This topic was recently highlighted thanks to a user that asked the following question in a...
@mattnibs recently made the following observation/suggestion: > I spend a lot of time in the language section of the docs and I always get weighed down in the amount of...
Currently functions in Zed must all be called with positional arguments. A community user recently made a compelling argument that adding support for named arguments would make the Zed language...
A community user Mark Gardner from Virginia Tech submitted the following feature request relevant to his use case. He gave permission for us to quote him verbatim and attribute the...
## tl;dr The `sort` operator in Zed currently lacks the ability to specify order on a per-key basis. ## Details At the time this issue is being filed, Zed it...
Hi, Thank you for the great tool. Here is my problem: when dealing with large amount set of data, such as ``` {"tag": "1", "ip": "1.1.1.1", "category": "some_cat1"} {"tag": "2",...
The Zed lake maintains history about stored data on the assumption users may want to [time travel](https://zed.brimdata.io/docs/tutorials/zed#time-travel) to revisit the data as it looked in a prior state. The amount...
The currently-available `from ( get http://... )` works great if the data is being retrieved from a simple, public `GET`-accessible endpoint. However, there's plenty of REST-accessible data that requires being...