apache-iotdb 2.0.4__tar.gz → 2.0.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/PKG-INFO +1 -1
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/apache_iotdb.egg-info/PKG-INFO +1 -1
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/common/ttypes.py +156 -21
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/confignode/IConfigNodeRPCService.py +840 -118
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/confignode/ttypes.py +1007 -483
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/datanode/IDataNodeRPCService.py +198 -8
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/datanode/ttypes.py +577 -454
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/rpc/IClientRPCService.py +201 -12
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/rpc/ttypes.py +306 -146
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/pyproject.toml +1 -1
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/sqlalchemy/test_dialect.py +1 -1
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/README.md +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/apache_iotdb.egg-info/SOURCES.txt +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/apache_iotdb.egg-info/dependency_links.txt +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/apache_iotdb.egg-info/entry_points.txt +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/apache_iotdb.egg-info/requires.txt +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/apache_iotdb.egg-info/top_level.txt +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/Session.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/SessionPool.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/dbapi/Connection.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/dbapi/Cursor.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/dbapi/Exceptions.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/dbapi/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/sqlalchemy/IoTDBDialect.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/sqlalchemy/IoTDBIdentifierPreparer.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/sqlalchemy/IoTDBSQLCompiler.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/sqlalchemy/IoTDBTypeCompiler.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/sqlalchemy/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/table_session.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/table_session_pool.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/template/MeasurementNode.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/template/Template.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/template/TemplateNode.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/template/TemplateQueryType.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/template/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/common/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/common/constants.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/confignode/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/confignode/constants.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/datanode/MPPDataExchangeService.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/datanode/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/datanode/constants.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/rpc/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/thrift/rpc/constants.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/tsfile/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/tsfile/common/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/tsfile/common/constant/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/tsfile/common/constant/tsfile_constant.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/tsfile/utils/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/tsfile/utils/date_utils.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/tsfile/utils/pair.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/tsfile/utils/read_write_io_utils.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/tsfile/utils/tsblock_serde.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/utils/BitMap.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/utils/Field.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/utils/IoTDBConstants.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/utils/NumpyTablet.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/utils/RowRecord.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/utils/SessionDataSet.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/utils/Tablet.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/utils/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/utils/exception.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/utils/iotdb_rpc_dataset.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/iotdb/utils/rpc_utils.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/setup.cfg +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/dbapi/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/dbapi/test_connection.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/dbapi/test_cursor.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/iotdb_container.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/sqlalchemy/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/tablet_performance_comparison.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/test_aligned_timeseries.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/test_dataframe.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/test_delete_data.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/test_new_data_types.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/test_one_device.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/test_relational_session.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/test_session.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/test_session_pool.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/test_tablemodel_insert.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/test_tablemodel_query.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/test_tablet.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/test_todf.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/integration/test_treemodel_insert.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/unit/__init__.py +0 -0
- {apache_iotdb-2.0.4 → apache_iotdb-2.0.5}/tests/unit/test_numpy_tablet.py +0 -0
|
@@ -162,6 +162,7 @@ class TAggregationType(object):
|
|
|
162
162
|
MAX = 28
|
|
163
163
|
COUNT_ALL = 29
|
|
164
164
|
APPROX_COUNT_DISTINCT = 30
|
|
165
|
+
APPROX_MOST_FREQUENT = 31
|
|
165
166
|
|
|
166
167
|
_VALUES_TO_NAMES = {
|
|
167
168
|
0: "COUNT",
|
|
@@ -195,6 +196,7 @@ class TAggregationType(object):
|
|
|
195
196
|
28: "MAX",
|
|
196
197
|
29: "COUNT_ALL",
|
|
197
198
|
30: "APPROX_COUNT_DISTINCT",
|
|
199
|
+
31: "APPROX_MOST_FREQUENT",
|
|
198
200
|
}
|
|
199
201
|
|
|
200
202
|
_NAMES_TO_VALUES = {
|
|
@@ -229,6 +231,7 @@ class TAggregationType(object):
|
|
|
229
231
|
"MAX": 28,
|
|
230
232
|
"COUNT_ALL": 29,
|
|
231
233
|
"APPROX_COUNT_DISTINCT": 30,
|
|
234
|
+
"APPROX_MOST_FREQUENT": 31,
|
|
232
235
|
}
|
|
233
236
|
|
|
234
237
|
|
|
@@ -2283,6 +2286,130 @@ class TSetThrottleQuotaReq(object):
|
|
|
2283
2286
|
return not (self == other)
|
|
2284
2287
|
|
|
2285
2288
|
|
|
2289
|
+
class TPipeHeartbeatResp(object):
|
|
2290
|
+
"""
|
|
2291
|
+
Attributes:
|
|
2292
|
+
- pipeMetaList
|
|
2293
|
+
- pipeCompletedList
|
|
2294
|
+
- pipeRemainingEventCountList
|
|
2295
|
+
- pipeRemainingTimeList
|
|
2296
|
+
|
|
2297
|
+
"""
|
|
2298
|
+
|
|
2299
|
+
|
|
2300
|
+
def __init__(self, pipeMetaList=None, pipeCompletedList=None, pipeRemainingEventCountList=None, pipeRemainingTimeList=None,):
|
|
2301
|
+
self.pipeMetaList = pipeMetaList
|
|
2302
|
+
self.pipeCompletedList = pipeCompletedList
|
|
2303
|
+
self.pipeRemainingEventCountList = pipeRemainingEventCountList
|
|
2304
|
+
self.pipeRemainingTimeList = pipeRemainingTimeList
|
|
2305
|
+
|
|
2306
|
+
def read(self, iprot):
|
|
2307
|
+
if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None:
|
|
2308
|
+
iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec])
|
|
2309
|
+
return
|
|
2310
|
+
iprot.readStructBegin()
|
|
2311
|
+
while True:
|
|
2312
|
+
(fname, ftype, fid) = iprot.readFieldBegin()
|
|
2313
|
+
if ftype == TType.STOP:
|
|
2314
|
+
break
|
|
2315
|
+
if fid == 1:
|
|
2316
|
+
if ftype == TType.LIST:
|
|
2317
|
+
self.pipeMetaList = []
|
|
2318
|
+
(_etype84, _size81) = iprot.readListBegin()
|
|
2319
|
+
for _i85 in range(_size81):
|
|
2320
|
+
_elem86 = iprot.readBinary()
|
|
2321
|
+
self.pipeMetaList.append(_elem86)
|
|
2322
|
+
iprot.readListEnd()
|
|
2323
|
+
else:
|
|
2324
|
+
iprot.skip(ftype)
|
|
2325
|
+
elif fid == 2:
|
|
2326
|
+
if ftype == TType.LIST:
|
|
2327
|
+
self.pipeCompletedList = []
|
|
2328
|
+
(_etype90, _size87) = iprot.readListBegin()
|
|
2329
|
+
for _i91 in range(_size87):
|
|
2330
|
+
_elem92 = iprot.readBool()
|
|
2331
|
+
self.pipeCompletedList.append(_elem92)
|
|
2332
|
+
iprot.readListEnd()
|
|
2333
|
+
else:
|
|
2334
|
+
iprot.skip(ftype)
|
|
2335
|
+
elif fid == 3:
|
|
2336
|
+
if ftype == TType.LIST:
|
|
2337
|
+
self.pipeRemainingEventCountList = []
|
|
2338
|
+
(_etype96, _size93) = iprot.readListBegin()
|
|
2339
|
+
for _i97 in range(_size93):
|
|
2340
|
+
_elem98 = iprot.readI64()
|
|
2341
|
+
self.pipeRemainingEventCountList.append(_elem98)
|
|
2342
|
+
iprot.readListEnd()
|
|
2343
|
+
else:
|
|
2344
|
+
iprot.skip(ftype)
|
|
2345
|
+
elif fid == 4:
|
|
2346
|
+
if ftype == TType.LIST:
|
|
2347
|
+
self.pipeRemainingTimeList = []
|
|
2348
|
+
(_etype102, _size99) = iprot.readListBegin()
|
|
2349
|
+
for _i103 in range(_size99):
|
|
2350
|
+
_elem104 = iprot.readDouble()
|
|
2351
|
+
self.pipeRemainingTimeList.append(_elem104)
|
|
2352
|
+
iprot.readListEnd()
|
|
2353
|
+
else:
|
|
2354
|
+
iprot.skip(ftype)
|
|
2355
|
+
else:
|
|
2356
|
+
iprot.skip(ftype)
|
|
2357
|
+
iprot.readFieldEnd()
|
|
2358
|
+
iprot.readStructEnd()
|
|
2359
|
+
|
|
2360
|
+
def write(self, oprot):
|
|
2361
|
+
if oprot._fast_encode is not None and self.thrift_spec is not None:
|
|
2362
|
+
oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec]))
|
|
2363
|
+
return
|
|
2364
|
+
oprot.writeStructBegin('TPipeHeartbeatResp')
|
|
2365
|
+
if self.pipeMetaList is not None:
|
|
2366
|
+
oprot.writeFieldBegin('pipeMetaList', TType.LIST, 1)
|
|
2367
|
+
oprot.writeListBegin(TType.STRING, len(self.pipeMetaList))
|
|
2368
|
+
for iter105 in self.pipeMetaList:
|
|
2369
|
+
oprot.writeBinary(iter105)
|
|
2370
|
+
oprot.writeListEnd()
|
|
2371
|
+
oprot.writeFieldEnd()
|
|
2372
|
+
if self.pipeCompletedList is not None:
|
|
2373
|
+
oprot.writeFieldBegin('pipeCompletedList', TType.LIST, 2)
|
|
2374
|
+
oprot.writeListBegin(TType.BOOL, len(self.pipeCompletedList))
|
|
2375
|
+
for iter106 in self.pipeCompletedList:
|
|
2376
|
+
oprot.writeBool(iter106)
|
|
2377
|
+
oprot.writeListEnd()
|
|
2378
|
+
oprot.writeFieldEnd()
|
|
2379
|
+
if self.pipeRemainingEventCountList is not None:
|
|
2380
|
+
oprot.writeFieldBegin('pipeRemainingEventCountList', TType.LIST, 3)
|
|
2381
|
+
oprot.writeListBegin(TType.I64, len(self.pipeRemainingEventCountList))
|
|
2382
|
+
for iter107 in self.pipeRemainingEventCountList:
|
|
2383
|
+
oprot.writeI64(iter107)
|
|
2384
|
+
oprot.writeListEnd()
|
|
2385
|
+
oprot.writeFieldEnd()
|
|
2386
|
+
if self.pipeRemainingTimeList is not None:
|
|
2387
|
+
oprot.writeFieldBegin('pipeRemainingTimeList', TType.LIST, 4)
|
|
2388
|
+
oprot.writeListBegin(TType.DOUBLE, len(self.pipeRemainingTimeList))
|
|
2389
|
+
for iter108 in self.pipeRemainingTimeList:
|
|
2390
|
+
oprot.writeDouble(iter108)
|
|
2391
|
+
oprot.writeListEnd()
|
|
2392
|
+
oprot.writeFieldEnd()
|
|
2393
|
+
oprot.writeFieldStop()
|
|
2394
|
+
oprot.writeStructEnd()
|
|
2395
|
+
|
|
2396
|
+
def validate(self):
|
|
2397
|
+
if self.pipeMetaList is None:
|
|
2398
|
+
raise TProtocolException(message='Required field pipeMetaList is unset!')
|
|
2399
|
+
return
|
|
2400
|
+
|
|
2401
|
+
def __repr__(self):
|
|
2402
|
+
L = ['%s=%r' % (key, value)
|
|
2403
|
+
for key, value in self.__dict__.items()]
|
|
2404
|
+
return '%s(%s)' % (self.__class__.__name__, ', '.join(L))
|
|
2405
|
+
|
|
2406
|
+
def __eq__(self, other):
|
|
2407
|
+
return isinstance(other, self.__class__) and self.__dict__ == other.__dict__
|
|
2408
|
+
|
|
2409
|
+
def __ne__(self, other):
|
|
2410
|
+
return not (self == other)
|
|
2411
|
+
|
|
2412
|
+
|
|
2286
2413
|
class TLicense(object):
|
|
2287
2414
|
"""
|
|
2288
2415
|
Attributes:
|
|
@@ -2816,11 +2943,11 @@ class TTestConnectionResp(object):
|
|
|
2816
2943
|
elif fid == 2:
|
|
2817
2944
|
if ftype == TType.LIST:
|
|
2818
2945
|
self.resultList = []
|
|
2819
|
-
(
|
|
2820
|
-
for
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
self.resultList.append(
|
|
2946
|
+
(_etype112, _size109) = iprot.readListBegin()
|
|
2947
|
+
for _i113 in range(_size109):
|
|
2948
|
+
_elem114 = TTestConnectionResult()
|
|
2949
|
+
_elem114.read(iprot)
|
|
2950
|
+
self.resultList.append(_elem114)
|
|
2824
2951
|
iprot.readListEnd()
|
|
2825
2952
|
else:
|
|
2826
2953
|
iprot.skip(ftype)
|
|
@@ -2841,8 +2968,8 @@ class TTestConnectionResp(object):
|
|
|
2841
2968
|
if self.resultList is not None:
|
|
2842
2969
|
oprot.writeFieldBegin('resultList', TType.LIST, 2)
|
|
2843
2970
|
oprot.writeListBegin(TType.STRUCT, len(self.resultList))
|
|
2844
|
-
for
|
|
2845
|
-
|
|
2971
|
+
for iter115 in self.resultList:
|
|
2972
|
+
iter115.write(oprot)
|
|
2846
2973
|
oprot.writeListEnd()
|
|
2847
2974
|
oprot.writeFieldEnd()
|
|
2848
2975
|
oprot.writeFieldStop()
|
|
@@ -2892,22 +3019,22 @@ class TNodeLocations(object):
|
|
|
2892
3019
|
if fid == 1:
|
|
2893
3020
|
if ftype == TType.LIST:
|
|
2894
3021
|
self.configNodeLocations = []
|
|
2895
|
-
(
|
|
2896
|
-
for
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
self.configNodeLocations.append(
|
|
3022
|
+
(_etype119, _size116) = iprot.readListBegin()
|
|
3023
|
+
for _i120 in range(_size116):
|
|
3024
|
+
_elem121 = TConfigNodeLocation()
|
|
3025
|
+
_elem121.read(iprot)
|
|
3026
|
+
self.configNodeLocations.append(_elem121)
|
|
2900
3027
|
iprot.readListEnd()
|
|
2901
3028
|
else:
|
|
2902
3029
|
iprot.skip(ftype)
|
|
2903
3030
|
elif fid == 2:
|
|
2904
3031
|
if ftype == TType.LIST:
|
|
2905
3032
|
self.dataNodeLocations = []
|
|
2906
|
-
(
|
|
2907
|
-
for
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
self.dataNodeLocations.append(
|
|
3033
|
+
(_etype125, _size122) = iprot.readListBegin()
|
|
3034
|
+
for _i126 in range(_size122):
|
|
3035
|
+
_elem127 = TDataNodeLocation()
|
|
3036
|
+
_elem127.read(iprot)
|
|
3037
|
+
self.dataNodeLocations.append(_elem127)
|
|
2911
3038
|
iprot.readListEnd()
|
|
2912
3039
|
else:
|
|
2913
3040
|
iprot.skip(ftype)
|
|
@@ -2924,15 +3051,15 @@ class TNodeLocations(object):
|
|
|
2924
3051
|
if self.configNodeLocations is not None:
|
|
2925
3052
|
oprot.writeFieldBegin('configNodeLocations', TType.LIST, 1)
|
|
2926
3053
|
oprot.writeListBegin(TType.STRUCT, len(self.configNodeLocations))
|
|
2927
|
-
for
|
|
2928
|
-
|
|
3054
|
+
for iter128 in self.configNodeLocations:
|
|
3055
|
+
iter128.write(oprot)
|
|
2929
3056
|
oprot.writeListEnd()
|
|
2930
3057
|
oprot.writeFieldEnd()
|
|
2931
3058
|
if self.dataNodeLocations is not None:
|
|
2932
3059
|
oprot.writeFieldBegin('dataNodeLocations', TType.LIST, 2)
|
|
2933
3060
|
oprot.writeListBegin(TType.STRUCT, len(self.dataNodeLocations))
|
|
2934
|
-
for
|
|
2935
|
-
|
|
3061
|
+
for iter129 in self.dataNodeLocations:
|
|
3062
|
+
iter129.write(oprot)
|
|
2936
3063
|
oprot.writeListEnd()
|
|
2937
3064
|
oprot.writeFieldEnd()
|
|
2938
3065
|
oprot.writeFieldStop()
|
|
@@ -3255,6 +3382,14 @@ TSetThrottleQuotaReq.thrift_spec = (
|
|
|
3255
3382
|
(1, TType.STRING, 'userName', 'UTF8', None, ), # 1
|
|
3256
3383
|
(2, TType.STRUCT, 'throttleQuota', [TThrottleQuota, None], None, ), # 2
|
|
3257
3384
|
)
|
|
3385
|
+
all_structs.append(TPipeHeartbeatResp)
|
|
3386
|
+
TPipeHeartbeatResp.thrift_spec = (
|
|
3387
|
+
None, # 0
|
|
3388
|
+
(1, TType.LIST, 'pipeMetaList', (TType.STRING, 'BINARY', False), None, ), # 1
|
|
3389
|
+
(2, TType.LIST, 'pipeCompletedList', (TType.BOOL, None, False), None, ), # 2
|
|
3390
|
+
(3, TType.LIST, 'pipeRemainingEventCountList', (TType.I64, None, False), None, ), # 3
|
|
3391
|
+
(4, TType.LIST, 'pipeRemainingTimeList', (TType.DOUBLE, None, False), None, ), # 4
|
|
3392
|
+
)
|
|
3258
3393
|
all_structs.append(TLicense)
|
|
3259
3394
|
TLicense.thrift_spec = (
|
|
3260
3395
|
None, # 0
|