2016-07-25 14:44:02 -07:00
|
|
|
/**
|
|
|
|
* Copyright 2015 LinkedIn Corp. All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
*/
|
|
|
|
package metadata.etl.kafka;
|
|
|
|
|
2016-09-26 15:06:33 -07:00
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
2016-07-25 14:44:02 -07:00
|
|
|
import org.apache.avro.generic.GenericData;
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import wherehows.common.schemas.Record;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Abstract class for Kafka consumer message processor.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public abstract class KafkaConsumerProcessor {
|
|
|
|
|
|
|
|
protected static final Logger logger = LoggerFactory.getLogger(KafkaConsumerProcessor.class);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Abstract method 'process' to be implemented by specific processor
|
|
|
|
* input Kafka record, process information and write to DB.
|
|
|
|
* @param record
|
|
|
|
* @param topic
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
public abstract Record process(GenericData.Record record, String topic) throws Exception;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2016-09-26 15:06:33 -07:00
|
|
|
* Parse Long value from a String, if null or exception, return 0
|
2016-07-25 14:44:02 -07:00
|
|
|
* @param text String
|
2016-09-26 15:06:33 -07:00
|
|
|
* @return long
|
2016-07-25 14:44:02 -07:00
|
|
|
*/
|
|
|
|
protected long parseLong(String text) {
|
|
|
|
try {
|
|
|
|
return Long.parseLong(text);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-26 15:06:33 -07:00
|
|
|
/**
|
|
|
|
* Parse Integer value from a String, if null or exception, return 0
|
|
|
|
* @param text String
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
protected int parseInteger(String text) {
|
|
|
|
try {
|
|
|
|
return Integer.parseInt(text);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2016-07-25 14:44:02 -07:00
|
|
|
}
|