citus_docs icon indicating copy to clipboard operation
citus_docs copied to clipboard

Documentation for Citus. Distributed PostgreSQL as an extension.

Results 126 citus_docs issues
Sort by recently updated
recently updated
newest added

Document that Citus can run on PG 10, and that Cloud in particular runs on that version. This might be considered to encompass #446 .

cloud

## Why are we implementing it? (sales eng) ### What are the typical use cases? People using psql want to use a shortcut to find table size. In psql this...

## Why are we implementing it? (sales eng) I upgraded my Docker image yesterday and restarted a local Citus cluster. I then connected to the coordinator node using the instructions...

When I use `..code-block:: psql` in our documentation, only the first code line gets formatted. Subsequent code block lines are formatted in grey. For example, the following section in our...

The following question on AGPL came in a conversation on Hacker News (re: Reasonable question on AGPL in HN post). We think the AGPL restriction doesn't apply in this case,...

## Why are we implementing it? (sales eng) ### What are the typical use cases? ## Communication goals (e.g. detailed howto vs orientation) ### Good locations for content in docs...

This came up in a conversation with @marcocitus and I'm opening an issue to capture it. One of the questions we frequently hear from users is, "When is the right...

We have the following note as part of the bulk loading section: "There is no notion of snapshot isolation across shards, which means that a multi-shard SELECT that runs concurrently...

## Why are we implementing it? (sales eng) There have been some new catalog tables added to citus last year that are not in the upgrade description. Tables that come...

If user takes the following steps, data will be left on coordinator: 1. Create table 2. Load data 3. Distribute table Fix: ``` SET citus.enable_ddl_propagation TO false; TRUNCATE TABLE target_table;...