colton-citus

Results 12 issues of colton-citus

Current Docker config does not have persistent storage configured, and may lose data unexpectedly. This issue is being opened to suggest adding default volumes with a docker-config like this: ```...

Link: http://docs.citusdata.com/en/v8.2/develop/api_guc.html#citus-shard-max-size-integer I had a customer get confused about shard_max_size and think it applied to hash partitioning. Please update this page to mention that it most likely doesn't apply to...

There is no current documentation showing how to set up read replicas in Citus Enterprise or Open Source, and this is a common enough request that it should probably have...

This is a config that's frequently used in Hyperscale and Enterprise developments, and one that I change routinely. I recently noticed that it's not in the docs and that it...

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;...

We apparently don't use a standard StatsD format, and instead use some kind of Datadog-enhanced statsd format. We should probably add information on this to the following page: http://docs.citusdata.com/en/v8.1/cloud/monitoring.html#statsd-external-reporting

Datadog setup steps need to include whitelisting inbound UDP port 8125 traffic on the system running datadog. There should probably be an example Amazon security group config for this, but...

Rails app migration steps in docs has discrepancy in distribution key that's not present in example rails app. create_table :page_views, partition_key: :customer_id do |t| create_distributed_table :page_views, :account_id I believe that...

Problem is on following page: http://docs.citusdata.com/en/v7.5/develop/migration_data_small.html pg_restore syntax is missing SSL mode required to connect to Citus Cloud or be secure in general. 2 suggested ways of fixing this: 1....

http://docs.citusdata.com/en/v7.5/develop/api_udf.html#rebalance-table-shards This should make it more clear that, when you choose a table to rebalance, all co-located tables also get rebalanced with it. ## Why are we implementing it? (sales...