huijunwu edited a comment on issue #3606: URL: https://github.com/apache/incubator-heron/issues/3606#issuecomment-674481073
If your topology is having "Class is not registered" error with Kryo, you could solve it by adding the following line into your topology source code: ``` Config config = new Config(); config.registerSerialization(MyClass.class); Submitter.submitTopology(... config, ...) ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
