citusdata / citusdata/citus_docs
Document clearing data from coordinator
Open
- Dominant language
- CSS
- Stars
- 58
- Forks
- 60
- PR merge metrics
- No merged PRs in 30d
Description
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;
SET citus.enable_ddl_propagation TO true;
```
Contributor guide
Assessment
This issue has not been assessed yet.