aliyun / alibabacloud-odps-maxframe-client

Apache License 2.0
3 stars 1 forks source link

Series.add_prefix run error: HTTP 500: Internal Server Error #35

Open snowljs opened 1 week ago

snowljs commented 1 week ago
s = md.Series([1, 2, 3, 4])
s.add_prefix('item_').execute()
---
File [~/Projcect/maxframe/core/maxframe_client/session/odps.py:338](http://localhost:8888/lab/tree/~/Projcect/maxframe/core/maxframe_client/session/odps.py#line=337), in MaxFrameSession._run_in_background(self, dag_info, tileables, progress)
    336         progress.value = 1.0
    337     elif dag_info.status == DagStatus.FAILED:
--> 338         dag_info.error_info.reraise()
    340 if dag_info.status in (DagStatus.RUNNING, DagStatus.CANCELLED):
    341     return

File [~/Projcect/maxframe/core/maxframe/protocol.py:212](http://localhost:8888/lab/tree/~/Projcect/maxframe/core/maxframe/protocol.py#line=211), in ErrorInfo.reraise(self)
    207 def reraise(self):
    208     if (
    209         self.raw_error_source == ErrorSource.PYTHON
    210         and self.raw_error_data is not None
    211     ):
--> 212         raise self.raw_error_data
    213     raise RemoteException(self.error_messages, self.error_tracebacks, [])

File [/apsara/odps/KubeTempRoot/releasea/executor-releasea-124/MAXFRAME_TASK_default_2024-06-20-18-15-23-2916_1_206430_1/python/framedriver/maxframe_framedriver/services/dag/dagrunner.py:472](http://localhost:8888/apsara/odps/KubeTempRoot/releasea/executor-releasea-124/MAXFRAME_TASK_default_2024-06-20-18-15-23-2916_1_206430_1/python/framedriver/maxframe_framedriver/services/dag/dagrunner.py#line=471), in _run()

File [/apsara/odps/KubeTempRoot/releasea/executor-releasea-124/MAXFRAME_TASK_default_2024-06-20-18-15-23-2916_1_206430_1/python/framedriver/maxframe/lib/wrapped_pickle.py:123](http://localhost:8888/apsara/odps/KubeTempRoot/releasea/executor-releasea-124/MAXFRAME_TASK_default_2024-06-20-18-15-23-2916_1_206430_1/python/framedriver/maxframe/lib/wrapped_pickle.py#line=122), in wrapped()

File [/apsara/odps/KubeTempRoot/releasea/executor-releasea-124/MAXFRAME_TASK_default_2024-06-20-18-15-23-2916_1_206430_1/python/framedriver/maxframe_spe_manager/runner.py:40](http://localhost:8888/apsara/odps/KubeTempRoot/releasea/executor-releasea-124/MAXFRAME_TASK_default_2024-06-20-18-15-23-2916_1_206430_1/python/framedriver/maxframe_spe_manager/runner.py#line=39), in wrapper()

File [/apsara/odps/KubeTempRoot/releasea/executor-releasea-124/MAXFRAME_TASK_default_2024-06-20-18-15-23-2916_1_206430_1/python/framedriver/maxframe_spe_manager/runner.py:123](http://localhost:8888/apsara/odps/KubeTempRoot/releasea/executor-releasea-124/MAXFRAME_TASK_default_2024-06-20-18-15-23-2916_1_206430_1/python/framedriver/maxframe_spe_manager/runner.py#line=122), in submit_subdag()

File [/apsara/odps/KubeTempRoot/releasea/executor-releasea-124/MAXFRAME_TASK_default_2024-06-20-18-15-23-2916_1_206430_1/python/framedriver/maxframe_spe/client.py:67](http://localhost:8888/apsara/odps/KubeTempRoot/releasea/executor-releasea-124/MAXFRAME_TASK_default_2024-06-20-18-15-23-2916_1_206430_1/python/framedriver/maxframe_spe/client.py#line=66), in submit_subdag()

HTTPClientError: HTTP 500: Internal Server Error
---