All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.kristofa.brave.zipkin.SpanProcessingThread Maven / Gradle / Ivy

package com.github.kristofa.brave.zipkin;

import java.io.ByteArrayOutputStream;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.Callable;
import java.util.concurrent.TimeUnit;

import org.apache.commons.codec.binary.Base64;
import org.apache.commons.lang.Validate;
import org.apache.thrift.TException;
import org.apache.thrift.protocol.TBinaryProtocol;
import org.apache.thrift.protocol.TProtocol;
import org.apache.thrift.protocol.TProtocolFactory;
import org.apache.thrift.transport.TIOStreamTransport;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.twitter.zipkin.gen.LogEntry;
import com.twitter.zipkin.gen.Span;
import com.twitter.zipkin.gen.ZipkinCollector.Client;

/**
 * Thread implementation that is responsible for submitting spans to the Zipkin span collector or Scribe. The thread takes
 * spans from a queue. The spans are produced by {@link ZipkinSpanCollector} put on a queue and consumed and processed by
 * this thread.
 * 

* We will try to buffer spans and send them in batches to minimize communication overhead. However if the batch size is not * reached within 2 polls (max 10 seconds) the available spans will be sent over anyway. * * @see ZipkinSpanCollector * @author kristof */ class SpanProcessingThread implements Callable { private static final Logger LOGGER = LoggerFactory.getLogger(SpanProcessingThread.class); private static final int MAX_SUBSEQUENT_EMPTY_BATCHES = 2; private final BlockingQueue queue; private final ZipkinCollectorClientProvider clientProvider; private final Base64 base64 = new Base64(); private final TProtocolFactory protocolFactory; private boolean stop = false; private int processedSpans = 0; private final List logEntries; private final int maxBatchSize; /** * Creates a new instance. * * @param queue BlockingQueue that will provide spans. * @param clientProvider {@link ThriftClientProvider} that provides client used to submit spans to zipkin span collector. * @param maxBatchSize Max batch size. Indicates how many spans we submit to collector in 1 go. */ public SpanProcessingThread(final BlockingQueue queue, final ZipkinCollectorClientProvider clientProvider, final int maxBatchSize) { Validate.notNull(queue); Validate.notNull(clientProvider); Validate.isTrue(maxBatchSize > 0); this.queue = queue; this.clientProvider = clientProvider; protocolFactory = new TBinaryProtocol.Factory(); this.maxBatchSize = maxBatchSize; logEntries = new ArrayList(maxBatchSize); } /** * Requests the thread to stop. */ public void stop() { stop = true; } /** * {@inheritDoc} */ @Override public Integer call() { int subsequentEmptyBatches = 0; do { try { final Span span = queue.poll(5, TimeUnit.SECONDS); if (span == null) { subsequentEmptyBatches++; } else { logEntries.add(create(span)); } if (subsequentEmptyBatches >= MAX_SUBSEQUENT_EMPTY_BATCHES && !logEntries.isEmpty() || logEntries.size() >= maxBatchSize || !logEntries.isEmpty() && stop) { log(logEntries); logEntries.clear(); subsequentEmptyBatches = 0; } } catch (final Exception e) { LOGGER.error("Unexpected exception.", e); } } while (stop == false); return processedSpans; } private void log(final List logEntries) { final long start = System.currentTimeMillis(); final boolean succes = log(clientProvider.getClient(), logEntries); processedSpans += logEntries.size(); if (succes && LOGGER.isDebugEnabled()) { final long end = System.currentTimeMillis(); LOGGER.debug("Submitting " + logEntries.size() + " spans to service took " + (end - start) + "ms."); } } private boolean log(final Client client, final List logEntries) { try { clientProvider.getClient().Log(logEntries); return true; } catch (final TException e) { LOGGER.error("Exception when trying to log Span.", e); final Client newClient = clientProvider.exception(e); if (newClient != null) { LOGGER.info("Got new client with new connection. Logging with new client."); try { newClient.Log(logEntries); return true; } catch (final TException e2) { LOGGER.error("Logging spans with new client also failed. " + logEntries.size() + " spans are lost!", e2); } } else { LOGGER.error("Logging spans failed. " + logEntries.size() + " spans are lost!"); } } return false; } private LogEntry create(final Span span) throws TException { final String spanAsString = base64.encodeToString(spanToBytes(span)); return new LogEntry("zipkin", spanAsString); } private byte[] spanToBytes(final Span thriftSpan) throws TException { final ByteArrayOutputStream buf = new ByteArrayOutputStream(); final TProtocol proto = protocolFactory.getProtocol(new TIOStreamTransport(buf)); thriftSpan.write(proto); return buf.toByteArray(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy