10

我注意到,当我在多线程上下文中使用 protobuf-net 时,它往往会间歇性地失败并出现以下错误:

System.TimeoutException: Timeout while inspecting metadata; this may indicate a deadlock. 
This can often be avoided by preparing necessary serializers during application initialization, rather than allowing multiple threads to perform the initial metadata inspection

但是,如果我在第一次序列化特定类型时锁定对 protobuf-net 序列化程序的访问,它可以正常工作而不会失败。

protobuf-net 是否意味着线程安全,或者这只是一个错误?

4

1 回答 1

14

Protobuf 的元数据检查不是线程安全的。这个错误是“罕见的”,但在并行完成的大量序列化中经常发生。在我序列化大约 7000 万个对象的项目中,我遇到了这个确切的错误。您可以通过生成序列化的元数据 AHEAD 来修复它:

Serializer.PrepareSerializer<YourCustomType1>();
Serializer.PrepareSerializer<YourCustomType2>();

在序列化之前的某个地方执行该代码,也许是一个静态构造函数,用于每个序列化的自定义类型。

您还可以尝试增加 Protobuf 的元数据检查超时来尝试帮助您,但如果 Protobuf 代码中出现真正的死锁,这实际上只会延迟您的异常:

// Initialize Protobuf Serializer for 5 minutes of wait in the case of long-waiting locks
RuntimeTypeModel.Default.MetadataTimeoutMilliseconds = 300000;
于 2013-06-13T20:30:12.550 回答