Re: String Interning

2018-06-28 Thread Elias Levy
re duplicates of a small number of unique values. So it’s > an ideal usecase for String interning. I’ve tried to use interning in the > constructors for the message elements, but I suspect that I need to do > something to preserve the interning when Flink serializes/deserializes >

Re: String Interning

2018-06-26 Thread Stefan Richter
ained so there are fewer than > 100 possible unique key values. Profiling of the Flink job shows millions of > in flight stream elements, with an equal number of Strings, but I know all > the strings are duplicates of a small number of unique values. So it’s an > ideal usecase for

String Interning

2018-06-22 Thread Martin, Nick
100 possible unique key values. Profiling of the Flink job shows millions of in flight stream elements, with an equal number of Strings, but I know all the strings are duplicates of a small number of unique values. So it's an ideal usecase for String interning. I've tried to use interning