blob: 631bb9711f3c3ca64cabbfec362193d335a64738 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htrace.impl;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.htrace.HTraceConfiguration;
import org.htrace.Span;
import org.htrace.SpanReceiver;
import org.mortbay.util.ajax.JSON;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
/**
* Writes the spans it receives to a local file. For now I am ignoring the data
* (annotations) portion of the spans. A production LocalFileSpanReceiver should
* use a real CSV format.
*/
public class LocalFileSpanReceiver implements SpanReceiver {
// default capacity for the executors blocking queue
public static final int DEFAULT_CAPACITY = 5000;
// default timeout duration when calling executor.awaitTermination()
public static final long DEFAULT_EXECUTOR_TERMINATION_TIMEOUT_DURATION = 60;
// default time unit for the above duration when calling
// executor.awaitTermination()
public static final Log LOG = LogFactory.getLog(LocalFileSpanReceiver.class);
private String file;
private FileWriter fwriter;
private BufferedWriter bwriter;
private Map<String, Object> values;
private ExecutorService executor;
private long executorTerminationTimeoutDuration;
public LocalFileSpanReceiver() {
}
@Override
public void configure(HTraceConfiguration conf) {
this.executorTerminationTimeoutDuration = DEFAULT_EXECUTOR_TERMINATION_TIMEOUT_DURATION;
int capacity = conf.getInt("local-file-span-receiver.capacity", DEFAULT_CAPACITY);
this.file = conf.get("local-file-span-receiver.path");
if (file == null || file.isEmpty()) {
throw new IllegalArgumentException("must configure " + file);
}
this.executor = new ThreadPoolExecutor(1, 1, 0, TimeUnit.SECONDS,
new LinkedBlockingQueue<Runnable>(capacity));
try {
this.fwriter = new FileWriter(this.file, true);
} catch (IOException ioe) {
throw new RuntimeException(ioe);
}
this.bwriter = new BufferedWriter(fwriter);
this.values = new HashMap<String, Object>();
}
private class WriteSpanRunnable implements Runnable {
public final Span span;
public WriteSpanRunnable(Span span) {
this.span = span;
}
@Override
public void run() {
try {
values.put("SpanID", span.getSpanId());
values.put("TraceID", span.getTraceId());
values.put("ParentID", span.getParentId());
values.put("Start", span.getStartTimeMillis());
values.put("Stop", span.getStopTimeMillis());
values.put("Description", span.getDescription());
values.put("Annotations", span.getKVAnnotations());
bwriter.write(JSON.toString(values));
bwriter.flush();
values.clear();
} catch (IOException e) {
LOG.error("Error when writing to file: " + file, e);
}
}
}
@Override
public void receiveSpan(Span span) {
executor.submit(new WriteSpanRunnable(span));
}
@Override
public void close() throws IOException {
executor.shutdown();
try {
if (!executor.awaitTermination(this.executorTerminationTimeoutDuration,
TimeUnit.SECONDS)) {
LOG.warn("Was not able to process all remaining spans to write upon closing in: "
+ this.executorTerminationTimeoutDuration + "s");
}
} catch (InterruptedException e1) {
LOG.warn("Thread interrupted when terminating executor.", e1);
}
try {
fwriter.close();
} catch (IOException e) {
LOG.error("Error closing filewriter for file: " + file, e);
}
try {
bwriter.close();
} catch (IOException e) {
LOG.error("Error closing bufferedwriter for file: " + file, e);
}
}
}