zed
zed copied to clipboard
A novel data lake based on super-structured data
Repro is with Zed commit c7f79e2b. While doing a proofreading pass on the ZSON spec, I noticed that the [Enum Value](https://zed.brimdata.io/docs/next/formats/zson#246-enum-value) example isn't accepted as valid input. ``` $ zq...
This PR allows git-like tagging to the commit history/journal. E.g., one can tag a commit with "v1.2", "normalized", "classified" etc. Specifically, `zed tag NAME BASE` creates a git-like immutable tag...
Reorganize and update the lake format specification so it is consistent with the current implementation and easy to update as we continue to develop the zed lake, add crud, incorporate...
The text below was removed from the Zed lake specification as these are really design notes for pending items. We should create issues from these notes and update the docs...
`zed` doesn't try to detect CSV, Parquet, JSON, or ZST inputs, but for file inputs, it should. It doesn't because `zio/detector.NewReaderWithOpts` wraps its `io.Reader` parameter with `Track` and `Recorder`, which...
Repro is with Zed commit 9c0f097. The behavior of `len()` on a null argument varies depending on the argument's type. The behavior we want here isn't clear to me, but...
Repro is with `zq` commit 076e53b5 and some DNS test data [fdns-5GB.zng.gz](https://drive.google.com/file/d/1wjYAWYB7T9ytZckFzfD682kffgDRCbie/view?usp=sharing) I've shared from my Google Drive. I execute this: ``` $ zq -version Version: v1.0.0-6-g076e53b5 $ zq -z...
The CSV reader should take a schema argument to handle cases where there is no CSV header in the file but simply a sequence of comma-separated values. The schema would...
Repro is with Zed commit 9c0f097. Most functions don't handle `missing` properly. In general, a function should return missing if any required argument is missing, e.g., ``` $ zed -version...
I'm going to do a quick pass on the api docs to update them but remove the detailed information about response payloads. This issue is a place holder to revisit...