List<Class1> result = master_map.values()
.stream()
.flatMap(Arrays::stream) //use flatMap to flatten nested stream
.collect(Collectors.toList());
中有两个表。例如:Layouts(Id,VenueId,Description)和Venues(Id,Adress,Phone)。布局表具有指向场地的参考键。
Kafka表中也有两个主题。我如何像这样发送到我的输出主题database
中:
JSON
答案 0 :(得分:1)
从5.1.1开始,您不能在KSQL中构造嵌套对象(只能读取它们)。对此有一个未解决的问题,请对此进行upvote /评论:https://github.com/confluentinc/ksql/issues/2147