Hey guys, The storm Config offers some convenience methods for registering serializers. (I'm talking about storm 0.9.2-incubating..)
registerSerialization(Class) registerSerialization(Class, Class<? extends Serializer>) registerSerialization(Map, Class, Class<? extends Serializer>) If I understand correctly, the 3rd signature is for the case when you want to add a new serializer to a given config. But how to configure serializer instances ? There are decorators, but you only can provide decorator classes, no instances. What I'm looking for is a way to pass in configuration parameters to the serializers itself in my java code. Any help is appreciated Thanks, Patrick
