tccli 3.0.1271.1__py2.py3-none-any.whl → 3.0.1273.1__py2.py3-none-any.whl

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.
Files changed (37) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/asr/v20190614/api.json +1 -1
  3. tccli/services/batch/v20170312/api.json +61 -61
  4. tccli/services/ccc/v20200210/api.json +19 -19
  5. tccli/services/ccc/v20200210/examples.json +5 -5
  6. tccli/services/clb/clb_client.py +265 -0
  7. tccli/services/clb/v20180317/api.json +280 -0
  8. tccli/services/clb/v20180317/examples.json +40 -0
  9. tccli/services/cvm/v20170312/api.json +65 -65
  10. tccli/services/cwp/v20180228/api.json +4 -4
  11. tccli/services/dts/v20211206/api.json +1 -1
  12. tccli/services/emr/emr_client.py +57 -4
  13. tccli/services/emr/v20190103/api.json +111 -0
  14. tccli/services/emr/v20190103/examples.json +8 -0
  15. tccli/services/ess/v20201111/api.json +2 -2
  16. tccli/services/essbasic/v20210526/api.json +2 -2
  17. tccli/services/live/v20180801/api.json +11 -0
  18. tccli/services/lkeap/v20240522/api.json +1 -1
  19. tccli/services/monitor/v20180724/api.json +1 -1
  20. tccli/services/rce/v20201103/api.json +248 -258
  21. tccli/services/rce/v20201103/examples.json +1 -1
  22. tccli/services/ssl/v20191205/api.json +38 -38
  23. tccli/services/ssl/v20191205/examples.json +3 -3
  24. tccli/services/tcr/v20190924/api.json +20 -20
  25. tccli/services/tione/v20211111/api.json +7 -7
  26. tccli/services/tione/v20211111/examples.json +5 -5
  27. tccli/services/trtc/v20190722/api.json +10 -1
  28. tccli/services/trtc/v20190722/examples.json +1 -1
  29. tccli/services/waf/v20180125/api.json +191 -36
  30. tccli/services/waf/v20180125/examples.json +3 -3
  31. tccli/services/weilingwith/v20230427/api.json +114 -114
  32. tccli/services/weilingwith/v20230427/examples.json +18 -18
  33. {tccli-3.0.1271.1.dist-info → tccli-3.0.1273.1.dist-info}/METADATA +2 -2
  34. {tccli-3.0.1271.1.dist-info → tccli-3.0.1273.1.dist-info}/RECORD +37 -37
  35. {tccli-3.0.1271.1.dist-info → tccli-3.0.1273.1.dist-info}/WHEEL +0 -0
  36. {tccli-3.0.1271.1.dist-info → tccli-3.0.1273.1.dist-info}/entry_points.txt +0 -0
  37. {tccli-3.0.1271.1.dist-info → tccli-3.0.1273.1.dist-info}/license_files/LICENSE +0 -0
@@ -1265,7 +1265,7 @@ def doModifyYarnDeploy(args, parsed_globals):
1265
1265
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
1266
1266
 
1267
1267
 
1268
- def doTerminateTasks(args, parsed_globals):
1268
+ def doDescribeDAGInfo(args, parsed_globals):
1269
1269
  g_param = parse_global_arg(parsed_globals)
1270
1270
 
1271
1271
  if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
@@ -1294,11 +1294,11 @@ def doTerminateTasks(args, parsed_globals):
1294
1294
  client = mod.EmrClient(cred, g_param[OptionsDefine.Region], profile)
1295
1295
  client._sdkVersion += ("_CLI_" + __version__)
1296
1296
  models = MODELS_MAP[g_param[OptionsDefine.Version]]
1297
- model = models.TerminateTasksRequest()
1297
+ model = models.DescribeDAGInfoRequest()
1298
1298
  model.from_json_string(json.dumps(args))
1299
1299
  start_time = time.time()
1300
1300
  while True:
1301
- rsp = client.TerminateTasks(model)
1301
+ rsp = client.DescribeDAGInfo(model)
1302
1302
  result = rsp.to_json_string()
1303
1303
  try:
1304
1304
  json_obj = json.loads(result)
@@ -1733,6 +1733,58 @@ def doAddUsersForUserManager(args, parsed_globals):
1733
1733
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
1734
1734
 
1735
1735
 
1736
+ def doTerminateTasks(args, parsed_globals):
1737
+ g_param = parse_global_arg(parsed_globals)
1738
+
1739
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
1740
+ cred = credential.CVMRoleCredential()
1741
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
1742
+ cred = credential.STSAssumeRoleCredential(
1743
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
1744
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
1745
+ )
1746
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
1747
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
1748
+ else:
1749
+ cred = credential.Credential(
1750
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
1751
+ )
1752
+ http_profile = HttpProfile(
1753
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
1754
+ reqMethod="POST",
1755
+ endpoint=g_param[OptionsDefine.Endpoint],
1756
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
1757
+ )
1758
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
1759
+ if g_param[OptionsDefine.Language]:
1760
+ profile.language = g_param[OptionsDefine.Language]
1761
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
1762
+ client = mod.EmrClient(cred, g_param[OptionsDefine.Region], profile)
1763
+ client._sdkVersion += ("_CLI_" + __version__)
1764
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
1765
+ model = models.TerminateTasksRequest()
1766
+ model.from_json_string(json.dumps(args))
1767
+ start_time = time.time()
1768
+ while True:
1769
+ rsp = client.TerminateTasks(model)
1770
+ result = rsp.to_json_string()
1771
+ try:
1772
+ json_obj = json.loads(result)
1773
+ except TypeError as e:
1774
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
1775
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
1776
+ break
1777
+ cur_time = time.time()
1778
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
1779
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
1780
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
1781
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
1782
+ else:
1783
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
1784
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
1785
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
1786
+
1787
+
1736
1788
  def doModifyAutoRenewFlag(args, parsed_globals):
