Geoffroy Couprie
Geoffroy Couprie
if we do not send enough messages within the time limit, it should send an incomplete batch
in case of reconnections, messages previously sent might have been lost, so we should keep them in a queue until we get the send receipt, and if we reconnected, send...
I've seen some cases like this one: https://github.com/wyyerd/pulsar-rs/blob/master/src/connection.rs#L233 where we're waiting for the success response but an error response can come. See both options for `CommandSend` here: https://github.com/wyyerd/pulsar-rs/blob/master/PulsarApi.proto#L877-L878
https://pulsar.apache.org/docs/en/security-encryption/
pulsar messages can specify a format (cf https://pulsar.apache.org/docs/en/concepts-schema-registry/#supported-schema-formats ) I don't know yet how we could connect to the format registry to download Avro specifications (and the Rust Avro library...
this is an exploration of streaming the lexer. The current parser first allocates the list of tokens, then reverses it, then transforms to a syntax tree. With the benchmark I...
## Description I see that when parsing a string value, the node's span contains the double quotes. Example here: https://github.com/apollographql/apollo-rs/blob/main/crates/apollo-parser/src/parser/grammar/value.rs#L208 So when manipualting it, if I want to access the...
We are using the parser in the router for two use cases: - extracting subgraph URLs from the schema - building selection sets from the query to filter fields in...
implementation for #596 It rewrites `RequestState` and `ResponseState` to reduce the number of states and hold a list of headers containing references to offfsets in the network stream (not slices...
I was updating [sozu-acme](https://github.com/sozu-proxy/sozu-acme/tree/0.14) to sozu 0.14 and encountered an issue with the new certificate resolver. Apparently when sending a `ReplaceCertificate` message, I get the following error: ``` 2021-September-22T08:01:08.658111Z 1632297668658111892...