zed
zed copied to clipboard
A novel data lake based on super-structured data
This is probably a low priority item. Wiith zng-beta, we are getting rid of the port type and creating an alias to uint16 in the zeekio module. As we evolve...
This pr introduces new functionality that uses pool key predicates in the pushdown to optimize both object and object seek selection. Both objects and their seek offsets are selected by...
Repro is with Zed commit 8e0219e. This issue was found by a community user. I'd just shown them how a bare search matched both of the records in this input...
As of 87686d6e6ed829bea2bf339e2dc64b339461718f, reading ZSON that ends with an incomplete type value or decorator succeeds with no output. Both should fail with an error message. ``` $ echo '(' |...
These error messages aren't great, but they should be. ``` $ zapi -lake x ls Post "x/query": unsupported protocol scheme "" $ zapi -lake http://x ls Post "http://x/query": dial tcp:...
I am trying to ingest data from standard in using zapi load. I'm getting an error that is hard to debug like so: My command (without a -use): ``` echo...
If a type name changes, `is()` should be able to match the different instances of the same name, e.g., ``` % zq in.zson {a:1}(=a) {b:2}(=a) {a:3}(=a) % zq "is(type(a))" in.zson...
The collect aggregator is receiving null values for some reason in `ConsumeAsPartial()`. Let's investigate this and either eliminate the call or document it better. Recreate with ``` collect(x) by key...
``` echo '{ts:2018-03-24T17:30:20Z}' | zq 'cut delta:=(ts+1s)-ts' - ``` is ``` {delta:1970-01-01T00:00:01Z} ``` but should be ``` {delta:1s} ```
Currently, types that don't resolve at compile-time cause a fatal error (except for single-name references like `type(foo)` that uses expr.TypeFunc). We should extend expr.TypeFunc to be able to resolve any...