1737
1789
  g_param = parse_global_arg(parsed_globals)
1738
1790
 
@@ -4004,7 +4056,7 @@ ACTION_MAP = {
4004
4056
  "DescribeServiceNodeInfos": doDescribeServiceNodeInfos,
4005
4057
  "DescribeInstances": doDescribeInstances,
4006
4058
  "ModifyYarnDeploy": doModifyYarnDeploy,
4007
- "TerminateTasks": doTerminateTasks,
4059
+ "DescribeDAGInfo": doDescribeDAGInfo,
4008
4060
  "TerminateClusterNodes": doTerminateClusterNodes,
4009
4061
  "ResetYarnConfig": doResetYarnConfig,
4010
4062
  "DescribeUsersForUserManager": doDescribeUsersForUserManager,
@@ -4013,6 +4065,7 @@ ACTION_MAP = {
4013
4065
  "DeleteNodeResourceConfig": doDeleteNodeResourceConfig,
4014
4066
  "TerminateSLInstance": doTerminateSLInstance,
4015
4067
  "AddUsersForUserManager": doAddUsersForUserManager,
4068
+ "TerminateTasks": doTerminateTasks,
4016
4069
  "ModifyAutoRenewFlag": doModifyAutoRenewFlag,
4017
4070
  "CreateSLInstance": doCreateSLInstance,
4018
4071
  "DescribeSLInstanceList": doDescribeSLInstanceList,
@@ -126,6 +126,13 @@
126
126
  "output": "DescribeCvmQuotaResponse",
127
127
  "status": "online"
128
128
  },
129
+ "DescribeDAGInfo": {
130
+ "document": "查询DAG信息",
131
+ "input": "DescribeDAGInfoRequest",
132
+ "name": "查询DAG信息",
133
+ "output": "DescribeDAGInfoResponse",
134
+ "status": "online"
135
+ },
129
136
  "DescribeEmrApplicationStatics": {
130
137
  "document": "yarn application 统计接口查询",
131
138
  "input": "DescribeEmrApplicationStaticsRequest",
@@ -3795,6 +3802,45 @@
3795
3802
  ],
3796
3803
  "usage": "in"
3797
3804
  },
3805
+ "DAGInfo": {
3806
+ "document": "DAG信息",
3807
+ "members": [
3808
+ {
3809
+ "disabled": false,
3810
+ "document": "查询ID",
3811
+ "example": "queryid_123",
3812
+ "member": "string",
3813
+ "name": "ID",
3814
+ "output_required": false,
3815
+ "required": false,
3816
+ "type": "string",
3817
+ "value_allowed_null": false
3818
+ },
3819
+ {
3820
+ "disabled": false,
3821
+ "document": "DAG类型,目前只支持starrocks",
3822
+ "example": "starrocks",
3823
+ "member": "string",
3824
+ "name": "Type",
3825
+ "output_required": false,
3826
+ "required": false,
3827
+ "type": "string",
3828
+ "value_allowed_null": false
3829
+ },
3830
+ {
3831
+ "disabled": false,
3832
+ "document": "返回的DAG的JSON字符串",
3833
+ "example": "{\"json\":123}",
3834
+ "member": "string",
3835
+ "name": "Content",
3836
+ "output_required": false,
3837
+ "required": false,
3838
+ "type": "string",
3839
+ "value_allowed_null": false
3840
+ }
3841
+ ],
3842
+ "usage": "both"
3843
+ },
3798
3844
  "DayRepeatStrategy": {
3799
3845
  "document": "弹性扩缩容按天重复任务描述",
3800
3846
  "members": [
@@ -4636,6 +4682,71 @@
4636
4682
  ],
4637
4683
  "type": "object"
4638
4684
  },
4685
+ "DescribeDAGInfoRequest": {
4686
+ "document": "DescribeDAGInfo请求参数结构体",
4687
+ "members": [
4688
+ {
4689
+ "disabled": false,
4690
+ "document": "集群ID",
4691
+ "example": "emr-xfaf11ab",
4692
+ "member": "string",
4693
+ "name": "InstanceID",
4694
+ "required": true,
4695
+ "type": "string"
4696
+ },
4697
+ {
4698
+ "disabled": false,
4699
+ "document": "DAG类型,目前只支持STARROCKS",
4700
+ "example": "STARROCKS",
4701
+ "member": "string",
4702
+ "name": "Type",
4703
+ "required": true,
4704
+ "type": "string"
4705
+ },
4706
+ {
4707
+ "disabled": false,
4708
+ "document": "查询ID列表,最大长度为1",
4709
+ "example": "query_xxx",
4710
+ "member": "string",
4711
+ "name": "IDList",
4712
+ "required": true,
4713
+ "type": "list"
4714
+ }
4715
+ ],
4716
+ "type": "object"
4717
+ },
4718
+ "DescribeDAGInfoResponse": {
4719
+ "document": "DescribeDAGInfo返回参数结构体",
4720
+ "members": [
4721
+ {
4722
+ "disabled": false,
4723
+ "document": "总数,分页查询时使用",
4724
+ "example": "10",
4725
+ "member": "int64",
4726
+ "name": "TotalCount",
4727
+ "output_required": true,
4728
+ "type": "int",
4729
+ "value_allowed_null": false
4730
+ },
4731
+ {
4732
+ "disabled": false,
4733
+ "document": "Starrocks 查询信息列表\n注意:此字段可能返回 null,表示取不到有效值。",
4734
+ "example": "无",
4735
+ "member": "DAGInfo",
4736
+ "name": "DAGInfoList",
4737
+ "output_required": false,
4738
+ "type": "list",
4739
+ "value_allowed_null": true
4740
+ },
4741
+ {
4742
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
4743
+ "member": "string",
4744
+ "name": "RequestId",
4745
+ "type": "string"
4746
+ }
4747
+ ],
4748
+ "type": "object"
4749
+ },
4639
4750
  "DescribeEmrApplicationStaticsRequest": {
4640
4751
  "document": "DescribeEmrApplicationStatics请求参数结构体",
4641
4752
  "members": [
@@ -144,6 +144,14 @@
144
144
  "title": "获取账户的CVM配额"
145
145
  }
146
146
  ],
