Shaun Thomas

Results 11 comments of Shaun Thomas

Can you confirm that the `repmgrd` daemon is running on all nodes? The logs from at least one node should clearly show if/when disconnections occurred, if it actually disrupted the...

Sync related tables as whole units. Sync the `comments` table, and `user` tables in their entirety. If you need filters like the one you showed here, you need a different...

For what it's worth, EDB provides Postgres Distributed for bi-directional replication that also supports REPLICA IDENTITY FULL. If that's what you meant by "bicentric", there's a purpose-built product made specifically...

That seems to do nothing. I placed the line right above this: ```python sys.path.insert(0, str(Path("repositories/GPTQ-for-LLaMa"))) ``` I'll note that no GPTQ-for-LLaMa exists on my system anywhere. I even made sure...

Alright. so I'm dumb. I added the correct path to the repo. Though this is a somewhat unorthodox method. ```python sys.path.append("/home/bones/build/GPTQ-for-LLaMa") sys.path.insert(0, str(Path("repositories/GPTQ-for-LLaMa"))) ``` Still, the requirement for GPTQ-for-LLaMa isn't...

I find this particular issue somewhat odd. It is not standard for Postgres to become irrecoverable when disk space is exceeded. At worst, in-flight transactions cannot be written and the...

The use case that has the most utility is a multi-statement transaction targeting the master and cascading to the child shards. However, the primary problem is that `pg_shard` obfuscates its...

This was a 9.4.1 release from the PGDG PostgreSQL Apt repo.

That bug report to Postgres was actually me, before we learned that this was happening because the customer had set `default_table_access_method = columnar`. And indeed, setting it back to `heap`...

I'll note that there's a [very lengthy thread](https://www.postgresql.org/message-id/flat/CAJcOf-cXnB5cnMKqWEp2E2z7Mvcd04iLVmV%3DqpFJrR3AcrTS3g%40mail.gmail.com) from the Postgres devs when they had to add their own detection for these types of scenarios. I'm not sure how many...