Skip to content

Commit 740d9b8

Browse files
committed
lint: present tense
1 parent 793be14 commit 740d9b8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/integrations/data-ingestion/clickpipes/mysql/parallel_initial_load.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ Let's talk about the below settings:
3434
<Image img={snapshot_params} alt="Snapshot parameters" size="md"/>
3535

3636
#### Snapshot number of rows per partition {#numrows-mysql-snapshot}
37-
This setting controls how many rows constitute a partition. The ClickPipe will read the source table in chunks of this size, and chunks will be processed in parallel based on the initial load parallelism set. The default value is 100,000 rows per partition.
37+
This setting controls how many rows constitute a partition. The ClickPipe will read the source table in chunks of this size, and chunks are processed in parallel based on the initial load parallelism set. The default value is 100,000 rows per partition.
3838

3939
#### Initial load parallelism {#parallelism-mysql-snapshot}
40-
This setting controls how many partitions will be processed in parallel. The default value is 4, which means that the ClickPipe will read 4 partitions of the source table in parallel. This can be increased to speed up the initial load, but it is recommended to keep it to a reasonable value depending on your source instance specs to avoid overwhelming the source database. The ClickPipe will automatically adjust the number of partitions based on the size of the source table and the number of rows per partition.
40+
This setting controls how many partitions are processed in parallel. The default value is 4, which means that the ClickPipe will read 4 partitions of the source table in parallel. This can be increased to speed up the initial load, but it is recommended to keep it to a reasonable value depending on your source instance specs to avoid overwhelming the source database. The ClickPipe will automatically adjust the number of partitions based on the size of the source table and the number of rows per partition.
4141

4242
#### Snapshot number of tables in parallel {#tables-parallel-mysql-snapshot}
43-
Not really related to parallel snapshot, but this setting controls how many tables will be processed in parallel during the initial load. The default value is 1. Note that is on top of the parallelism of the partitions, so if you have 4 partitions and 2 tables, the ClickPipe will read 8 partitions in parallel.
43+
Not really related to parallel snapshot, but this setting controls how many tables are processed in parallel during the initial load. The default value is 1. Note that is on top of the parallelism of the partitions, so if you have 4 partitions and 2 tables, the ClickPipe will read 8 partitions in parallel.
4444

4545
### Monitoring parallel snapshot in MySQL {#monitoring-parallel-mysql-snapshot}
4646
You can run **SHOW processlist** in MySQL to see the parallel snapshot in action. The ClickPipe will create multiple connections to the source database, each reading a different partition of the source table. If you see **SELECT** queries with different ranges, it means that the ClickPipe is reading the source tables. You can also see the COUNT(*) and the partitioning query in here.
4747

4848
### Limitations {#limitations-parallel-mysql-snapshot}
4949
- The snapshot parameters cannot be edited after pipe creation. If you want to change them, you will have to create a new ClickPipe.
5050
- When adding tables to an existing ClickPipe, you cannot change the snapshot parameters. The ClickPipe will use the existing parameters for the new tables.
51-
- The partition key column should not contain `NULL`s, as they will be skipped by the partitioning logic.
51+
- The partition key column should not contain `NULL`s, as they are skipped by the partitioning logic.

docs/integrations/data-ingestion/clickpipes/postgres/parallel_initial_load.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ Let's talk about the below settings:
2727

2828
#### Snapshot number of rows per partition {#numrows-pg-snapshot}
2929

30-
This setting controls how many rows constitute a partition. The ClickPipe will read the source table in chunks of this size, and chunks will be processed in parallel based on the initial load parallelism set. The default value is 100,000 rows per partition.
30+
This setting controls how many rows constitute a partition. The ClickPipe will read the source table in chunks of this size, and chunks are processed in parallel based on the initial load parallelism set. The default value is 100,000 rows per partition.
3131

3232
#### Initial load parallelism {#parallelism-pg-snapshot}
3333

34-
This setting controls how many partitions will be processed in parallel. The default value is 4, which means that the ClickPipe will read 4 partitions of the source table in parallel. This can be increased to speed up the initial load, but it is recommended to keep it to a reasonable value depending on your source instance specs to avoid overwhelming the source database. The ClickPipe will automatically adjust the number of partitions based on the size of the source table and the number of rows per partition.
34+
This setting controls how many partitions are processed in parallel. The default value is 4, which means that the ClickPipe will read 4 partitions of the source table in parallel. This can be increased to speed up the initial load, but it is recommended to keep it to a reasonable value depending on your source instance specs to avoid overwhelming the source database. The ClickPipe will automatically adjust the number of partitions based on the size of the source table and the number of rows per partition.
3535

3636
#### Snapshot number of tables in parallel {#tables-parallel-pg-snapshot}
3737

38-
Not really related to parallel snapshot, but this setting controls how many tables will be processed in parallel during the initial load. The default value is 1. Note that is on top of the parallelism of the partitions, so if you have 4 partitions and 2 tables, the ClickPipe will read 8 partitions in parallel.
38+
Not really related to parallel snapshot, but this setting controls how many tables are processed in parallel during the initial load. The default value is 1. Note that is on top of the parallelism of the partitions, so if you have 4 partitions and 2 tables, the ClickPipe will read 8 partitions in parallel.
3939

4040
### Monitoring parallel snapshot in Postgres {#monitoring-parallel-pg-snapshot}
4141

@@ -45,4 +45,4 @@ You can analyze **pg_stat_activity** to see the parallel snapshot in action. The
4545

4646
- The snapshot parameters cannot be edited after pipe creation. If you want to change them, you will have to create a new ClickPipe.
4747
- When adding tables to an existing ClickPipe, you cannot change the snapshot parameters. The ClickPipe will use the existing parameters for the new tables.
48-
- The partition key column should not contain `NULL`s, as they will be skipped by the partitioning logic.
48+
- The partition key column should not contain `NULL`s, as they are skipped by the partitioning logic.

0 commit comments

Comments
 (0)