Skip to content

Commit cca56d3

Browse files
minor changes
1 parent 9303948 commit cca56d3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/common_patterns_for_connectors/parallel_fetching_from_source/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ The connector requires the following configuration parameters in `configuration.
1313
"region_name": "<YOUR_AWS_REGION_NAME>",
1414
"bucket_name": "<YOUR_AWS_BUCKET_NAME>",
1515
"prefix": "<YOUR_AWS_FOLDER_NAME>",
16-
"max_workers": "<NUMBER_OF_PARALLEL_WORKERS>"
16+
"max_workers": "<NUMBER_OF_THREADS>"
1717
}
1818
```
1919

2020
- `aws_access_key_id` and `aws_secret_access_key`: AWS credentials with read access to your S3 bucket
2121
- `region_name`: AWS region where your bucket is located
2222
- `bucket_name`: Name of the S3 bucket containing your CSV files
2323
- `prefix`: Folder path in the bucket where CSV files are stored (optional, defaults to root "/" if not specified)
24-
- `max_workers`: Number of parallel threads to use (optional, defaults to 4 if not specified)
24+
- `max_workers`: Number of threads to use (optional, defaults to 4 if not specified)
2525

2626
### Key Functions
2727

examples/common_patterns_for_connectors/parallel_fetching_from_source/configuration.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"region_name": "<YOUR_AWS_REGION_NAME>",
55
"bucket_name": "<YOUR_AWS_BUCKET_NAME>",
66
"prefix": "<YOUR_AWS_FOLDER_NAME>",
7-
"max_workers": "<NUMBER_OF_PARALLEL_WORKERS>"
7+
"max_workers": "<NUMBER_OF_THREADS>"
88
}

0 commit comments

Comments
 (0)