Jelte Fennema-Nio
Jelte Fennema-Nio
There's not really a built in way to remove a node if you want to allow for data loss. The only way is to replace it with another one using...
> In other words, if we lose one node, we lose the cluster. Correct? If you don't have backups of your nodes, yes. Otherwise you can create a new node...
> How can I do it? I didn't find a way to manually create shards in the documentation. Maybe some function from the coordinator? I really meant really manually, i.e....
The first method of CREATE USER is correct (`run_command_on_workers` is not needed for this). The issue there sounds like Stackgres does not set up communication correctly between nodes for the...
Just like #7551 I don't consider this a problematic crash. It's again a function that's only supposed to be used in our tests. Feel free to submit a PR to...
Another option could be to stop caching this graph and only get the information we need on the fly. But that would need some investigation into when we actually use...
Thank you for the contribution. This seems like a really nice improvement. For it to actually do something you have to create the relevant 12.2-1.sql files by copying latest.sql. See...
Ah, sorry I guess I wasn't clear before. You shouldn't update the old sql files. You should create: - src/backend/distributed/sql/udfs/create_time_partitions/12.1-1.sql - src/backend/distributed/sql/udfs/drop_old_time_partitions/12.1-1.sql And `#include` those in: src/backend/distributed/sql/citus--12.0-1--12.1-1.sql And do the...
I'm sorry, I messed up the version numbers in my previous message. Corrected below: You shouldn't update the old sql files. You should create: - src/backend/distributed/sql/udfs/create_time_partitions/12.2-1.sql - src/backend/distributed/sql/udfs/drop_old_time_partitions/12.2-1.sql And `#include`...
You didn't do this part yet: > And `#include` those in: src/backend/distributed/sql/citus--12.1-1--12.2-1.sql > > And do the reverse includes in: src/backend/distributed/sql/downgrades/citus--12.2-1--12.1-1.sql And you also need to update the `latest.sql` files...