[NO ISSUE][RT] Use ThreadLocal date format to format dates
- user model changes: no
- storage format changes: no
- interface changes: no
Details:
- Instead of creating a new date format object for formatting
trace logs, use a thread local instance.
Change-Id: I361542815af7c93291fd6251d9b335c2eb01af56
Reviewed-on: https://asterix-gerrit.ics.uci.edu/2563
Sonar-Qube: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
Tested-by: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
Contrib: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
Integration-Tests: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
Reviewed-by: Michael Blow <mblow@apache.org>
diff --git a/asterixdb/asterix-runtime/src/main/java/org/apache/asterix/runtime/operators/LSMPrimaryUpsertOperatorNodePushable.java b/asterixdb/asterix-runtime/src/main/java/org/apache/asterix/runtime/operators/LSMPrimaryUpsertOperatorNodePushable.java
index c767157..dba6760 100644
--- a/asterixdb/asterix-runtime/src/main/java/org/apache/asterix/runtime/operators/LSMPrimaryUpsertOperatorNodePushable.java
+++ b/asterixdb/asterix-runtime/src/main/java/org/apache/asterix/runtime/operators/LSMPrimaryUpsertOperatorNodePushable.java
@@ -21,6 +21,7 @@
import java.io.DataOutput;
import java.io.IOException;
import java.nio.ByteBuffer;
+import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
@@ -73,9 +74,14 @@
import org.apache.hyracks.util.trace.ITracer;
import org.apache.hyracks.util.trace.ITracer.Scope;
import org.apache.hyracks.util.trace.TraceUtils;
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
public class LSMPrimaryUpsertOperatorNodePushable extends LSMIndexInsertUpdateDeleteOperatorNodePushable {
+ private static final Logger LOGGER = LogManager.getLogger();
+ private static final ThreadLocal<DateFormat> DATE_FORMAT =
+ ThreadLocal.withInitial(() -> new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS"));
private final PermutingFrameTupleReference key;
private MultiComparator keySearchCmp;
private ArrayTupleBuilder missingTupleBuilder;
@@ -379,22 +385,31 @@
@Override
public void close() throws HyracksDataException {
+ traceLastRecordIn();
+ Throwable failure = CleanupUtils.close(frameOpCallback, null);
+ failure = CleanupUtils.destroy(failure, cursor);
+ failure = CleanupUtils.close(writer, failure);
+ failure = CleanupUtils.close(indexHelper, failure);
+ if (failure != null) {
+ throw HyracksDataException.create(failure);
+ }
+ }
+
+ @SuppressWarnings({ "squid:S1181", "squid:S1166" })
+ private void traceLastRecordIn() {
try {
- Throwable failure = CleanupUtils.close(frameOpCallback, null);
- failure = CleanupUtils.destroy(failure, cursor);
- failure = CleanupUtils.close(writer, failure);
- failure = CleanupUtils.close(indexHelper, failure);
- if (failure != null) {
- throw HyracksDataException.create(failure);
- }
- } finally {
- if (tracer.isEnabled(traceCategory) && lastRecordInTimeStamp > 0) {
+ if (tracer.isEnabled(traceCategory) && lastRecordInTimeStamp > 0 && indexHelper != null
+ && indexHelper.getIndexInstance() != null) {
tracer.instant("UpsertClose", traceCategory, Scope.t,
- "{\"last-record-in\":\""
- + new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS")
- .format(new Date(lastRecordInTimeStamp))
+ "{\"last-record-in\":\"" + DATE_FORMAT.get().format(new Date(lastRecordInTimeStamp))
+ "\", \"index\":" + indexHelper.getIndexInstance().toString() + "}");
}
+ } catch (Throwable traceFailure) {
+ try {
+ LOGGER.warn("Tracing last record in failed", traceFailure);
+ } catch (Throwable ignore) {
+ // Ignore logging failure
+ }
}
}