File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ Note that a `.` is used to denote nested fields in the YAML recipe.
35
35
| Field | Required | Default | Description |
36
36
| -------- | -------- | ------- | ---------------------------- |
37
37
| `server` | ✅ | | URL of DataHub GMS endpoint. |
38
- | `timeout_sec` | | 2 | Per-HTTP request timeout. |
38
+ | `timeout_sec` | | 30 | Per-HTTP request timeout. |
39
39
40
40
# # DataHub Kafka
41
41
Original file line number Diff line number Diff line change @@ -39,9 +39,9 @@ def _make_curl_command(
39
39
40
40
41
41
class DatahubRestEmitter :
42
- DEFAULT_CONNECT_TIMEOUT_SEC = 10 # 10 seconds should be plenty to connect
42
+ DEFAULT_CONNECT_TIMEOUT_SEC = 30 # 30 seconds should be plenty to connect
43
43
DEFAULT_READ_TIMEOUT_SEC = (
44
- 2 # Any ingest call taking longer than 2 seconds should be abandoned
44
+ 30 # Any ingest call taking longer than 30 seconds should be abandoned
45
45
)
46
46
47
47
_gms_server : str
You can’t perform that action at this time.
0 commit comments