Re: KTree instead of ktable

2017-08-21 Thread Guozhang Wang
Hi Victor, The KTable abstraction is mainly for maintaining a keyed collection of facts that can be continuously evolving from its updates, not as a concrete data structure in the Streams DSL. For your case, I think it may be easier expressed in the lower-level API with the StateStoreSupplier, wh

KTree instead of ktable

2017-08-21 Thread Victor Denisov
Hi, I would like to build a structure similar to ktable, but instead of structuring this data structure as a table I would like to structure it, say, as a binary tree. Are there any standard approaches for it? Is this way of using kstreams is supported in the first place? Thanks, Victor.