Heikki Linnakangas
Heikki Linnakangas
I tested this on staging with this little test program (from https://community.neon.tech/t/error-connecting-edgedb-intervalstyle-parameter-ignored/107/6): ``` import asyncpg import asyncio async def main(): conn = await asyncpg.connect("postgres://hlinnaka:[email protected]:5432/main?sslmode=require", server_settings={"IntervalStyle": "iso_8601"}) #conn = await asyncpg.connect("postgres://localhost/postgres",...
On 28/02/2022 11:59, Konstantin Knizhnik wrote: > I wonder if time and LSN criteria for PITR should be ORed or ANDed? > Right now in my implementation I use AND:...
IIRC, we support even graceful shutdown and restart of the compute node. You need to always fetch a new basebackup and re-initialize.
> Hey this project looks super cool! > > I hope this is a useful place to note this but a few references still exist in the internal docs for...
My theory: when the pageserver receives SIGTERM, it starts the shutdown sequence, but it doesn't immediately kill GC and/or compaction. They continue to run, and after a large import like...
@bojanserafimov can you take a look at this, after the daemonize issue, please? PR #2261 will probably at least change the error message from this test, as it changes the...
With gRPC, is it only used as a message bus, so that if you aren't subscribed to it when a message is sent, it is lost? Or is it possible...
Unfortunately, Data Studio gives that same error message whenever the connection fails, regardless of the reason. You get the same error for invalid hostname, invalid password, connection refused, etc.
At first I though this would be the common SNI problem, but Data Studio uses JDBC, and the JDBC driver does support SNI. I confirmed by connecting to another VM...
Also for performance testing, make sure you're building in release mode: ``` BUILD_TYPE=release make -j`nproc` ``` and use the binaries from `target/release` instead of `targer/debug`. The debug-mode binaries are significantly...