zed
zed copied to clipboard
A novel data lake based on super-structured data
## tl;dr A strict reading of the [`over` operator docs](https://zed.brimdata.io/docs/language/operators/over) indicates the following record should probably be output as is, but instead its top level is broken out into a...
A community user attempted `sort 'Source Zone','Destination Zone'` thinking this was the right way to specify field names that contained spaces. Their `sort` had no effect and the tooling provided...
With some operators (e.g., `join`) it's possible for a query to fail due to a panic in the lake service, but the `zed` client just sees no query response and...
When reacting to the [`debug` operator](https://zed.brimdata.io/docs/next/language/operators/debug) in its current form, @mccanne found himself wishing it could take a flowgraph rather than expression to massage its output. I know this idea...
Repro is with Zed commit 963863b. A community zync user originally surfaced this issue. The inquiry in their own words: > While doing some data exploration, I noticed that CSV...
A community zync user mentioned the following in a Zui context, though it seems addressing it would likely have to start at the Zed layer since that's what handles data...
When running `zed manage -monitor`, if one of the targets specified in a `-pool` option doesn't exist, the command exits. Since this is designed to be a long-running process, this...
The commit changes analysis of output operators so that it is permissable to place output operators anywhere in a flowgraph as long as it doesn't block downsteam operators. The commit...
Should operators on errors work the same was as unions, where we automatically access the "under()" value. While this could cause confusing behavior, it also has some nice properties... e.g.,...
Repro is with Zed commit 48021d7. The [`nest_dotted` function docs](https://zed.brimdata.io/docs/next/language/functions/nest_dotted) set expectations that it's only intended to be used on records, so I'm not surprised this failed. But a panic...