citus
citus copied to clipboard
Distributed PostgreSQL as an extension
``` DROP TABLE IF EXISTS t1; create table t1 ( vkey int4 , c10 int4 ); DROP TABLE IF EXISTS t3; create table t3 ( vkey int4 ); insert into...
``` DROP TABLE IF EXISTS t1; create table t1 ( vkey int4 ); DROP TABLE IF EXISTS t2; create table t2 ( vkey int4 ); insert into t2 (vkey) values...
``` DROP TABLE IF EXISTS t0; create table t0 ( vkey int4 , c3 timestamp ); DROP TABLE IF EXISTS t3; create table t3 ( vkey int4 , c26 timestamp...
My Coordinator node have a folder pgsql_job_cache , recently size grows unusually large , this size is larger than folder data on this node . So what is the reason...
`curl -s https://install.citusdata.com/community/deb.sh | bash` does not eventually set up repository. It displays an error message of: ``` Importing Citus Data Community gpg key... curl: (22) The requested URL returned...
src/backend/distributed/utils/background_jobs.c In the function static TaskExecutionStatus TaskConcurrentCancelCheck() ``` if (!task || task->status == BACKGROUND_TASK_STATUS_CANCELLING) \\ entering the condition if the task value is NULL { ... ereport(LOG, (errmsg( "task jobid/taskid...
Here's a suggested description for your PR based on the issue: --- ### Description This PR enhances shard moves and splits by adding the `FREEZE` option to the `COPY` command,...
Query no longer returns the correct result after distributing table: sandbox=# CREATE TABLE test ( attribute1 varchar(255), attribute2 varchar(255), attribute3 varchar(255) ); CREATE TABLE sandbox=# INSERT INTO test (attribute1, attribute2,...
Hi, Does the latest Citus support the spatial join operators that are provided from PostGis? This is because it seems the Citus documents shows that it fully supports what PostGis...
## Description - two tables were created in a single node cluster, with text type but different collations ( C versus default) - both tables were distributed using create distributed...