[ 
https://issues.apache.org/jira/browse/STORM-1273?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15154327#comment-15154327
 ] 

ASF GitHub Bot commented on STORM-1273:
---------------------------------------

Github user revans2 commented on a diff in the pull request:

    https://github.com/apache/storm/pull/1081#discussion_r53472251
  
    --- Diff: storm-core/src/jvm/org/apache/storm/cluster/ClusterUtils.java ---
    @@ -0,0 +1,261 @@
    +/**
    + * 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.storm.cluster;
    +
    +import org.apache.storm.Config;
    +import org.apache.storm.generated.ClusterWorkerHeartbeat;
    +import org.apache.storm.generated.ExecutorInfo;
    +import org.apache.storm.generated.ExecutorStats;
    +import org.apache.storm.generated.ProfileAction;
    +import org.apache.storm.utils.Utils;
    +import org.apache.zookeeper.ZooDefs;
    +import org.apache.zookeeper.data.ACL;
    +import org.apache.zookeeper.data.Id;
    +import org.apache.zookeeper.server.auth.DigestAuthenticationProvider;
    +
    +import java.io.PrintWriter;
    +import java.io.StringWriter;
    +import java.io.UnsupportedEncodingException;
    +import java.net.URLEncoder;
    +import java.security.NoSuchAlgorithmException;
    +import java.util.ArrayList;
    +import java.util.HashMap;
    +import java.util.List;
    +import java.util.Map;
    +
    +public class ClusterUtils {
    +
    +    public static final String ZK_SEPERATOR = "/";
    +
    +    public static final String ASSIGNMENTS_ROOT = "assignments";
    +    public static final String CODE_ROOT = "code";
    +    public static final String STORMS_ROOT = "storms";
    +    public static final String SUPERVISORS_ROOT = "supervisors";
    +    public static final String WORKERBEATS_ROOT = "workerbeats";
    +    public static final String BACKPRESSURE_ROOT = "backpressure";
    +    public static final String ERRORS_ROOT = "errors";
    +    public static final String BLOBSTORE_ROOT = "blobstore";
    +    public static final String BLOBSTORE_MAX_KEY_SEQUENCE_NUMBER_ROOT = 
"blobstoremaxkeysequencenumber";
    +    public static final String NIMBUSES_ROOT = "nimbuses";
    +    public static final String CREDENTIALS_ROOT = "credentials";
    +    public static final String LOGCONFIG_ROOT = "logconfigs";
    +    public static final String PROFILERCONFIG_ROOT = "profilerconfigs";
    +
    +    public static final String ASSIGNMENTS_SUBTREE = ZK_SEPERATOR + 
ASSIGNMENTS_ROOT;
    +    public static final String STORMS_SUBTREE = ZK_SEPERATOR + STORMS_ROOT;
    +    public static final String SUPERVISORS_SUBTREE = ZK_SEPERATOR + 
SUPERVISORS_ROOT;
    +    public static final String WORKERBEATS_SUBTREE = ZK_SEPERATOR + 
WORKERBEATS_ROOT;
    +    public static final String BACKPRESSURE_SUBTREE = ZK_SEPERATOR + 
BACKPRESSURE_ROOT;
    +    public static final String ERRORS_SUBTREE = ZK_SEPERATOR + ERRORS_ROOT;
    +    public static final String BLOBSTORE_SUBTREE = ZK_SEPERATOR + 
BLOBSTORE_ROOT;
    +    public static final String BLOBSTORE_MAX_KEY_SEQUENCE_NUMBER_SUBTREE = 
ZK_SEPERATOR + BLOBSTORE_MAX_KEY_SEQUENCE_NUMBER_ROOT;
    +    public static final String NIMBUSES_SUBTREE = ZK_SEPERATOR + 
NIMBUSES_ROOT;
    +    public static final String CREDENTIALS_SUBTREE = ZK_SEPERATOR + 
CREDENTIALS_ROOT;
    +    public static final String LOGCONFIG_SUBTREE = ZK_SEPERATOR + 
LOGCONFIG_ROOT;
    +    public static final String PROFILERCONFIG_SUBTREE = ZK_SEPERATOR + 
PROFILERCONFIG_ROOT;
    +
    +    // A singleton instance allows us to mock delegated static methods in 
our
    +    // tests by subclassing.
    +    private static final ClusterUtils INSTANCE = new ClusterUtils();
    +    private static ClusterUtils _instance = INSTANCE;
    +
    +    /**
    +     * Provide an instance of this class for delegates to use. To mock out 
delegated methods, provide an instance of a subclass that overrides the
    +     * implementation of the delegated method.
    +     *
    +     * @param u a Cluster instance
    +     */
    +    public static void setInstance(ClusterUtils u) {
    +        _instance = u;
    +    }
    +
    +    /**
    +     * Resets the singleton instance to the default. This is helpful to 
reset the class to its original functionality when mocking is no longer desired.
    +     */
    +    public static void resetInstance() {
    +        _instance = INSTANCE;
    +    }
    +
    +    public static List<ACL> mkTopoOnlyAcls(Map topoConf) throws 
NoSuchAlgorithmException {
    +        List<ACL> aclList = null;
    +        String payload = (String) 
topoConf.get(Config.STORM_ZOOKEEPER_TOPOLOGY_AUTH_PAYLOAD);
    +        if (Utils.isZkAuthenticationConfiguredStormServer(topoConf)) {
    --- End diff --
    
    This needs to be isZkAuthenticationConfiguredTopology not 
isZkAuthenticationConfiguredStormServer.
    Original code is 
    `(when (Utils/isZkAuthenticationConfiguredTopology topo-conf)`


> port backtype.storm.cluster to java
> -----------------------------------
>
>                 Key: STORM-1273
>                 URL: https://issues.apache.org/jira/browse/STORM-1273
>             Project: Apache Storm
>          Issue Type: New Feature
>          Components: storm-core
>            Reporter: Robert Joseph Evans
>            Assignee: John Fang
>              Labels: java-migration, jstorm-merger
>
> current state of the cluster (Some of this moves to java as a part of 
> heartbeat server)
> https://github.com/apache/storm/tree/jstorm-import/jstorm-core/src/main/java/com/alibaba/jstorm/cluster
>  as an example



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to