Jon Gjengset

Results 171 issues of Jon Gjengset

Currently, we "swap" the `Reader` after every batch we process. This ensures that views are always as fresh as we can make them (subject to write propagation delays), but also...

enhancement
help wanted
m-consistency
perf

It'd be really cool if the system kept stats about how "busy" different parts of the graphs were. For example, how many records they're processing per second or how long...

enhancement
help wanted
m-debugging

We currently implement `query_through` only on simple stateless operators like filters and projections. However, in theory, it should also be possible to query through multi-ancestor stateless operators such as unions...

enhancement
m-partial
m-operators

We currently only support joins with a single join column. Adding support for multi-key joins should be relatively straightforward, though we should take care not to introduce performance regressions due...

enhancement
m-sql
m-operators

If an operator `n` sources a replay path on `[0, 1]`, and also one on `[0]`, it should be able to satisfy both of these with a single compound index...

enhancement
research
m-partial
perf

If two adjacent domains are sharded the same way, but have a replay path across them that uses a *different* key from the sharding key, this currently leads to sadness....

enhancement
research
m-partial

When having a single `polybar`, it would be useful to show which workspace is currently visible on each other monitor. That is, workspaces that aren't in focus, but are visible....

feature

As @felixge pointed out in #26, it would be good to have a standardized way of providing URL endpoints where a client can retrieve a file that is currently being...

enhancement
extension

I'm working with a JSON type that is internally tagged with a version number. My first instinct was to write is like so: ```rust use serde_derive::Deserialize; #[derive(Deserialize)] #[serde(tag = "_version")]...

I recently built a [small web app](https://github.com/jonhoo/vote.rs) using rocket, and want to host it in a subdirectory of my regular website. My website runs nginx, so I basically want this...

enhancement
request