Lanqing Yang
Lanqing Yang
## Bug Report ### Version: latest ### Platform: all (linux) ### Crates http_body, hyper, h2 ### Description maybe Streaming::message need to handle h2 error? https://github.com/hyperium/tonic/blob/c62f382e3c6e9c0641decfafb2b8396fe52b6314/tonic/src/codec/decode.rs#L151 called from here https://github.com/hyperium/tonic/blob/c62f382e3c6e9c0641decfafb2b8396fe52b6314/tonic/src/client/grpc.rs#L193 I...
This commit verify record checksum verification when processing raft snapshot records. This process prevents data corruption spread via snapshot process. Cluster setting snapshotChecksumVerification is introduced to act as a safeguard...
This commit replaces Memstats collection with go runtime metrics. The latter approach do not require stw to collect memory stats. A subtle change to be noted: statsProfiler still call runtime.ReadMemStats...
This commit adds a line chart contains gc assist duration on the runtime page. The goal is to present the estimated time user go routines spend on assisting gc tasks....
Hi we have an use case to perform check and and token operation independently. for an example when a request come in we check if the remaining quota is enough...
Fix: https://github.com/postgresml/pgcat/issues/492 Noob approach: I think that once the pool sharding regex is set we just pick shard and stopped parsing pgcat custom commands for an [example ](https://github.com/postgresml/pgcat/blob/04e9814770d32bfc02100f3fa11ba718738595d6/src/query_router.rs#L171). I refactor...
Please refer to each individual commits.
This commit logs session variables passed on the connection url. The goal is to provide more information on trouble shooting issues. The output could be redacted for security purpose. Fixes:...
This change makes the commit index advancement in handleHeartbeat safe. Previously, a follower would attempt to update the commit index to whichever was sent in the MsgHeartbeat message. Out-of-bound indices...
This avoids a data race on tryBumpBatchTimestamp, which was fallout from the new logging introduced in ba13697. Fixes: #124553 Release note: None