You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@giraph.apache.org by GitBox <gi...@apache.org> on 2019/10/28 21:26:40 UTC

[GitHub] [giraph] dlogothetis commented on a change in pull request #110: Counter Mechanism

dlogothetis commented on a change in pull request #110: Counter Mechanism
URL: https://github.com/apache/giraph/pull/110#discussion_r339800875
 
 

 ##########
 File path: giraph-core/src/main/java/org/apache/giraph/counters/CustomCounters.java
 ##########
 @@ -0,0 +1,112 @@
+/*
+ * 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.giraph.counters;
+
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Set;
+
+/**
+ * Custom counters created by the client or app
+ * Stores the names of the counters, and the final aggregated values
+ */
+public class CustomCounters {
+
+
+
+  /** Unique counter groups and names populated during execution of the job */
+  private static Set<CustomCounter> COUNTER_NAMES = new HashSet<>();
+
+  /** Aggregated counter values updated by master */
+  private final List<CustomCounter> counterList;
+
+  /**
+   * Create custom counters
+   */
+  public CustomCounters() {
+    counterList = new ArrayList<>();
+  }
+
+  /**
+   * Add a counter group and name to the custom counters
+   * If it already exists, then it will not be added
+   *
+   * @param groupName Counter group
+   * @param counterName Counter name
+   * @param aggregation Type of aggregation for the counter
+   */
+  public static void addCustomCounter(String groupName, String counterName,
+                                      CustomCounter.AGGREGATION aggregation) {
+    CustomCounter counter = new CustomCounter(
+            groupName, counterName, aggregation);
+    COUNTER_NAMES.add(counter);
+  }
+
+  /**
+   * Get the unique counter group and names
+   *
+   * @return Map of unique counter names
+   */
+  public static Set<CustomCounter> getCustomCounters() {
+    return COUNTER_NAMES;
+  }
+
+  /**
+   * Merge the incoming counter values with the existing counters
+   *
 
 Review comment:
   Let's add a comment about when this is expected to get called.

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services