**在Apache Ignite中插入自定义序列化程序**

时间:2016-03-02 07:26:11

标签: ignite

在Apache Ignite中插入自定义序列化程序

我尝试在二进制配置bean中添加Kyro Serializer,但在运行时它给了我一个类类型转换错误。

我的代码是

 <property name="binaryConfiguration">
            <bean class="org.apache.ignite.configuration.BinaryConfiguration">
                <property name="typeConfigurations">
                    <list>
                        <bean class="org.apache.ignite.binary.BinaryTypeConfiguration">
                            <property name="typeName" value="testPojo" />
                            <property name="serializer">
                                <bean class="com.esotericsoftware.kryo.serializers.DefaultSerializers" />
                            </property>
                        </bean>
                    </list>
                </property>
            </bean>
        </property>

错误日志

Caused by: java.lang.IllegalStateException: Cannot convert value of type [com.esotericsoftware.kryo.serializers.DefaultSerializers] to required type [org.apache.ignite.binary.BinarySerializer] for property 'serializer': no matching editors or conversion strategy found
    at org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:302)
    at org.springframework.beans.AbstractNestablePropertyAccessor.convertIfNecessary(AbstractNestablePropertyAccessor.java:576)
    ... 104 more

在挖掘Apache Ignite提供的BinarySerializer时,得出的结论是,必须为序列化程序编写一个自定义实现,作为其他插件序列化程序来实现它。

优化的Marshaller如何受益?

1 个答案:

答案 0 :(得分:4)

BinarySerializer是一个可以实现的接口,用于为特定类型定制(de)序列化逻辑。这类似于Externalizable的{​​{1}},这是自Ignite 1.5以来的默认编组器。有关详细信息,请参阅此页:https://apacheignite.readme.io/docs/binary-marshaller

BinaryMarshaller实现了旧的序列化协议,该协议在引入二进制格式之前使用。它仍然可用,但推荐使用二进制格式。

您还可以实现自己的编组程序(例如,基于Kryo)。为此,请实现OptimizedMarshaller接口,并通过Marshaller属性在配置中提供此实现。