Conrad Ludgate
Conrad Ludgate
## Problem in retrospect, the connection startup logic for http based connections should have been more closer to how we handle the other connections. setup the config once, then dont...
Send a notice message to clients including the session ID for debugging purposes
https://github.com/neondatabase/neon/pull/8855
hashbrown removed the RawTable API, requiring dashmap to use `HashTable` instead. This was the API I wanted dashmap 6 to use initially as the shards being RawTable means unsafe is...
Reduce the scope of the 'backend' type a bit, now that things have moved out.
In our logs, we see lots of `database \"neondb\" does not exist` errors. These are not interesting and are marked as "postgres" errors. Unfortunately, proxy does not know what databases...
Traditional libpq connections run queries outside of our control, so we do not see any of the query errors. Thus, `postgres` classified errors typically refer to errors such as "not...
local proxy request logs should use the same session id from auth broker
turns out we don't need to fully parse the json input for sql-over-http.
As the title suggests, this PR replaces the siphash based phf with a foldhash based phf. [foldhash](https://docs.rs/foldhash/latest/foldhash/) is a new fast hash algorithm by @orlp which has high avalanche properties...