PG 10 logical replication version dependency?

2018-03-02 Thread Colin 't Hart
Hi, Is there a version dependency when using logical replication? Do both sides have to be running the same major version? Or is it a wire protocol that will be backwards compatible in future releases? I sincerely hope it's the latter so that users of this aren't forced to upgrade all of their in

Redis 16 times faster than Postgres?

2019-09-29 Thread Colin 't Hart
Hi, Can someone take a look at this blog post? https://www.peterbe.com/plog/redis-vs-postgres-blob-of-json Can Redis really be 16 times faster than Postgres? Surely Postgres can get closer to the raw speed of the hardware than 1 order of magnitude? Thanks, Colin

Cancelling "vacuum full" in single user mode?

2023-10-02 Thread Colin 't Hart
Hi, I have a customer approaching transaction wraparound, about 3million transaction IDs away at the moment. Postgres 9.5 (yes, I know...) Somewhat mislead by the message to vacuum the database in single user mode, they are now in single user mode and are running "vacuum full" on the "worst" data

Cancelling "vacuum full" in single user mode?

2023-10-03 Thread Colin 't Hart
Hi, I have a customer approaching transaction wraparound, about 3million transaction IDs away at the moment. Postgres 9.5 (yes, I know...) Somewhat mislead by the message to vacuum the database in single user mode, they are now in single user mode and are running "vacuum full" on the "worst" data

Regression in Postgres 17?

2024-10-22 Thread Colin 't Hart
Hi, This works in Postgres 15: pg15> create function json_test(out value text, out json jsonb) returns record language sql as $$ select null::text, null::jsonb; $$ ; CREATE FUNCTION pg15> select * from json_test(); ┌───┬──┐ │ value │ json │ ├───┼──┤ │ │ │ └───┴───