rmatharu commented on a change in pull request #1021: Adding writing of 
container.metadata file, and moving exception writing logic to 
DiagnosticsManager
URL: https://github.com/apache/samza/pull/1021#discussion_r284378634
 
 

 ##########
 File path: samza-core/src/main/java/org/apache/samza/util/DiagnosticsUtil.java
 ##########
 @@ -0,0 +1,131 @@
+/*
+ * 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.apache.samza.util;
+
+import java.io.File;
+import java.time.Duration;
+import java.util.Optional;
+import org.apache.samza.SamzaException;
+import org.apache.samza.config.Config;
+import org.apache.samza.config.ConfigException;
+import org.apache.samza.config.JobConfig;
+import org.apache.samza.config.MetricsConfig;
+import org.apache.samza.config.SystemConfig;
+import org.apache.samza.config.TaskConfigJava;
+import org.apache.samza.diagnostics.DiagnosticsManager;
+import org.apache.samza.metrics.MetricsRegistryMap;
+import org.apache.samza.metrics.reporter.Metrics;
+import org.apache.samza.metrics.reporter.MetricsHeader;
+import org.apache.samza.metrics.reporter.MetricsSnapshot;
+import org.apache.samza.metrics.reporter.MetricsSnapshotReporter;
+import org.apache.samza.runtime.LocalContainerRunner;
+import org.apache.samza.serializers.MetricsSnapshotSerdeV2;
+import org.apache.samza.system.SystemFactory;
+import org.apache.samza.system.SystemProducer;
+import org.apache.samza.system.SystemStream;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import scala.Option;
+import scala.Tuple2;
+import scala.runtime.AbstractFunction0;
+
+
+public class DiagnosticsUtil {
+  private static final Logger log = 
LoggerFactory.getLogger(DiagnosticsUtil.class);
+
+  // Write a file in the samza.log.dir named {exec-env-container-id}.metadata 
that contains
+  // metadata about the container such as containerId, jobName, jobId, 
hostname, timestamp, version info, and others.
+  public static void writeMetadataFile(String jobName, String jobId, String 
containerId,
+      Optional<String> execEnvContainerId, Config config) {
+
+    Option<File> metadataFile = 
JobConfig.getMetadataFile(Option.apply(execEnvContainerId.orElse(null)));
+
+    if (metadataFile.isDefined()) {
+
+      StringBuilder metadata = new StringBuilder("Version: 1");
+      metadata.append(System.lineSeparator());
+      MetricsHeader metricsHeader =
+          new MetricsHeader(jobName, jobId, "samza-container-" + containerId, 
execEnvContainerId.orElse(""), LocalContainerRunner.class.getName(),
+              Util.getTaskClassVersion(config), Util.getSamzaVersion(), 
Util.getLocalHost().getHostName(),
+              System.currentTimeMillis(), System.currentTimeMillis());
+
+      MetricsSnapshot metricsSnapshot = new MetricsSnapshot(metricsHeader, new 
Metrics());
+      metadata.append("MetricsSnapshot: ");
+      metadata.append(new String(new 
MetricsSnapshotSerdeV2().toBytes(metricsSnapshot)));
+      FileUtil.writeToTextFile(metadataFile.get(), metadata.toString(), false);
+    } else {
+      log.info("Skipping writing metadata file.");
+    }
+  }
+
+
+  /**
+   * Create a pair of DiagnosticsManager and Reporter for the given jobName, 
jobId, containerId, and execEnvContainerId,
+   * if diagnostics is enabled.
+   * execEnvContainerId is the ID assigned to the container by the cluster 
manager (e.g., YARN).
+   */
+  public static Optional<Tuple2<DiagnosticsManager, MetricsSnapshotReporter>> 
buildDiagnosticsManager(String jobName, String jobId,
+      String containerId, Optional<String> execEnvContainerId, Config config) {
+
+    Optional<Tuple2<DiagnosticsManager, MetricsSnapshotReporter>> 
diagnosticsManagerReporterPair = Optional.empty();
+
+    if (new JobConfig(config).getDiagnosticsEnabled()) {
+
+      // Diagnostic stream, producer, and reporter related parameters
+      String diagnosticsReporterName = 
MetricsConfig.METRICS_SNAPSHOT_REPORTER_NAME_FOR_DIAGNOSTICS();
+      Integer publishInterval = Integer.parseInt(new 
MetricsConfig(config).getMetricsSnapshotReporterInterval(diagnosticsReporterName));
+      String taskClassVersion = Util.getTaskClassVersion(config);
+      String samzaVersion = Util.getSamzaVersion();
+      String hostName = Util.getLocalHost().getHostName();
+      Option<String> blacklist = new 
MetricsConfig(config).getMetricsSnapshotReporterBlacklist(diagnosticsReporterName);
+      Option<String> diagnosticsReporterStreamName = new 
MetricsConfig(config).getMetricsSnapshotReporterStream(diagnosticsReporterName);
+
+      if (diagnosticsReporterStreamName.isEmpty()) {
+        throw new ConfigException("Missing required config: " + 
String.format(MetricsConfig.METRICS_SNAPSHOT_REPORTER_STREAM(), 
diagnosticsReporterName));
+      }
+
+      SystemStream diagnosticsSystemStream = 
StreamUtil.getSystemStreamFromNames(diagnosticsReporterStreamName.get());
+
+      Optional<String> diagnosticsSystemFactoryName = new 
SystemConfig(config).getSystemFactory(diagnosticsSystemStream.getSystem());
+      if (!diagnosticsSystemFactoryName.isPresent()) {
+        throw new SamzaException("A stream uses system " + 
diagnosticsSystemStream.getSystem() + ", which is missing from the 
configuration.");
+      }
+
+      // Create a systemProducer for giving to diagnostic-reporter and 
diagnosticsManager
+      SystemFactory systemFactory = 
Util.getObj(diagnosticsSystemFactoryName.get(), SystemFactory.class);
+      SystemProducer systemProducer = 
systemFactory.getProducer(diagnosticsSystemStream.getSystem(), config, new 
MetricsRegistryMap());
+      DiagnosticsManager diagnosticsManager = new DiagnosticsManager(jobName, 
jobId, containerId, execEnvContainerId.orElse(""), taskClassVersion,
+          samzaVersion, hostName, diagnosticsSystemStream, systemProducer, 
Duration.ofMillis(new TaskConfigJava(config).getShutdownMs()));
+
+      MetricsSnapshotReporter diagnosticsReporter =
+          new MetricsSnapshotReporter(systemProducer, diagnosticsSystemStream, 
publishInterval, jobName, jobId,
+              "samza-container-" + containerId, taskClassVersion, 
samzaVersion, hostName, new MetricsSnapshotSerdeV2(),
+              blacklist, new AbstractFunction0<Object>() {
 
 Review comment:
   Thanks!

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to