dee9e57f12805ec2041553445a369051dc24e514
[dmaap/messagerouter/msgrtr.git] / src / main / java / com / att / dmf / mr / metrics / publisher / impl / DMaaPCambriaSimplerBatchPublisher.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
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  *        http://www.apache.org/licenses/LICENSE-2.0
11 *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *  
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22 package com.att.dmf.mr.metrics.publisher.impl;
23
24 import java.io.ByteArrayOutputStream;
25 import java.io.IOException;
26 import java.io.OutputStream;
27 import java.net.MalformedURLException;
28 import java.util.Collection;
29 import java.util.LinkedList;
30 import java.util.List;
31 import java.util.concurrent.LinkedBlockingQueue;
32 import java.util.concurrent.ScheduledThreadPoolExecutor;
33 import java.util.concurrent.TimeUnit;
34 import java.util.zip.GZIPOutputStream;
35
36 import javax.ws.rs.client.Client;
37 import javax.ws.rs.client.ClientBuilder;
38 import javax.ws.rs.client.Entity;
39 import javax.ws.rs.client.WebTarget;
40 import javax.ws.rs.core.Response;
41
42 import com.att.ajsc.filemonitor.AJSCPropertiesMap;
43 import com.att.dmf.mr.constants.CambriaConstants;
44 import com.att.dmf.mr.metrics.publisher.CambriaPublisherUtility;
45
46 /**
47  * 
48  * class DMaaPCambriaSimplerBatchPublisher used to send the publish the messages
49  * in batch
50  * 
51  * @author anowarul.islam
52  *
53  */
54 public class DMaaPCambriaSimplerBatchPublisher extends CambriaBaseClient
55                 implements com.att.dmf.mr.metrics.publisher.CambriaBatchingPublisher {
56         /**
57          * 
58          * static inner class initializes with urls, topic,batchSize
59          * 
60          * @author anowarul.islam
61          *
62          */
63         public static class Builder {
64                 public Builder() {
65                 }
66
67                 /**
68                  * constructor initialize with url
69                  * 
70                  * @param baseUrls
71                  * @return
72                  * 
73                  */
74                 public Builder againstUrls(Collection<String> baseUrls) {
75                         fUrls = baseUrls;
76                         return this;
77                 }
78
79                 /**
80                  * constructor initializes with topics
81                  * 
82                  * @param topic
83                  * @return
84                  * 
85                  */
86                 public Builder onTopic(String topic) {
87                         fTopic = topic;
88                         return this;
89                 }
90
91                 /**
92                  * constructor initilazes with batch size and batch time
93                  * 
94                  * @param maxBatchSize
95                  * @param maxBatchAgeMs
96                  * @return
97                  * 
98                  */
99                 public Builder batchTo(int maxBatchSize, long maxBatchAgeMs) {
100                         fMaxBatchSize = maxBatchSize;
101                         fMaxBatchAgeMs = maxBatchAgeMs;
102                         return this;
103                 }
104
105                 /**
106                  * constructor initializes with compress
107                  * 
108                  * @param compress
109                  * @return
110                  */
111                 public Builder compress(boolean compress) {
112                         fCompress = compress;
113                         return this;
114                 }
115
116                 /**
117                  * method returns DMaaPCambriaSimplerBatchPublisher object
118                  * 
119                  * @return
120                  */
121                 public DMaaPCambriaSimplerBatchPublisher build()  {
122                         
123                         try {
124                         return new DMaaPCambriaSimplerBatchPublisher(fUrls, fTopic, fMaxBatchSize, fMaxBatchAgeMs, fCompress);
125                 } catch (MalformedURLException e) {
126                         throw new RuntimeException(e);
127                 }
128                 }
129
130                 private Collection<String> fUrls;
131                 private String fTopic;
132                 private int fMaxBatchSize = 100;
133                 private long fMaxBatchAgeMs = 1000;
134                 private boolean fCompress = false;
135         };
136
137         /**
138          * 
139          * @param partition
140          * @param msg
141          */
142         @Override
143         public int send(String partition, String msg) {
144                 return send(new message(partition, msg));
145         }
146
147         /**
148          * @param msg
149          */
150         @Override
151         public int send(message msg) {
152                 final LinkedList<message> list = new LinkedList<message>();
153                 list.add(msg);
154                 return send(list);
155         }
156
157         /**
158          * @param msgs
159          */
160         @Override
161         public synchronized int send(Collection<message> msgs) {
162                 if (fClosed) {
163                         throw new IllegalStateException("The publisher was closed.");
164                 }
165
166                 for (message userMsg : msgs) {
167                         fPending.add(new TimestampedMessage(userMsg));
168                 }
169                 return getPendingMessageCount();
170         }
171
172         /**
173          * getPending message count
174          */
175         @Override
176         public synchronized int getPendingMessageCount() {
177                 return fPending.size();
178         }
179
180         /**
181          * 
182          * @exception InterruptedException
183          * @exception IOException
184          */
185         @Override
186         public void close() {
187                 try {
188                         final List<message> remains = close(Long.MAX_VALUE, TimeUnit.MILLISECONDS);
189                         if (remains.isEmpty()) {
190                                 getLog().warn("Closing publisher with " + remains.size() + " messages unsent. "
191                                                 + "Consider using CambriaBatchingPublisher.close( long timeout, TimeUnit timeoutUnits ) to recapture unsent messages on close.");
192                         }
193                 } catch (InterruptedException e) {
194                         getLog().warn("Possible message loss. " + e.getMessage(), e);
195                 } catch (IOException e) {
196                         getLog().warn("Possible message loss. " + e.getMessage(), e);
197                 }
198         }
199
200         /**
201          * @param time
202          * @param unit
203          */
204         @Override
205         public List<message> close(long time, TimeUnit unit) throws IOException, InterruptedException {
206                 synchronized (this) {
207                         fClosed = true;
208
209                         // stop the background sender
210                         fExec.setContinueExistingPeriodicTasksAfterShutdownPolicy(false);
211                         fExec.setExecuteExistingDelayedTasksAfterShutdownPolicy(false);
212                         fExec.shutdown();
213                 }
214
215                 final long now = Clock.now();
216                 final long waitInMs = TimeUnit.MILLISECONDS.convert(time, unit);
217                 final long timeoutAtMs = now + waitInMs;
218
219                 while (Clock.now() < timeoutAtMs && getPendingMessageCount() > 0) {
220                         send(true);
221                         Thread.sleep(250);
222                 }
223                 // synchronizing the current object
224                 synchronized (this) {
225                         final LinkedList<message> result = new LinkedList<message>();
226                         fPending.drainTo(result);
227                         return result;
228                 }
229         }
230
231         /**
232          * Possibly send a batch to the cambria server. This is called by the
233          * background thread and the close() method
234          * 
235          * @param force
236          */
237         private synchronized void send(boolean force) {
238                 if (force || shouldSendNow()) {
239                         if (!sendBatch()) {
240                                 getLog().warn("Send failed, " + fPending.size() + " message to send.");
241
242                                 // note the time for back-off
243                                 fDontSendUntilMs = sfWaitAfterError + Clock.now();
244                         }
245                 }
246         }
247
248         /**
249          * 
250          * @return
251          */
252         private synchronized boolean shouldSendNow() {
253                 boolean shouldSend = false;
254                 if (fPending.isEmpty()) {
255                         final long nowMs = Clock.now();
256
257                         shouldSend = (fPending.size() >= fMaxBatchSize);
258                         if (!shouldSend) {
259                                 final long sendAtMs = fPending.peek().timestamp + fMaxBatchAgeMs;
260                                 shouldSend = sendAtMs <= nowMs;
261                         }
262
263                         // however, wait after an error
264                         shouldSend = shouldSend && nowMs >= fDontSendUntilMs;
265                 }
266                 return shouldSend;
267         }
268
269         /**
270          * 
271          * @return
272          */
273         private synchronized boolean sendBatch() {
274                 // it's possible for this call to be made with an empty list. in this
275                 // case, just return.
276                 if (fPending.isEmpty()) {
277                         return true;
278                 }
279
280                 final long nowMs = Clock.now();
281                 final String url = CambriaPublisherUtility.makeUrl(fTopic);
282
283                 getLog().info("sending " + fPending.size() + " msgs to " + url + ". Oldest: "
284                                 + (nowMs - fPending.peek().timestamp) + " ms");
285
286                 try {
287
288                         final ByteArrayOutputStream baseStream = new ByteArrayOutputStream();
289                         OutputStream os = baseStream;
290                         if (fCompress) {
291                                 os = new GZIPOutputStream(baseStream);
292                         }
293                         for (TimestampedMessage m : fPending) {
294                                 os.write(("" + m.fPartition.length()).getBytes());
295                                 os.write('.');
296                                 os.write(("" + m.fMsg.length()).getBytes());
297                                 os.write('.');
298                                 os.write(m.fPartition.getBytes());
299                                 os.write(m.fMsg.getBytes());
300                                 os.write('\n');
301                         }
302                         os.close();
303
304                         final long startMs = Clock.now();
305
306                         // code from REST Client Starts
307
308                         
309                         
310
311                         Client client = ClientBuilder.newClient();
312                         String metricTopicname = AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop,"metrics.send.cambria.topic");
313                          if (null==metricTopicname) {
314                                  
315                          metricTopicname="msgrtr.apinode.metrics.dmaap";
316                          }
317                         WebTarget target = client
318                                         .target("http://localhost:" + CambriaConstants.kStdCambriaServicePort);
319                         target = target.path("/events/" + fTopic);
320                         getLog().info("url : " + target.getUri().toString());
321                         // API Key
322
323                         Entity<byte[]> data = Entity.entity(baseStream.toByteArray(), "application/cambria");
324
325                         Response response = target.request().post(data);
326                         
327                         getLog().info("Response received :: " + response.getStatus());
328                         getLog().info("Response received :: " + response.toString());
329
330                         // code from REST Client Ends
331
332                         
333                         fPending.clear();
334                         return true;
335                 } catch (IllegalArgumentException x) {
336                         getLog().warn(x.getMessage(), x);
337                 }
338                 
339                 catch (IOException x) {
340                         getLog().warn(x.getMessage(), x);
341                 }
342                 return false;
343         }
344
345         private final String fTopic;
346         private final int fMaxBatchSize;
347         private final long fMaxBatchAgeMs;
348         private final boolean fCompress;
349         private boolean fClosed;
350
351         private final LinkedBlockingQueue<TimestampedMessage> fPending;
352         private long fDontSendUntilMs;
353         private final ScheduledThreadPoolExecutor fExec;
354
355         private static final long sfWaitAfterError = 1000;
356
357         /**
358          * 
359          * @param hosts
360          * @param topic
361          * @param maxBatchSize
362          * @param maxBatchAgeMs
363          * @param compress
364          */
365         private DMaaPCambriaSimplerBatchPublisher(Collection<String> hosts, String topic, int maxBatchSize,
366                         long maxBatchAgeMs, boolean compress) throws MalformedURLException {
367
368                 super(hosts);
369
370                 if (topic == null || topic.length() < 1) {
371                         throw new IllegalArgumentException("A topic must be provided.");
372                 }
373
374                 fClosed = false;
375                 fTopic = topic;
376                 fMaxBatchSize = maxBatchSize;
377                 fMaxBatchAgeMs = maxBatchAgeMs;
378                 fCompress = compress;
379
380                 fPending = new LinkedBlockingQueue<TimestampedMessage>();
381                 fDontSendUntilMs = 0;
382
383                 fExec = new ScheduledThreadPoolExecutor(1);
384                 fExec.scheduleAtFixedRate(new Runnable() {
385                         @Override
386                         public void run() {
387                                 send(false);
388                         }
389                 }, 100, 50, TimeUnit.MILLISECONDS);
390         }
391
392         /**
393          * 
394          * 
395          * @author anowarul.islam
396          *
397          */
398         private static class TimestampedMessage extends message {
399                 /**
400                  * to store timestamp value
401                  */
402                 public final long timestamp;
403
404                 /**
405                  * constructor initialize with message
406                  * 
407                  * @param m
408                  * 
409                  */
410                 public TimestampedMessage(message m) {
411                         super(m);
412                         timestamp = Clock.now();
413                 }
414         }
415
416 }