-
Notifications
You must be signed in to change notification settings - Fork 230
/
Copy pathpublisher_client_config.json
94 lines (94 loc) · 2.78 KB
/
publisher_client_config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"interfaces": {
"google.pubsub.v1.Publisher": {
"retry_codes": {
"non_idempotent": [],
"idempotent": [
"DEADLINE_EXCEEDED",
"UNAVAILABLE"
],
"unavailable": [
"UNAVAILABLE"
],
"cancelled_unknown_deadline_exceeded_resource_exhausted_aborted_internal_unavailable": [
"CANCELLED",
"UNKNOWN",
"DEADLINE_EXCEEDED",
"RESOURCE_EXHAUSTED",
"ABORTED",
"INTERNAL",
"UNAVAILABLE"
],
"unknown_aborted_unavailable": [
"UNKNOWN",
"ABORTED",
"UNAVAILABLE"
]
},
"retry_params": {
"default": {
"initial_retry_delay_millis": 100,
"retry_delay_multiplier": 1.3,
"max_retry_delay_millis": 60000,
"initial_rpc_timeout_millis": 60000,
"rpc_timeout_multiplier": 1,
"max_rpc_timeout_millis": 60000,
"total_timeout_millis": 600000
}
},
"methods": {
"CreateTopic": {
"timeout_millis": 60000,
"retry_codes_name": "unavailable",
"retry_params_name": "default"
},
"UpdateTopic": {
"timeout_millis": 60000,
"retry_codes_name": "unavailable",
"retry_params_name": "default"
},
"Publish": {
"timeout_millis": 60000,
"retry_codes_name": "cancelled_unknown_deadline_exceeded_resource_exhausted_aborted_internal_unavailable",
"retry_params_name": "default",
"bundling": {
"element_count_threshold": 100,
"request_byte_threshold": 1048576,
"delay_threshold_millis": 10,
"element_count_limit": 1000
}
},
"GetTopic": {
"timeout_millis": 60000,
"retry_codes_name": "unknown_aborted_unavailable",
"retry_params_name": "default"
},
"ListTopics": {
"timeout_millis": 60000,
"retry_codes_name": "unknown_aborted_unavailable",
"retry_params_name": "default"
},
"ListTopicSubscriptions": {
"timeout_millis": 60000,
"retry_codes_name": "unknown_aborted_unavailable",
"retry_params_name": "default"
},
"ListTopicSnapshots": {
"timeout_millis": 60000,
"retry_codes_name": "unknown_aborted_unavailable",
"retry_params_name": "default"
},
"DeleteTopic": {
"timeout_millis": 60000,
"retry_codes_name": "unavailable",
"retry_params_name": "default"
},
"DetachSubscription": {
"timeout_millis": 60000,
"retry_codes_name": "unavailable",
"retry_params_name": "default"
}
}
}
}
}