mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-03 12:16:10 +00:00
docs(ingest): update max_threads default value (#7947)
Co-authored-by: Felipe Ribeiro <fribeiro@fanatics.com>
This commit is contained in:
parent
36cb2b0b3b
commit
d504cbd1b6
@ -60,7 +60,7 @@ def get_base() -> Any:
|
||||
"max_threads": {
|
||||
"type": "number",
|
||||
"description": "Experimental: Max parallelism for REST API calls",
|
||||
"default": 1,
|
||||
"default": 15,
|
||||
},
|
||||
"retry_status_codes": {
|
||||
"type": "array",
|
||||
|
||||
@ -64,7 +64,7 @@ Note that a `.` is used to denote nested fields in the YAML recipe.
|
||||
| `retry_status_codes` | | [429, 502, 503, 504] | Retry HTTP request also on these status codes |
|
||||
| `token` | | | Bearer token used for authentication. |
|
||||
| `extra_headers` | | | Extra headers which will be added to the request. |
|
||||
| `max_threads` | | `1` | Experimental: Max parallelism for REST API calls |
|
||||
| `max_threads` | | `15` | Experimental: Max parallelism for REST API calls |
|
||||
| `ca_certificate_path` | | | Path to CA certificate for HTTPS communications |
|
||||
| `disable_ssl_verification` | | false | Disable ssl certificate validation |
|
||||
|
||||
|
||||
@ -19,7 +19,7 @@ datahub_client_configs: Dict[str, Any] = {
|
||||
"token": "dummy_test_tok",
|
||||
"timeout_sec": 10,
|
||||
"extra_headers": {},
|
||||
"max_threads": 1,
|
||||
"max_threads": 15,
|
||||
},
|
||||
"simple": {},
|
||||
"default": {},
|
||||
@ -49,7 +49,7 @@ checkpointing_provider_config_test_params: Dict[
|
||||
token="dummy_test_tok",
|
||||
timeout_sec=10,
|
||||
extra_headers={},
|
||||
max_threads=1,
|
||||
max_threads=15,
|
||||
),
|
||||
),
|
||||
False,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user