Initial TCA commit into DCAEGEN2
[dcaegen2/analytics/tca.git] / dcae-analytics-cdap-plugins / src / main / java / org / openecomp / dcae / apod / analytics / cdap / plugins / batch / sink / dmaap / DMaaPMRRecordWriter.java
1 /*
2  * ===============================LICENSE_START======================================
3  *  dcae-analytics
4  * ================================================================================
5  *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *   You may obtain a copy of the License at
10  *
11  *          http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  *  ============================LICENSE_END===========================================
19  */
20
21 package org.openecomp.dcae.apod.analytics.cdap.plugins.batch.sink.dmaap;
22
23 import org.apache.hadoop.io.NullWritable;
24 import org.apache.hadoop.mapreduce.RecordWriter;
25 import org.apache.hadoop.mapreduce.TaskAttemptContext;
26 import org.openecomp.dcae.apod.analytics.dmaap.service.publisher.DMaaPMRPublisher;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29
30 import java.io.IOException;
31 import java.util.Arrays;
32
33 /**
34  * A simple implementation of {@link RecordWriter} which writes messages to DMaaP MR topic
35  * <p>
36  * @author Rajiv Singla . Creation Date: 1/27/2017.
37  */
38 public class DMaaPMRRecordWriter extends RecordWriter<String, NullWritable> {
39
40     private static final Logger LOG = LoggerFactory.getLogger(DMaaPMRRecordWriter.class);
41
42     private final DMaaPMRPublisher dMaaPMRPublisher;
43
44     public DMaaPMRRecordWriter(DMaaPMRPublisher dMaaPMRPublisher) {
45         this.dMaaPMRPublisher = dMaaPMRPublisher;
46     }
47
48     @Override
49     public void write(String message, NullWritable value) throws IOException, InterruptedException {
50         LOG.debug("Writing message to DMaaP MR Topic: {}", message);
51         dMaaPMRPublisher.publish(Arrays.asList(message));
52     }
53
54     @Override
55     public void close(TaskAttemptContext context) throws IOException, InterruptedException {
56         dMaaPMRPublisher.flush();
57     }
58 }