0
나는 생산자와 번들 및 저장소를 얻을 수있는 소비자로부터 중고품 번들을 보내려고하지만 나는 공식 예제를 사용하여 생산자와 소비자 greoup을 만든구성 카프카는
을 카프카 꽤 새로운 오전 번들 배열.
내가KeyedMessage<String, Bundle> data = new KeyedMessage<String, Bundle>("bundles", "Bundle", bundle);
producer.send(data);
그러나 소비자 측에서 생산자 측 코드를 작성했습니다
나는
이Map<String, Integer> topicCountMap = new HashMap<String, Integer>();
topicCountMap.put(topic, new Integer(NO_OF_THREADS));
Map<String, List<KafkaStream<byte[], byte[]>>> consumerMap = consumer.createMessageStreams(topicCountMap);
List<KafkaStream<byte[], byte[]>> messageStreams = consumerMap.get(topic);
내가 카프카 소비자가 번들 형식이 아닌 바이트 [] 배열로 데이터를 얻을 수 있도록 할 수 있습니다 .