147
+ "DescribeDAGInfo": [
148
+ {
149
+ "document": "",
150
+ "input": "POST / HTTP/1.1\nHost: emr.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDAGInfo\n<公共请求参数>\n\n{\n \"InstanceID\": \"emr-0lqdz2kr\",\n \"Type\": \"STARROCKS\",\n \"IDList\": [\n \"hadoop_20250204000505_2e6d0e39-f040-4c99-8426-4a3555c7945d\"\n ]\n}",
151
+ "output": "{\n \"Response\": {\n \"DAGInfoList\": [\n {\n \"Content\": \"{\\\"nodeList\\\":[{\\\"attrGroupList\\\":[{\\\"attrList\\\":[],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Stage-7\\\"}],\\\"id\\\":\\\"0\\\",\\\"name\\\":\\\"Conditional Operator\\\",\\\"outDegree\\\":3,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"12\\\"}]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Stage-5\\\"}],\\\"id\\\":\\\"1\\\",\\\"name\\\":\\\"Map\\\",\\\"outDegree\\\":1,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"0\\\"}]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"OperatorId\\\",\\\"value\\\":\\\"TS_4\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Stage-5\\\"}],\\\"id\\\":\\\"2\\\",\\\"name\\\":\\\"TableScan\\\",\\\"outDegree\\\":1,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"1\\\"}]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"OperatorId\\\",\\\"value\\\":\\\"FS_5\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"compressed\\\",\\\"value\\\":\\\"false\\\"},{\\\"childless\\\":false,\\\"children\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"name\\\",\\\"value\\\":\\\"default.hive_table_p1\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"input format\\\",\\\"value\\\":\\\"org.apache.hadoop.mapred.TextInputFormat\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"output format\\\",\\\"value\\\":\\\"org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"serde\\\",\\\"value\\\":\\\"org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe\\\"}],\\\"empty\\\":false,\\\"name\\\":\\\"table\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Stage-5\\\"}],\\\"id\\\":\\\"3\\\",\\\"name\\\":\\\"File Output Operator\\\",\\\"outDegree\\\":1,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"2\\\"}]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":false,\\\"children\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"hdfs directory\\\",\\\"value\\\":\\\"true\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"destination\\\",\\\"value\\\":\\\"hdfs://10.0.0.59:4007/usr/hive/warehouse/hive_table_p1/dt=2025-02-04/.hive-staging_hive_2025-02-04_00-05-05_176_8916599993887172596-9/-ext-10000\\\"}],\\\"empty\\\":false,\\\"name\\\":\\\"files\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Stage-6\\\"}],\\\"id\\\":\\\"4\\\",\\\"name\\\":\\\"Move Operator\\\",\\\"outDegree\\\":1,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"3\\\"}]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Stage-3\\\"}],\\\"id\\\":\\\"5\\\",\\\"name\\\":\\\"Map\\\",\\\"outDegree\\\":1,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"0\\\"}]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"OperatorId\\\",\\\"value\\\":\\\"TS_4\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Stage-3\\\"}],\\\"id\\\":\\\"6\\\",\\\"name\\\":\\\"TableScan\\\",\\\"outDegree\\\":1,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"5\\\"}]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"OperatorId\\\",\\\"value\\\":\\\"FS_5\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"compressed\\\",\\\"value\\\":\\\"false\\\"},{\\\"childless\\\":false,\\\"children\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"name\\\",\\\"value\\\":\\\"default.hive_table_p1\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"input format\\\",\\\"value\\\":\\\"org.apache.hadoop.mapred.TextInputFormat\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"output format\\\",\\\"value\\\":\\\"org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"serde\\\",\\\"value\\\":\\\"org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe\\\"}],\\\"empty\\\":false,\\\"name\\\":\\\"table\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Stage-3\\\"}],\\\"id\\\":\\\"7\\\",\\\"name\\\":\\\"File Output Operator\\\",\\\"outDegree\\\":1,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"6\\\"}]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":false,\\\"children\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"hdfs directory\\\",\\\"value\\\":\\\"true\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"destination\\\",\\\"value\\\":\\\"hdfs://10.0.0.59:4007/usr/hive/warehouse/hive_table_p1/dt=2025-02-04/.hive-staging_hive_2025-02-04_00-05-05_176_8916599993887172596-9/-ext-10000\\\"}],\\\"empty\\\":false,\\\"name\\\":\\\"files\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Stage-4\\\"}],\\\"id\\\":\\\"8\\\",\\\"name\\\":\\\"Move Operator\\\",\\\"outDegree\\\":1,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"0\\\"}]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Stage-1\\\"}],\\\"id\\\":\\\"9\\\",\\\"name\\\":\\\"Map\\\",\\\"outDegree\\\":1,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"15\\\"}]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"OperatorId\\\",\\\"value\\\":\\\"TS_0\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"alias\\\",\\\"value\\\":\\\"values__tmp__table__1\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Stage-1\\\"}],\\\"id\\\":\\\"10\\\",\\\"name\\\":\\\"TableScan\\\",\\\"outDegree\\\":1,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"9\\\"}]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"OperatorId\\\",\\\"value\\\":\\\"SEL_1\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"outputColumnNames\\\",\\\"value\\\":\\\"[\\\\\\\"_col0\\\\\\\",\\\\\\\"_col1\\\\\\\"]\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"expressions\\\",\\\"value\\\":\\\"UDFToInteger(tmp_values_col1) (type: int), tmp_values_col2 (type: string)\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Stage-1\\\"}],\\\"id\\\":\\\"11\\\",\\\"name\\\":\\\"Select Operator\\\",\\\"outDegree\\\":1,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"10\\\"}]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"OperatorId\\\",\\\"value\\\":\\\"FS_3\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"compressed\\\",\\\"value\\\":\\\"false\\\"},{\\\"childless\\\":false,\\\"children\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"name\\\",\\\"value\\\":\\\"default.hive_table_p1\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"input format\\\",\\\"value\\\":\\\"org.apache.hadoop.mapred.TextInputFormat\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"output format\\\",\\\"value\\\":\\\"org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"serde\\\",\\\"value\\\":\\\"org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe\\\"}],\\\"empty\\\":false,\\\"name\\\":\\\"table\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Stage-1\\\"}],\\\"id\\\":\\\"12\\\",\\\"name\\\":\\\"File Output Operator\\\",\\\"outDegree\\\":1,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"11\\\"}]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Stage-2\\\"}],\\\"id\\\":\\\"13\\\",\\\"name\\\":\\\"Stats-Aggr Operator\\\",\\\"outDegree\\\":1,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"14\\\"}]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":false,\\\"children\\\":[{\\\"childless\\\":false,\\\"children\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"dt\\\",\\\"value\\\":\\\"2025-02-04\\\"}],\\\"empty\\\":false,\\\"name\\\":\\\"partition\\\"},{\\\"childless\\\":false,\\\"children\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"name\\\",\\\"value\\\":\\\"default.hive_table_p1\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"input format\\\",\\\"value\\\":\\\"org.apache.hadoop.mapred.TextInputFormat\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"output format\\\",\\\"value\\\":\\\"org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"serde\\\",\\\"value\\\":\\\"org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe\\\"}],\\\"empty\\\":false,\\\"name\\\":\\\"table\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"replace\\\",\\\"value\\\":\\\"false\\\"}],\\\"empty\\\":false,\\\"name\\\":\\\"tables\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"TREE\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Stage-0\\\"}],\\\"id\\\":\\\"14\\\",\\\"name\\\":\\\"Move Operator\\\",\\\"outDegree\\\":1,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"8\\\"},{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"7\\\"},{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"4\\\"}]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"compileDuration\\\",\\\"value\\\":303}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"compile\\\"}],\\\"id\\\":\\\"15\\\",\\\"name\\\":\\\"compile\\\",\\\"outDegree\\\":1,\\\"targetEdgeList\\\":[]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"StartTime\\\",\\\"value\\\":\\\"2025-02-04 00:05:21.361\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"EndTime\\\",\\\"value\\\":\\\"2025-02-04 00:05:21.362\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"CostTimeMs\\\",\\\"value\\\":1}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"stageName\\\",\\\"value\\\":\\\"Finish\\\"}],\\\"id\\\":\\\"16\\\",\\\"name\\\":\\\"RenameOrMoveFiles\\\",\\\"outDegree\\\":0,\\\"targetEdgeList\\\":[{\\\"attrList\\\":[],\\\"nodeId\\\":\\\"13\\\"}]}],\\\"pipelineList\\\":[],\\\"stageList\\\":[{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"taskType\\\",\\\"value\\\":\\\"CONDITIONAL\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"0%\\\",\\\"name\\\":\\\"OperatorTotalTime\\\",\\\"type\\\":\\\"PERCENT\\\",\\\"value\\\":\\\"0ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"costTime\\\",\\\"value\\\":\\\"0ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"beginTime\\\",\\\"value\\\":\\\"2025-02-04 00:05:21\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"endTime\\\",\\\"value\\\":\\\"2025-02-04 00:05:21\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"id\\\":\\\"Stage-7\\\",\\\"name\\\":\\\"Stage-7\\\",\\\"nodeList\\\":[\\\"0\\\"]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"0%\\\",\\\"name\\\":\\\"OperatorTotalTime\\\",\\\"type\\\":\\\"PERCENT\\\",\\\"value\\\":\\\"0ms\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"id\\\":\\\"Stage-5\\\",\\\"name\\\":\\\"Stage-5\\\",\\\"nodeList\\\":[\\\"1\\\",\\\"2\\\",\\\"3\\\"]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"0%\\\",\\\"name\\\":\\\"OperatorTotalTime\\\",\\\"type\\\":\\\"PERCENT\\\",\\\"value\\\":\\\"0ms\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"id\\\":\\\"Stage-6\\\",\\\"name\\\":\\\"Stage-6\\\",\\\"nodeList\\\":[\\\"4\\\"]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"0%\\\",\\\"name\\\":\\\"OperatorTotalTime\\\",\\\"type\\\":\\\"PERCENT\\\",\\\"value\\\":\\\"0ms\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"id\\\":\\\"Stage-3\\\",\\\"name\\\":\\\"Stage-3\\\",\\\"nodeList\\\":[\\\"5\\\",\\\"6\\\",\\\"7\\\"]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"taskType\\\",\\\"value\\\":\\\"MOVE\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"0%\\\",\\\"name\\\":\\\"OperatorTotalTime\\\",\\\"type\\\":\\\"PERCENT\\\",\\\"value\\\":\\\"6ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"costTime\\\",\\\"value\\\":\\\"6ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"beginTime\\\",\\\"value\\\":\\\"2025-02-04 00:05:21\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"endTime\\\",\\\"value\\\":\\\"2025-02-04 00:05:21\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"id\\\":\\\"Stage-4\\\",\\\"name\\\":\\\"Stage-4\\\",\\\"nodeList\\\":[\\\"8\\\"]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"taskType\\\",\\\"value\\\":\\\"MAPRED\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"96%\\\",\\\"name\\\":\\\"OperatorTotalTime\\\",\\\"type\\\":\\\"PERCENT\\\",\\\"value\\\":\\\"15911ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"costTime\\\",\\\"value\\\":\\\"15911ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"beginTime\\\",\\\"value\\\":\\\"2025-02-04 00:05:05\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"endTime\\\",\\\"value\\\":\\\"2025-02-04 00:05:21\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"mapRedStats\\\",\\\"value\\\":\\\"Map: 1 Cumulative CPU: 2.13 sec HDFS Read: 4221 HDFS Write: 99 SUCCESS\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"applicationId\\\",\\\"value\\\":\\\"application_1736476990958_0073\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"VCoreSeconds\\\",\\\"value\\\":23},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"MemorySeconds\\\",\\\"value\\\":50837},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"hdfsBytesRead\\\",\\\"value\\\":4221},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"hdfsBytesWritten\\\",\\\"value\\\":99},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"CREATED_FILES\\\",\\\"value\\\":1},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"RECORDS_IN\\\",\\\"value\\\":1},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"RECORDS_OUT_1_default.hive_table_p1\\\",\\\"value\\\":1}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"id\\\":\\\"Stage-1\\\",\\\"name\\\":\\\"Stage-1\\\",\\\"nodeList\\\":[\\\"9\\\",\\\"10\\\",\\\"11\\\",\\\"12\\\"]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"taskType\\\",\\\"value\\\":\\\"STATS\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"1%\\\",\\\"name\\\":\\\"OperatorTotalTime\\\",\\\"type\\\":\\\"PERCENT\\\",\\\"value\\\":\\\"168ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"costTime\\\",\\\"value\\\":\\\"168ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"beginTime\\\",\\\"value\\\":\\\"2025-02-04 00:05:21\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"endTime\\\",\\\"value\\\":\\\"2025-02-04 00:05:21\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"id\\\":\\\"Stage-2\\\",\\\"name\\\":\\\"Stage-2\\\",\\\"nodeList\\\":[\\\"13\\\"]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"taskType\\\",\\\"value\\\":\\\"MOVE\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"2%\\\",\\\"name\\\":\\\"OperatorTotalTime\\\",\\\"type\\\":\\\"PERCENT\\\",\\\"value\\\":\\\"379ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"costTime\\\",\\\"value\\\":\\\"379ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"beginTime\\\",\\\"value\\\":\\\"2025-02-04 00:05:21\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"endTime\\\",\\\"value\\\":\\\"2025-02-04 00:05:21\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"id\\\":\\\"Stage-0\\\",\\\"name\\\":\\\"Stage-0\\\",\\\"nodeList\\\":[\\\"14\\\"]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"0%\\\",\\\"name\\\":\\\"OperatorTotalTime\\\",\\\"type\\\":\\\"PERCENT\\\",\\\"value\\\":\\\"0ms\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"id\\\":\\\"compile\\\",\\\"name\\\":\\\"compile\\\",\\\"nodeList\\\":[\\\"15\\\"]},{\\\"attrGroupList\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"0%\\\",\\\"name\\\":\\\"OperatorTotalTime\\\",\\\"type\\\":\\\"PERCENT\\\",\\\"value\\\":\\\"1ms\\\"}],\\\"title\\\":\\\"Properties\\\",\\\"type\\\":\\\"NORMAL\\\"}],\\\"id\\\":\\\"Finish\\\",\\\"name\\\":\\\"Finish\\\",\\\"nodeList\\\":[\\\"16\\\"]}],\\\"summary\\\":[],\\\"topAttrGroup\\\":[{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"96%\\\",\\\"name\\\":\\\"Stage-1\\\",\\\"value\\\":\\\"15911ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"2%\\\",\\\"name\\\":\\\"Stage-0\\\",\\\"value\\\":\\\"379ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"1%\\\",\\\"name\\\":\\\"Stage-2\\\",\\\"value\\\":\\\"168ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"0%\\\",\\\"name\\\":\\\"Stage-4\\\",\\\"value\\\":\\\"6ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"0%\\\",\\\"name\\\":\\\"Finish\\\",\\\"value\\\":\\\"1ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"0%\\\",\\\"name\\\":\\\"Stage-7\\\",\\\"value\\\":\\\"0ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"0%\\\",\\\"name\\\":\\\"Stage-5\\\",\\\"value\\\":\\\"0ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"0%\\\",\\\"name\\\":\\\"Stage-6\\\",\\\"value\\\":\\\"0ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"0%\\\",\\\"name\\\":\\\"Stage-3\\\",\\\"value\\\":\\\"0ms\\\"},{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"extraValue\\\":\\\"0%\\\",\\\"name\\\":\\\"compile\\\",\\\"value\\\":\\\"0ms\\\"}],\\\"title\\\":\\\"时间排行\\\",\\\"type\\\":\\\"TOP_LIST\\\"},{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"Stage-1\\\",\\\"value\\\":23}],\\\"title\\\":\\\"VCoreSeconds排行\\\",\\\"type\\\":\\\"TOP_LIST\\\"},{\\\"attrList\\\":[{\\\"childless\\\":true,\\\"children\\\":[],\\\"empty\\\":false,\\\"name\\\":\\\"Stage-1\\\",\\\"value\\\":50837}],\\\"title\\\":\\\"MemorySeconds排行\\\",\\\"type\\\":\\\"TOP_LIST\\\"}],\\\"type\\\":\\\"HIVE\\\"}\",\n \"ID\": \"hadoop_20250204000505_2e6d0e39-f040-4c99-8426-4a3555c7945d\",\n \"Type\": \"STARROCKS\"\n }\n ],\n \"RequestId\": \"baefe09a-7032-4c21-b5e3-1440bfae8492\",\n \"TotalCount\": 1\n }\n}",
152
+ "title": "获取DAG信息样列"
153
+ }
154
+ ],
147
155
  "DescribeEmrApplicationStatics": [
148
156
  {
149
157
  "document": "",
@@ -12513,7 +12513,7 @@
12513
12513
  },
12514
12514
  {
12515
12515
  "disabled": false,
12516
- "document": "意愿核身语音问答模式(即语音播报+语音回答)使用的文案,包括:系统语音播报的文本、需要核验的标准文本。当前仅支持1轮问答。\n\n注:`选择问答模式时,此字段可不传,不传则使用默认语音文本:请问,您是否同意签署本协议?可语音回复“同意”或“不同意”。`",
12516
+ "document": "意愿核身语音问答模式(即语音播报+语音回答)使用的文案,包括:系统语音播报的文本、需要核验的标准文本。支持传入1~10轮问答,最多为10轮。\n\n注:`选择问答模式时,此字段可不传,不传则使用默认语音文本:请问,您是否同意签署本协议?可语音回复“同意”或“不同意”。`",
12517
12517
  "example": "无",
12518
12518
  "member": "IntentionQuestion",
12519
12519
  "name": "IntentionQuestions",
@@ -12522,7 +12522,7 @@
12522
12522
  },
12523
12523
  {
12524
12524
  "disabled": false,
12525
- "document": "意愿核身(点头确认模式)使用的文案,若未使用意愿核身(点头确认模式),则该字段无需传入。当前仅支持一个提示文本。\n\n注:`选择点头模式时,此字段可不传,不传则使用默认语音文本:请问,您是否同意签署本协议?可点头同意。`",
12525
+ "document": "意愿核身(点头确认模式)使用的文案,若未使用意愿核身(点头确认模式),则该字段无需传入。支持传入1~10轮点头确认文本,最多支持10轮。\n\n注:`选择点头模式时,此字段可不传,不传则使用默认语音文本:请问,您是否同意签署本协议?可点头同意。`",
12526
12526
  "example": "无",
12527
12527
  "member": "IntentionAction",
12528
12528
  "name": "IntentionActions",
@@ -10843,7 +10843,7 @@
10843
10843
  },
10844
10844
  {
10845
10845
  "disabled": false,
10846
- "document": "意愿核身语音问答模式(即语音播报+语音回答)使用的文案,包括:系统语音播报的文本、需要核验的标准文本。当前仅支持1轮问答。\n\n注:`选择问答模式时,此字段可不传,不传则使用默认语音文本:请问,您是否同意签署本协议?可语音回复“同意”或“不同意”。`",
10846
+ "document": "意愿核身语音问答模式(即语音播报+语音回答)使用的文案,包括:系统语音播报的文本、需要核验的标准文本。支持传入1~10轮问答,最多支持10轮。\n\n注:`选择问答模式时,此字段可不传,不传则使用默认语音文本:请问,您是否同意签署本协议?可语音回复“同意”或“不同意”。`",
10847
10847
  "example": "无",
10848
10848
  "member": "IntentionQuestion",
10849
10849
  "name": "IntentionQuestions",
@@ -10852,7 +10852,7 @@
10852
10852
  },
10853
10853
  {
10854
10854
  "disabled": false,
10855
- "document": "意愿核身(点头确认模式)使用的文案,若未使用意愿核身(点头确认模式),则该字段无需传入。当前仅支持一个提示文本。\n\n注:`选择点头模式时,此字段可不传,不传则使用默认语音文本:请问,您是否同意签署本协议?可点头同意。`",
10855
+ "document": "意愿核身(点头确认模式)使用的文案,若未使用意愿核身(点头确认模式),则该字段无需传入。支持传入1~10轮点头确认文本,最多支持10轮。\n\n注:`选择点头模式时,此字段可不传,不传则使用默认语音文本:请问,您是否同意签署本协议?可点头同意。`",
10856
10856
  "example": "无",
10857
10857
  "member": "IntentionAction",
10858
10858
  "name": "IntentionActions",
@@ -14996,6 +14996,17 @@
14996
14996
  "required": false,
14997
14997
  "type": "bool",
14998
14998
  "value_allowed_null": false
14999
+ },
15000
+ {
15001
+ "disabled": false,
15002
+ "document": "导播台pvw pgm的cdn流id",
15003
+ "example": "ExampleStreamName",
15004
+ "member": "string",
15005
+ "name": "CdnStreamId",
15006
+ "output_required": false,
15007
+ "required": false,
15008
+ "type": "string",
15009
+ "value_allowed_null": false
14999
15010
  }
15000
15011
  ],
