forked from Thriftpy/thriftpy2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstorm.py
407 lines (292 loc) · 14.9 KB
/
storm.py
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
# -*- coding: utf-8 -*-
"""
This file shows what dynamically generated
"""
from thriftpy2.thrift import (
TPayload,
TException,
TType,
)
class JavaObjectArg(TPayload):
thrift_spec = {1: (TType.I32, 'int_arg', False),
2: (TType.I64, 'long_arg', False),
3: (TType.STRING, 'string_arg', False),
4: (TType.BOOL, 'bool_arg', False),
5: (TType.BINARY, 'binary_arg', False),
6: (TType.DOUBLE, 'double_arg', False)}
class JavaObject(TPayload):
thrift_spec = {1: (TType.STRING, 'full_class_name'),
2: (TType.LIST, 'args_list', (TType.STRUCT,
JavaObjectArg))}
class NullStruct(TPayload):
thrift_spec = {}
class GlobalStreamId(TPayload):
thrift_spec = {1: (TType.STRING, 'componentId'),
2: (TType.STRING, 'streamId')}
class Grouping(TPayload):
thrift_spec = {1: (TType.LIST, 'fields', TType.STRING),
2: (TType.STRUCT, 'shuffle', NullStruct),
3: (TType.STRUCT, 'all', NullStruct),
4: (TType.STRUCT, 'none', NullStruct),
5: (TType.STRUCT, 'direct', NullStruct),
6: (TType.STRUCT, 'custom_object', JavaObject),
7: (TType.BINARY, 'custom_serialized'),
8: (TType.STRUCT, 'local_or_shuffle', NullStruct)}
class StreamInfo(TPayload):
thrift_spec = {1: (TType.LIST, 'output_fields', TType.STRING),
2: (TType.BOOL, 'direct')}
class ShellComponent(TPayload):
thrift_spec = {1: (TType.STRING, 'execution_command'),
2: (TType.STRING, 'script')}
class ComponentObject(TPayload):
thrift_spec = {1: (TType.BINARY, 'serialized_java'),
2: (TType.STRUCT, 'shell', ShellComponent),
3: (TType.STRUCT, 'java_object', JavaObject)}
class ComponentCommon(TPayload):
thrift_spec = {1: (TType.MAP, 'inputs', ((TType.STRUCT, GlobalStreamId),
(TType.STRUCT, Grouping))),
2: (TType.MAP, 'streams', (TType.STRING, (TType.STRUCT,
StreamInfo))),
3: (TType.I32, 'parallelism_hint'),
4: (TType.STRING, 'json_conf')}
class SpoutSpec(TPayload):
thrift_spec = {1: (TType.STRUCT, 'spout_object', ComponentObject),
2: (TType.STRUCT, 'common', ComponentCommon)}
class Bolt(TPayload):
thrift_spec = {1: (TType.STRUCT, 'bolt_object', ComponentObject),
2: (TType.STRUCT, 'common', ComponentCommon)}
class StateSpoutSpec(TPayload):
thrift_spec = {1: (TType.STRUCT, 'state_spout_object', ComponentObject),
2: (TType.STRUCT, 'common', ComponentCommon)}
class StormTopology(TPayload):
thrift_spec = {1: (TType.MAP, 'spouts', (TType.STRING, (TType.STRUCT,
SpoutSpec))),
2: (TType.MAP, 'bolts', (TType.STRING, (TType.STRUCT,
Bolt))),
3: (TType.MAP, 'state_spouts', (TType.STRING,
(TType.STRUCT,
StateSpoutSpec)))}
class AlreadyAliveException(TException):
thrift_spec = {1: (TType.STRING, 'msg')}
class NotAliveException(TException):
thrift_spec = {1: (TType.STRING, 'msg')}
class InvalidTopologyException(TException):
thrift_spec = {1: (TType.STRING, 'msg')}
class TopologySummary(TPayload):
thrift_spec = {1: (TType.STRING, 'id'),
2: (TType.STRING, 'name'),
3: (TType.I32, 'num_tasks'),
4: (TType.I32, 'num_executors'),
5: (TType.I32, 'num_workers'),
6: (TType.I32, 'uptime_secs'),
7: (TType.STRING, 'status')}
class SupervisorSummary(TPayload):
thrift_spec = {1: (TType.STRING, 'host'),
2: (TType.I32, 'uptime_secs'),
3: (TType.I32, 'num_workers'),
4: (TType.I32, 'num_used_workers'),
5: (TType.STRING, 'supervisor_id')}
class ClusterSummary(TPayload):
thrift_spec = {1: (TType.LIST, 'supervisors', (TType.STRUCT,
SupervisorSummary)),
2: (TType.I32, 'nimbus_uptime_secs'),
3: (TType.LIST, 'topologies', (TType.STRUCT,
TopologySummary))}
class ErrorInfo(TPayload):
thrift_spec = {1: (TType.STRING, 'error', False),
2: (TType.I32, 'error_time_secs', False)}
class BoltStats(TPayload):
thrift_spec = {1: (TType.MAP, 'acked', (TType.STRING, (TType.MAP,
((TType.STRUCT,
GlobalStreamId),
TType.I64)))),
2: (TType.MAP, 'failed', (TType.STRING, (TType.MAP,
((TType.STRUCT,
GlobalStreamId),
TType.I64)))),
3: (TType.MAP, 'process_ms_avg', (TType.STRING,
(TType.MAP,
((TType.STRUCT,
GlobalStreamId),
TType.DOUBLE)))),
4: (TType.MAP, 'executed', (TType.STRING,
(TType.MAP, ((TType.STRUCT,
GlobalStreamId),
TType.I64)))),
5: (TType.MAP, 'execute_ms_avg', (TType.STRING,
(TType.MAP,
((TType.STRUCT,
GlobalStreamId),
TType.DOUBLE))))}
class SpoutStats(TPayload):
thrift_spec = {1: (TType.MAP, 'acked', (TType.STRING, (TType.MAP,
(TType.STRING,
TType.I64)))),
2: (TType.MAP, 'failed', (TType.STRING, (TType.MAP,
(TType.STRING,
TType.I64)))),
3: (TType.MAP, 'complete_ms_avg', (TType.STRING,
(TType.MAP,
(TType.STRING,
TType.DOUBLE))))}
class ExecutorSpecificStats(TPayload):
thrift_spec = {1: (TType.STRUCT, 'bolt', BoltStats),
2: (TType.STRUCT, 'spout', SpoutStats)}
class ExecutorStats(TPayload):
thrift_spec = {1: (TType.MAP, 'emitted', (TType.STRING, (TType.MAP,
(TType.STRING,
TType.I64)))),
2: (TType.MAP, 'transferred', (TType.STRING,
(TType.MAP, (TType.STRING,
TType.I64)))),
3: (TType.STRUCT, 'specific', ExecutorSpecificStats)}
class ExecutorInfo(TPayload):
thrift_spec = {1: (TType.I32, 'task_start'),
2: (TType.I32, 'task_end')}
class ExecutorSummary(TPayload):
thrift_spec = {1: (TType.STRUCT, 'executor_info', ExecutorInfo),
2: (TType.STRING, 'component_id'),
3: (TType.STRING, 'host'),
4: (TType.I32, 'port'),
5: (TType.I32, 'uptime_secs'),
7: (TType.STRUCT, 'stats', ExecutorStats)}
class TopologyInfo(TPayload):
thrift_spec = {1: (TType.STRING, 'id'),
2: (TType.STRING, 'name'),
3: (TType.I32, 'uptime_secs'),
4: (TType.LIST, 'executors', (TType.STRUCT,
ExecutorSummary)),
5: (TType.STRING, 'status'),
6: (TType.MAP, 'errors', (TType.STRING, (TType.LIST,
(TType.STRUCT,
ErrorInfo))))}
class KillOptions(TPayload):
thrift_spec = {1: (TType.I32, 'wait_secs')}
class RebalanceOptions(TPayload):
thrift_spec = {1: (TType.I32, 'wait_secs'),
2: (TType.I32, 'num_workers'),
3: (TType.MAP, 'num_executors', (TType.STRING, TType.I32))}
class TopologyInitialStatus(object):
ACTIVE = 1
INACTIVE = 2
class SubmitOptions(TPayload):
thrift_spec = {1: (TType.I32, 'initial_status')}
class Nimbus(object):
''' Nimbus service '''
class submitTopology_args(TPayload):
thrift_spec = {1: (TType.STRING, 'name'),
2: (TType.STRING, 'uploadedJarLocation'),
3: (TType.STRING, 'jsonConf'),
4: (TType.STRUCT, 'topology', StormTopology)}
class submitTopology_result(TPayload):
thrift_spec = {1: (TType.STRUCT, 'e', AlreadyAliveException),
2: (TType.STRUCT, 'ite', InvalidTopologyException)}
class submitTopologyWithOpts_args(TPayload):
thrift_spec = {1: (TType.STRING, 'name'),
2: (TType.STRING, 'uploadedJarLocation'),
3: (TType.STRING, 'jsonConf'),
4: (TType.STRUCT, 'topology', StormTopology),
5: (TType.STRUCT, 'options', SubmitOptions)}
class submitTopologyWithOpts_result(TPayload):
thrift_spec = {1: (TType.STRUCT, 'e', AlreadyAliveException),
2: (TType.STRUCT, 'ite', InvalidTopologyException)}
class killTopology_args(TPayload):
thrift_spec = {1: (TType.STRING, 'name')}
class killTopology_result(TPayload):
thrift_spec = {1: (TType.STRUCT, 'e', NotAliveException)}
class killTopologyWithOpts_args(TPayload):
thrift_spec = {1: (TType.STRING, 'name'),
2: (TType.STRUCT, 'options', KillOptions)}
class killTopologyWithOpts_result(TPayload):
thrift_spec = {1: (TType.STRUCT, 'e', NotAliveException)}
class activate_args(TPayload):
thrift_spec = {1: (TType.STRING, 'name')}
class activate_result(TPayload):
thrift_spec = {1: (TType.STRUCT, 'e', NotAliveException)}
class deactivate_args(TPayload):
thrift_spec = {1: (TType.STRING, 'name')}
class deactivate_result(TPayload):
thrift_spec = {1: (TType.STRUCT, 'e', NotAliveException)}
class rebalance_args(TPayload):
thrift_spec = {1: (TType.STRING, 'name'),
2: (TType.STRUCT, 'options', RebalanceOptions)}
class rebalance_result(TPayload):
thrift_spec = {1: (TType.STRUCT, 'e', NotAliveException),
2: (TType.STRUCT, 'ite', InvalidTopologyException)}
class beginFileUpload_args(TPayload):
thrift_spec = {}
class beginFileUpload_result(TPayload):
thrift_spec = {0: (TType.STRING, 'success')}
class uploadChunk_args(TPayload):
thrift_spec = {1: (TType.STRING, 'location'),
2: (TType.BINARY, 'chunk')}
class uploadChunk_result(TPayload):
thrift_spec = {}
class finishFileUpload_args(TPayload):
thrift_spec = {1: (TType.STRING, 'location')}
class finishFileUpload_result(TPayload):
thrift_spec = {}
class beginFileDownload_args(TPayload):
thrift_spec = {1: (TType.STRING, 'file')}
class beginFileDownload_result(TPayload):
thrift_spec = {0: (TType.STRING, 'success')}
class downloadChunk_args(TPayload):
thrift_spec = {1: (TType.STRING, 'id')}
class downloadChunk_result(TPayload):
thrift_spec = {0: (TType.BINARY, 'success')}
class getNimbusConf_args(TPayload):
thrift_spec = {}
class getNimbusConf_result(TPayload):
thrift_spec = {0: (TType.STRING, 'success')}
class getClusterInfo_args(TPayload):
thrift_spec = {}
class getClusterInfo_result(TPayload):
thrift_spec = {0: (TType.STRUCT, 'success', ClusterSummary)}
class getTopologyInfo_args(TPayload):
thrift_spec = {1: (TType.STRING, 'id')}
class getTopologyInfo_result(TPayload):
thrift_spec = {0: (TType.STRUCT, 'success', TopologyInfo),
1: (TType.STRUCT, 'e', NotAliveException)}
class getTopologyConf_args(TPayload):
thrift_spec = {1: (TType.STRING, 'id')}
class getTopologyConf_result(TPayload):
thrift_spec = {0: (TType.STRING, 'success'),
1: (TType.STRUCT, 'e', NotAliveException)}
class getTopology_args(TPayload):
thrift_spec = {1: (TType.STRING, 'id')}
class getTopology_result(TPayload):
thrift_spec = {0: (TType.STRUCT, 'success', StormTopology),
1: (TType.STRUCT, 'e', NotAliveException)}
class getUserTopology_args(TPayload):
thrift_spec = {1: (TType.STRING, 'id')}
class getUserTopology_result(TPayload):
thrift_spec = {0: (TType.STRUCT, 'success', StormTopology),
1: (TType.STRUCT, 'e', NotAliveException)}
class DRPCRequest(TPayload):
thrift_spec = {1: (TType.STRING, 'func_args'),
2: (TType.STRING, 'request_id')}
class DRPCExecutionException(TException):
thrift_spec = {1: (TType.STRING, 'msg')}
class DistributedRPC(object):
''' DistributedRPC service '''
class execute_args(TPayload):
thrift_spec = {1: (TType.STRING, 'functionName'),
2: (TType.STRING, 'funcArgs')}
class execute_result(TPayload):
thrift_spec = {0: (TType.STRING, 'success'),
1: (TType.STRUCT, 'e', DRPCExecutionException)}
class DistributedRPCInvocations(object):
''' DistributedRPCInvocations service '''
class result_args(TPayload):
thrift_spec = {1: (TType.STRING, 'id'),
2: (TType.STRING, 'result')}
class result_result(TPayload):
thrift_spec = {}
class fetchRequest_args(TPayload):
thrift_spec = {1: (TType.STRING, 'functionName')}
class fetchRequest_result(TPayload):
thrift_spec = {0: (TType.STRUCT, 'success', DRPCRequest)}
class failRequest_args(TPayload):
thrift_spec = {1: (TType.STRING, 'id')}
class failRequest_result(TPayload):
thrift_spec = {}