KStream has a simple `#selectKey()` method, but it appears the only way to re-key a KTable is by doing `.toStream(mapper).groupByKey().reduce()`. Is this correct? I'm guessing this is because an attempt to re-key a table might result in multiple values at the new key.
- What is the best way to re-key a KTable? Dmitry Minkovsky
- Re: What is the best way to re-key a KTable? Matthias J. Sax