I think I found something that works: http://storm.apache.org/javadoc/apidocs/backtype/storm/Config.html#TOPOLOGY_TESTING_ALWAYS_TRY_SERIALIZE
On Mon, Nov 9, 2015 at 8:21 AM, Sean Bollin <[email protected]> wrote: > On Mon, Nov 9, 2015 at 1:57 AM, Matthias J. Sax <[email protected]> wrote: >> In local mode, tuples are passed in memory from operator to operator >> without going through the serialization stack. >> >> I would recommend to write a couple of unit tests for your serializer. >> >> -Matthias >> >> On 11/09/2015 10:13 AM, Stephen Powis wrote: >>> Sorry I can't answer your question, but if you've written a serializer >>> that could potentially be used by others I encourage you to add it to >>> this repository: https://github.com/magro/kryo-serializers >>> >>> On Mon, Nov 9, 2015 at 1:07 PM, Sean Bollin <[email protected]> wrote: >>>> Hi, we've written a custom Kryo serializer. As far as I can tell, >>>> Storm doesn't use serialization if you're running it in local mode. >>>> >>>> Yet, we need to be able to test our custom Kryo serializer, preferably >>>> locally. >>>> >>>> Is it possible to test the serializer locally to ensure that it actually >>>> works? >>
