Phil Fried
Phil Fried
[Example in playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=5bc6f6fceff2d2415639cd7294f79d42) I have an adjacently tagged enum, and I'd like for the content to be optional. The enum looks like: ```rust #[derive(Deserialize, Debug)] #[serde(tag = "tag", content =...
Currently, if you want to use rocksdb with compression libraries, you need to set the `CGO_LDFLAGS` environment variable. Since the order of linker args matters, you need to also specify...
The [docs on deleting shard specs](https://gazette.readthedocs.io/en/latest/consumers-shardspecs.html#deleting-shardspecs) say that you can add `delete: true` under the `common` section. This does not work, though, since we unmarshal that field into a `pc.ShardSpec`,...
The background for this is described in estuary/flow#192. The goal is to be able to verify whether a given `consumer.Checkpoint` is from a particular Gazette cluster, so that we could...
I think it would be nice to be able to move between text boxes just using the keyboard by hitting tab or enter. I've got something hacked together that works,...
It's fairly common for operators to perform some additional validation of their "parent" resources on top of what can be done in the schema attached to the CRD. Given that...
Writing correct RBAC resources is tedious and error prone, and there's basically no reason to do it by hand. What I've been thinking of is adding an API for generating...
I've been playing around with Futures and Tokio lately, and one of the things that's been a major pain point has been dealing with errors from Futures. I think it...
In gazette clusters that manage a large number of journals, the List RPC can fail due to exceeding the maximum allowable size of a gRPC response. Rather than trying to...
**Is your feature request related to a problem? Please describe.** We've observed some issues where our application hangs, though it's not necessarily certain that TCP keepalive would have prevented them....