|
@ -29,20 +29,16 @@ import org.apache.hadoop.conf.Configuration;
|
|
|
import org.apache.hadoop.hbase.Cell;
|
|
|
import org.apache.hadoop.hbase.CellUtil;
|
|
|
import org.apache.hadoop.hbase.HBaseConfiguration;
|
|
|
import org.apache.hadoop.hbase.TableName;
|
|
|
import org.apache.hadoop.hbase.client.*;
|
|
|
import org.apache.hadoop.hbase.util.Bytes;
|
|
|
import org.apache.kafka.clients.producer.KafkaProducer;
|
|
|
import org.apache.kafka.clients.producer.Producer;
|
|
|
import org.apache.kafka.clients.producer.ProducerConfig;
|
|
|
import org.apache.kafka.clients.producer.ProducerRecord;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.kafka.core.KafkaTemplate;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
import java.util.Properties;
|
|
|
|
|
|
/**
|
|
|
* A simple consumer that just logs the events.
|
|
@ -53,18 +49,9 @@ public class LoggingConsumer {
|
|
|
private static String localhost = "192.168.131.109"; //localhost
|
|
|
private static String zookeeperHost = "master"; //zookeeper
|
|
|
private static String subscriptionName = "logger";
|
|
|
private static byte[] table = Bytes.toBytes("sep-user-demo"); //hbase
|
|
|
private static byte[] table = Bytes.toBytes("HealtharchiveSub");//sep-user-demo //hbase
|
|
|
private static byte[] columnFamily = Bytes.toBytes(""); //
|
|
|
private static byte[] columnQualifier = Bytes.toBytes("payload"); //
|
|
|
|
|
|
private static String index = "medical_service_index";
|
|
|
private static String type = "medical_service";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static byte[] columnQualifier = Bytes.toBytes(""); //
|
|
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
|
Logger log = LoggerFactory.getLogger(LoggingConsumer.class);
|
|
@ -90,39 +77,14 @@ public class LoggingConsumer {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
private static Producer createProducer() {
|
|
|
Properties properties = new Properties();
|
|
|
properties.put("zookeeper.connect", "192.168.131.234:2181");//
|
|
|
properties.put("serializer.class", StringEncoder.class.getName());
|
|
|
properties.put("bootstrap.servers", "192.168.131.234:9092");//
|
|
|
properties.put("key.serializer", "org.apache.kafka.common.serialization.StringSerializer");
|
|
|
properties.put("value.serializer", "org.apache.kafka.common.serialization.StringSerializer");
|
|
|
Producer<String, String> producer = new KafkaProducer<String, String>(properties);
|
|
|
return producer;
|
|
|
}
|
|
|
|
|
|
private static void sendMessage(Producer producer ,String topic,String message){
|
|
|
// for (int i = 0; i < 100; i++) {
|
|
|
// ProducerRecord producerRecord = new ProducerRecord<String, String>(topic, Integer.toString(i), Integer.toString(i));
|
|
|
// producer.send(producerRecord);
|
|
|
// }
|
|
|
|
|
|
producer.send(new ProducerRecord<Integer, String>(topic, "message: " + message));
|
|
|
producer.close();
|
|
|
}
|
|
|
|
|
|
private static class EventLogger implements EventListener {
|
|
|
private static String topic = "sep-hbase-data";
|
|
|
@Autowired
|
|
|
private KafkaTemplate<String,String> kafkaTemplate;
|
|
|
Logger log = LoggerFactory.getLogger(LoggingConsumer.class);
|
|
|
|
|
|
@Override
|
|
|
public void processEvents(List<SepEvent> sepEvents) {
|
|
|
log.info(" sep Events get listener");
|
|
|
|
|
|
Producer producer = createProducer();
|
|
|
|
|
|
for (SepEvent sepEvent : sepEvents) {
|
|
|
System.out.println("Received event:");
|
|
|
System.out.println(" table = " + Bytes.toString(sepEvent.getTable()));
|
|
@ -133,14 +95,15 @@ public class LoggingConsumer {
|
|
|
for (Cell cell : sepEvent.getKeyValues()) {
|
|
|
String key = Bytes.toString(CellUtil.cloneQualifier(cell));
|
|
|
String value = Bytes.toString(CellUtil.cloneValue(cell));
|
|
|
|
|
|
log.debug("hbase cloumn = " + key);
|
|
|
log.debug("hbase value = " + value);
|
|
|
System.out.println(cell);
|
|
|
System.out.println(" key = " + key);
|
|
|
System.out.println(" value = " + value);
|
|
|
sendMessage(producer,topic,key + ":" + value);
|
|
|
// kafkaTemplate.send(topic,"你","好");
|
|
|
json.put(key, value);
|
|
|
}
|
|
|
|
|
|
}
|
|
|
log.info("sep Events end");
|
|
|
}
|