Quantcast
Channel: Custom serialization in Apache Storm - Stack Overflow
Browsing latest articles
Browse All 3 View Live

Answer by Samuel for Custom serialization in Apache Storm

It doesn't look like Storm supports Kryo for serialization of bolts or spouts. See this line where it explicitly tries to serialize with Java serialization.

View Article



Answer by Chris Gerken for Custom serialization in Apache Storm

I had to add the following config to my topologies in order to get Storm to use my own serialization logic: config.put(Config.TOPOLOGY_FALL_BACK_ON_JAVA_SERIALIZATION, true); where config is the...

View Article

Custom serialization in Apache Storm

I try to add custom serializer for my Objects which is used in Apache Storm Spouts/Bolts. Right now my code looks like that: conf.registerSerialization(MyService.class, MyKryoSerializer.class); public...

View Article
Browsing latest articles
Browse All 3 View Live




Latest Images