请教大家个大数据计算MaxCompute问题: 在使用dataworks py3 脚本时候 将DataFrame数据 落到表中报错。
from odps import options
import pandas as pd
t = o.get_table(‘tmp_malei_test_df’)
records = [[2, ‘aaa’],
[222, ‘bbb’]
]
df = pd.DataFrame(records, columns=[“mer_id”, “tag_obj_type”])
with t.open_writer(partition=’pt_tag_source=malei’,create_partition=True) as writer:
writer.write(df)
Executing user script with PyODPS 0.10.7
Traceback (most recent call last):
File “”, line 52, in
writer.write(df)
File “/home/tops/lib/python3.7/site-packages/odps/models/table.py”, line 666, in write
raise ValueError(‘Unsupported record type.’)
ValueError: Unsupported record type.