protobuf的坑

项目中用到了Java的protobuf生成的序列化数据,在python中进行反序列化

版本为3.6.1

其中有一个为递归结构,当层数大于100时,python反序列化报错

通过查找,发现可通过如下代码解决

from google.protobuf.pyext._message import SetAllowOversizeProtos     SetAllowOversizeProtos(True)

但是实际测试不生效


通过若干实现,终于发现python的protobuf库需要升级到3.9.0才能反序列化成功

哭,浪费时间若干

你可能感兴趣的:(protobuf的坑)