>From my observations, serialization is going to occur only if you have parallelism in your LocalCluster (more than one worker thread). I've also found that when going from LocalCluster to the real thing, there will always be a couple unexpected twists and some tuning to do.
Also, make sure to turn off java serialization fallback ( Config#setFallBackOnJavaSerialization(false)) to make sure Kryo is working properly for all your types. On Sat, Mar 29, 2014 at 5:24 PM, János Háber <[email protected]>wrote: > Hi, > > I have a little question. In Local Cluster mode the serialization enabled? > Example if I emit a Json4s JValue type it's serializable by kyro? How can I > check without release to normal cluster? > > Thanks > > b0c1 >
