Skip to content

Commit 0c8edcc

Browse files
committed
slightly improve README.md (partition_table_concurrently)
1 parent 4810082 commit 0c8edcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ partition_table_concurrently(relation REGCLASS,
128128
batch_size INTEGER DEFAULT 1000,
129129
sleep_time FLOAT8 DEFAULT 1.0)
130130
```
131-
Starts a background worker to move data from parent table to partitions. The worker utilizes short transactions to copy small batches of data (up to 10K rows per transaction) and thus doesn't significantly interfere with user's activity. If the worker is unable to lock rows of a batch, it sleeps for `sleep_time` seconds up to 60 times before the next attempt, and quits if it's still unable to lock the batch.
131+
Starts a background worker to move data from parent table to partitions. The worker utilizes short transactions to copy small batches of data (up to 10K rows per transaction) and thus doesn't significantly interfere with user's activity. If the worker is unable to lock rows of a batch, it sleeps for `sleep_time` seconds before the next attempt and tries again up to 60 times, and quits if it's still unable to lock the batch.
132132

133133
```plpgsql
134134
stop_concurrent_part_task(relation REGCLASS)

0 commit comments

Comments
 (0)