[
https://issues.apache.org/jira/browse/FLINK-5852?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15888010#comment-15888010
]
ASF GitHub Bot commented on FLINK-5852:
---------------------------------------
Github user uce commented on a diff in the pull request:
https://github.com/apache/flink/pull/3365#discussion_r103433823
--- Diff:
flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/utils/BuilderUtils.java
---
@@ -0,0 +1,436 @@
+/*
+ * 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.flink.runtime.webmonitor.utils;
+
+import org.apache.flink.api.common.ArchivedExecutionConfig;
+import org.apache.flink.api.common.ExecutionMode;
+import org.apache.flink.api.common.JobID;
+import org.apache.flink.metrics.Counter;
+import org.apache.flink.metrics.MeterView;
+import org.apache.flink.runtime.accumulators.StringifiedAccumulatorResult;
+import org.apache.flink.runtime.clusterframework.types.ResourceID;
+import org.apache.flink.runtime.execution.ExecutionState;
+import org.apache.flink.runtime.executiongraph.ArchivedExecution;
+import org.apache.flink.runtime.executiongraph.ArchivedExecutionGraph;
+import org.apache.flink.runtime.executiongraph.ArchivedExecutionJobVertex;
+import org.apache.flink.runtime.executiongraph.ArchivedExecutionVertex;
+import org.apache.flink.runtime.executiongraph.ExecutionAttemptID;
+import org.apache.flink.runtime.executiongraph.IOMetrics;
+import org.apache.flink.runtime.jobgraph.JobStatus;
+import org.apache.flink.runtime.jobgraph.JobVertexID;
+import org.apache.flink.runtime.taskmanager.TaskManagerLocation;
+import org.apache.flink.runtime.util.EvictingBoundedList;
+import org.apache.flink.util.Preconditions;
+import org.apache.flink.util.SerializedValue;
+
+import java.net.InetAddress;
+import java.net.UnknownHostException;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+import java.util.Map;
+import java.util.Random;
+
+public class BuilderUtils {
+ private static final Random RANDOM = new Random();
+
+ private BuilderUtils() {
+ }
+
+ public static ArchivedExecutionConfigBuilder
createArchivedExecutionConfig() {
+ return new ArchivedExecutionConfigBuilder();
+ }
+
+ public static class ArchivedExecutionConfigBuilder {
+ private String executionMode;
+ private String restartStrategyDescription;
+ private int parallelism;
+ private boolean objectReuseEnabled;
+ private Map<String, String> globalJobParameters;
+
+ private ArchivedExecutionConfigBuilder() {
+ }
+
+ public ArchivedExecutionConfigBuilder setExecutionMode(String
executionMode) {
+ this.executionMode = executionMode;
+ return this;
+ }
+
+ public ArchivedExecutionConfigBuilder
setRestartStrategyDescription(String restartStrategyDescription) {
+ this.restartStrategyDescription =
restartStrategyDescription;
+ return this;
+ }
+
+ public ArchivedExecutionConfigBuilder setParallelism(int
parallelism) {
+ this.parallelism = parallelism;
+ return this;
+ }
+
+ public ArchivedExecutionConfigBuilder
setObjectReuseEnabled(boolean objectReuseEnabled) {
+ this.objectReuseEnabled = objectReuseEnabled;
+ return this;
+ }
+
+ public ArchivedExecutionConfigBuilder
setGlobalJobParameters(Map<String, String> globalJobParameters) {
+ this.globalJobParameters = globalJobParameters;
+ return this;
+ }
+
+ public ArchivedExecutionConfig finish() {
--- End diff --
I think the canonical way to create the instance with a builder is to call
this `build()` (applies to the other builders as well).
> Move JSON generation code into static methods
> ---------------------------------------------
>
> Key: FLINK-5852
> URL: https://issues.apache.org/jira/browse/FLINK-5852
> Project: Flink
> Issue Type: Improvement
> Components: Webfrontend
> Reporter: Chesnay Schepler
> Assignee: Chesnay Schepler
> Fix For: 1.3.0
>
>
> In order to implement the HistoryServer we need a way to generate the JSON
> responses independent of the REST API. As such i suggest to move the main
> parts of the generation code for job-specific handlers into static methods.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)