15001
15012
  "usage": "both"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "actions": {
3
3
  "ChatCompletions": {
4
- "document": "#### 接口功能\n\n调用接口,发起一次对话请求。\n如需使用OpenAI兼容接口, 请参考文档:[Deepseek OpenAI对话接口](https://cloud.tencent.com/document/product/1772/115969)\n\n#### 已支持的模型\n- DeepSeek-V3(model 参数值为**deepseek-v3**)\n - DeepSeek-V3为671B参数MoE模型,在百科知识、数学推理等多项任务上优势突出,评测成绩在主流榜单中位列开源模型榜首。\n - 支持64K上下文长度,最大输入56k,最大输出8k(不含思维链)。\n- DeepSeek-R1(model 参数值为**deepseek-r1**)\n - DeepSeek-R1为671B模型,使用强化学习训练,推理过程包含大量反思和验证,思维链长度可达数万字。 该系列模型在数学、代码以及各种复杂逻辑推理任务上推理效果优异,并为用户展现了完整的思考过程。\n - 支持64K上下文长度,最大输入56k,最大输出8k(不含思维链)。\n\n#### 计费说明\n- 限时免费\n\n本接口调用DeepSeek系列模型限时免费。即日至北京时间2025年2月25日23:59:59,所有腾讯云用户均可享受DeepSeek-V3、DeepSeek-R1模型限时免费服务,单账号限制接口并发上限为5。在此之后,模型价格将恢复至原价。\n- 标准计费(2025年2月26日起生效)\n\n ![image](https://cdn.xiaowei.qq.com/static/lke/deekseep-token0212.png)\n\n### Openai兼容协议接口\n知识引擎原子能力大模型对话 API 兼容了 OpenAI 的接口规范,这意味着您可以直接使用 OpenAI 官方提供的 SDK 来调用大模型对话接口。您仅需要将 base_url 和 [api_key](https://cloud.tencent.com/document/product/1772/115970) 替换成相关配置,不需要对应用做额外修改,即可无缝将您的应用切换到相应的大模型。请参考文档:[Deepseek OpenAI对话接口](https://cloud.tencent.com/document/product/1772/115969)。\n> base_url: https://api.lkeap.cloud.tencent.com/v1\n\n> api_key的获取请参考[API KEY管理](https://cloud.tencent.com/document/product/1772/115970)\n\n\n#### 快速接入\n1. 完成[实名认证](https://console.cloud.tencent.com/developer/auth)。\n2. 主账户前往[控制台](https://console.cloud.tencent.com/lkeap)开通服务。若为子账户,需由主账号在[权限管理](https://console.cloud.tencent.com/cam)中为子账号授权,关联预设策略,策略名称:QcloudLKEAPFullAccess。\n3. 通过API Explorer[在线调试](https://console.cloud.tencent.com/api/explorer?Product=lkeap&Version=2024-05-22&Action=ChatCompletions)。\n4. 使用[官方 SDK ](https://cloud.tencent.com/document/product/1772/115963#SDK)调用本接口(支持Python/Java/PHP/Go/Node.js/.NET等语言)。\n\n-----------\n\n### SDK调用示例\n通过本地代码调用本接口(支持Python/Java/PHP/Go/Node.js/.NET等语言):下面的代码以 Python 语言为例,展示如何访问腾讯云上的DeepSeek模型API的样例。\n(1)安装环境\n```\npython3 -m pip install --upgrade tencentcloud-sdk-python-common\npython3 -m pip install --upgrade tencentcloud-sdk-python-lkeap\n```\n\n(2)示例代码\n\n- 其中SecretKey和SecretID需要从腾讯云控制台获取\n\n- 参数params中模型Model字段可以选择“deepseek-r1“和“deepseek-v3”\n\n```\n# -*- coding: utf-8 -*-\nimport json\n\nfrom tencentcloud.common.common_client import CommonClient\nfrom tencentcloud.common import credential\nfrom tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException\nfrom tencentcloud.common.profile.client_profile import ClientProfile\nfrom tencentcloud.common.profile.http_profile import HttpProfile\n\nclass NonStreamResponse(object):\n def __init__(self):\n self.response = \"\"\n\n def _deserialize(self, obj):\n self.response = json.dumps(obj)\n\ntry:\n # 实例化一个认证对象,入参需要传入腾讯云账户 SecretId 和 SecretKey,此处还需注意密钥对的保密\n # 代码泄露可能会导致 SecretId 和 SecretKey 泄露,并威胁账号下所有资源的安全性。以下代码示例仅供参考,建议采用更安全的方式来使用密钥,请参见:https://cloud.tencent.com/document/product/1278/85305\n # 密钥可前往官网控制台 https://console.cloud.tencent.com/cam/capi 进行获取\n cred = credential.Credential(\"\", \"\")\n\n httpProfile = HttpProfile()\n httpProfile.endpoint = \"lkeap.tencentcloudapi.com\"\n httpProfile.reqTimeout = 40000 # 流式接口可能耗时较长\n clientProfile = ClientProfile()\n clientProfile.httpProfile = httpProfile\n\n params = \"{\\\"Model\\\":\\\"deepseek-r1\\\",\\\"Messages\\\":[{\\\"Role\\\":\\\"user\\\",\\\"Content\\\":\\\"你好\\\"}],\\\"Stream\\\":true}\";\n common_client = CommonClient(\"lkeap\", \"2024-05-22\", cred, \"ap-guangzhou\", profile=clientProfile)\n resp = common_client._call_and_deserialize(\"ChatCompletions\", json.loads(params), NonStreamResponse)\n if isinstance(resp, NonStreamResponse): # 非流式响应\n print(resp.response)\n else: # 流式响应\n for event in resp:\n print(event)\nexcept TencentCloudSDKException as err:\n print(err)\n\n```\n\n**DeepSeek-R1使用建议**\n\n1. 将温度设置在 0.5-0.7 范围内(建议为0.6),以防止无休止的重复或不连贯的输出。\n2. 避免添加system prompt,所有说明都应包含在user prompt中。",
4
+ "document": "### 接口功能\n\n调用接口,发起一次对话请求。单账号限制接口并发上限为5。\n如需使用OpenAI兼容接口, 请参考文档:[Deepseek OpenAI对话接口](https://cloud.tencent.com/document/product/1772/115969)\n\n#### 在线体验\n如您希望在网页内直接体验 DeepSeek 模型对话,推荐您前往[腾讯云大模型知识引擎](https://cloud.tencent.com/product/lke),使用[ DeepSeek 联网助手](https://lke.cloud.tencent.com/webim_exp/#/chat/wQrAwR)。\n\n#### 已支持的模型\n- DeepSeek-V3(model 参数值为**deepseek-v3**)\n - DeepSeek-V3为671B参数MoE模型,在百科知识、数学推理等多项任务上优势突出,评测成绩在主流榜单中位列开源模型榜首。\n - 支持64K上下文长度,最大输入56k,最大输出8k(不含思维链)。\n- DeepSeek-R1(model 参数值为**deepseek-r1**)\n - DeepSeek-R1为671B模型,使用强化学习训练,推理过程包含大量反思和验证,思维链长度可达数万字。 该系列模型在数学、代码以及各种复杂逻辑推理任务上推理效果优异,并为用户展现了完整的思考过程。\n - 支持64K上下文长度,最大输入56k,最大输出8k(不含思维链)。\n\n### 计费说明\n- 限时免费\n\n本接口调用DeepSeek系列模型限时免费。即日至北京时间2025年2月25日23:59:59,所有腾讯云用户均可享受DeepSeek-V3、DeepSeek-R1模型限时免费服务,单账号限制接口并发上限为5。在此之后,模型价格将恢复至原价,单账号限制接口并发上限为5。\n- 标准计费(2025年2月26日起生效)\n\n ![image](https://cdn.xiaowei.qq.com/static/lke/deekseep-token0212.png)\n\n### Openai兼容协议接口\n知识引擎原子能力大模型对话 API 兼容了 OpenAI 的接口规范,这意味着您可以直接使用 OpenAI 官方提供的 SDK 来调用大模型对话接口。您仅需要将 base_url 和 [api_key](https://cloud.tencent.com/document/product/1772/115970) 替换成相关配置,不需要对应用做额外修改,即可无缝将您的应用切换到相应的大模型。请参考文档:[Deepseek OpenAI对话接口](https://cloud.tencent.com/document/product/1772/115969)。\n> base_url: https://api.lkeap.cloud.tencent.com/v1\n\n> api_key的获取请参考[API KEY管理](https://cloud.tencent.com/document/product/1772/115970)\n\n\n### 快速接入\n1. 完成[实名认证](https://console.cloud.tencent.com/developer/auth)。\n2. 主账户前往[控制台](https://console.cloud.tencent.com/lkeap)开通服务。若为子账户,需由主账号在[权限管理](https://console.cloud.tencent.com/cam)中为子账号授权,关联预设策略,策略名称:QcloudLKEAPFullAccess。\n3. 通过API Explorer[在线调试](https://console.cloud.tencent.com/api/explorer?Product=lkeap&Version=2024-05-22&Action=ChatCompletions)。\n4. 使用[官方 SDK ](https://cloud.tencent.com/document/product/1772/115963#SDK)调用本接口(支持Python/Java/PHP/Go/Node.js/.NET等语言)。\n\n-----------\n\n### SDK调用示例\n通过本地代码调用本接口(支持Python/Java/PHP/Go/Node.js/.NET等语言):下面的代码以 Python 语言为例,展示如何访问腾讯云上的DeepSeek模型API的样例。\n(1)安装环境\n```\npython3 -m pip install --upgrade tencentcloud-sdk-python-common\npython3 -m pip install --upgrade tencentcloud-sdk-python-lkeap\n```\n\n(2)示例代码\n\n- 其中SecretKey和SecretID需要从腾讯云控制台获取\n\n- 参数params中模型Model字段可以选择“deepseek-r1“和“deepseek-v3”\n\n```\n# -*- coding: utf-8 -*-\nimport json\n\nfrom tencentcloud.common.common_client import CommonClient\nfrom tencentcloud.common import credential\nfrom tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException\nfrom tencentcloud.common.profile.client_profile import ClientProfile\nfrom tencentcloud.common.profile.http_profile import HttpProfile\n\nclass NonStreamResponse(object):\n def __init__(self):\n self.response = \"\"\n\n def _deserialize(self, obj):\n self.response = json.dumps(obj)\n\ntry:\n # 实例化一个认证对象,入参需要传入腾讯云账户 SecretId 和 SecretKey,此处还需注意密钥对的保密\n # 代码泄露可能会导致 SecretId 和 SecretKey 泄露,并威胁账号下所有资源的安全性。以下代码示例仅供参考,建议采用更安全的方式来使用密钥,请参见:https://cloud.tencent.com/document/product/1278/85305\n # 密钥可前往官网控制台 https://console.cloud.tencent.com/cam/capi 进行获取\n cred = credential.Credential(\"\", \"\")\n\n httpProfile = HttpProfile()\n httpProfile.endpoint = \"lkeap.tencentcloudapi.com\"\n httpProfile.reqTimeout = 40000 # 流式接口可能耗时较长\n clientProfile = ClientProfile()\n clientProfile.httpProfile = httpProfile\n\n params = \"{\\\"Model\\\":\\\"deepseek-r1\\\",\\\"Messages\\\":[{\\\"Role\\\":\\\"user\\\",\\\"Content\\\":\\\"你好\\\"}],\\\"Stream\\\":true}\";\n common_client = CommonClient(\"lkeap\", \"2024-05-22\", cred, \"ap-guangzhou\", profile=clientProfile)\n resp = common_client._call_and_deserialize(\"ChatCompletions\", json.loads(params), NonStreamResponse)\n if isinstance(resp, NonStreamResponse): # 非流式响应\n print(resp.response)\n else: # 流式响应\n for event in resp:\n print(event)\nexcept TencentCloudSDKException as err:\n print(err)\n\n```\n\n**DeepSeek-R1使用建议**\n\n1. 将温度设置在 0.5-0.7 范围内(建议为0.6),以防止无休止的重复或不连贯的输出。\n2. 避免添加system prompt,所有说明都应包含在user prompt中。",
5
5
  "input": "ChatCompletionsRequest",
6
6
  "name": "DeepSeek API 接口",
7
7
  "output": "ChatCompletionsResponse",
@@ -14605,7 +14605,7 @@
14605
14605
  {
14606
14606
  "disabled": false,
14607
14607
  "document": "内容",
14608
- "example": "{\\\"name\\\":\\\"test\\\",\\\"kind\\\":\\\"blackbox-exporter\\\",\\\"spec\\\":{\\\"in",
14608
+ "example": "{\"name\":\"test\",\"kind\":\"blackbox-exporter\",\"spec\":{\"scrapeSpec\":{\"interval\":\"15s\"},\"instanceSpec\":{\"module\":\"http_get\",\"urls\":[\"http://test.com\"]},\"exporterSpec\":{}}}",
14609
14609
  "member": "string",
14610
14610
  "name": "Content",
14611
14611
  "output_required": true,