Rick Richardson
Rick Richardson
Would it be possible to devise and use `OwnedRead` and `OwnedReadBuf` traits, as suggested by [Nick Cameron]( https://www.ncameron.org/blog/async-io-with-completion-model-io-systems/)? These might work for the `SendStream`, though we'd up needing to make...
I guess the Latest work from Nick is in https://github.com/nrc/async-io-traits And the discussion is https://rust-lang.zulipchat.com/#narrow/stream/187312-wg-async/topic/IO.20traits I'm still trying to digest all of it. I may or may not have intelligent...
tokio-uring has a FixedBuf and FixedBufRegistry that makes it possible/convenient to use io_uring's buffer pre-registration features which can greatly improve predictability and performance. Any disk IO is conducted through tokio-uring....
I would like to second this. I have the exact same need for multiple customers. The internal IPs are NAT'd and mapped to an external IP. I would like to...
@danderson - Yeah. In thinking about this more. I think the correct place to manage this is with some sort of mapping operator that ensures that the `ExternalIp` field is...
@rbq , You bring up an excellent point. An operator wouldn't be able to do this atomically. It would get the events the same time any other operator would get...
@danderson - In the case of `external-dns`. As soon as it sees the new Service, it will issue issue a DNS zone/record request to some remote API endpoint (AWS r53,...
I just found https://github.com/zevenet/kube-nftlb/blob/master/pkg/auth/auth.go#L24 so I should be able to supply the kubeconfig path on the command line. So I should be able to run this on an external node,...
(Someone please correct me if I have any of this wrong) As I see it, metallb and kube-nftlb do approximately the same thing, but in very different ways. Both are...
I would start with http://rxcpp.codeplex.com/ rx-observables being the origin of rxJava/Scala/etc We are pretty much guaranteed to make it look like the c++ implementation, which isn't bad. Then clean things...