The proposal LGTM, +1

One question I have is about when to send the record to the resulted KTable
changelog. For example in your code snippet in the wiki page, before you
see the end result of

1L, Customer[

                      cart:{Item[no:01], Item[no:03], Item[no:04]},
                      purchases:{Item[no:07], Item[no:08]},
                      wishList:{Item[no:11]}
      ]


You will firs see

1L, Customer[

                      cart:{Item[no:01]},
                      purchases:{},
                      wishList:{}
      ]

1L, Customer[

                      cart:{Item[no:01]},
                      purchases:{Item[no:07],Item[no:08]},

                      wishList:{}
      ]

1L, Customer[

                      cart:{Item[no:01]},
                      purchases:{Item[no:07],Item[no:08]},

                      wishList:{}
      ]

...


I'm wondering if it makes more sense to only start sending the update if
the corresponding agg-key has seen at least one input from each of the
input stream? Maybe it is out of the scope of this KIP and we can make it a
more general discussion in a separate one.


Guozhang


On Fri, May 19, 2017 at 8:37 AM, Xavier Léauté <xav...@confluent.io> wrote:

> Hi Kyle, I left a few more comments in the discussion thread, if you
> wouldn't mind taking a look
>
> On Fri, May 19, 2017 at 5:31 AM Kyle Winkelman <winkelman.k...@gmail.com>
> wrote:
>
> > Hello all,
> >
> > I would like to start the vote on KIP-150.
> >
> > https://cwiki.apache.org/confluence/display/KAFKA/KIP-150+-+
> Kafka-Streams+Cogroup
> >
> > Thanks,
> > Kyle
> >
>



-- 
-- Guozhang

Reply via email to