Package com.netflix.priam.dse.IDseConfiguration

Examples of com.netflix.priam.dse.IDseConfiguration.NodeType


        yaml.dump(map, new FileWriter(dseYaml));
    }

    private void writeCassandraSnitchProperties()
    {
        final NodeType nodeType = dseConfig.getNodeType();
        if(nodeType == NodeType.REAL_TIME_QUERY)
            return;

        Reader reader = null;
        try
View Full Code Here


    {
        List<String> cmd = super.getStartCommand();
        //looks like we always need to specify cassandra here
        cmd.add("cassandra");

        NodeType nodeType = dseConfig.getNodeType();
        if(nodeType == NodeType.ANALYTIC)
            cmd.add("-t");
        else if(nodeType == NodeType.SEARCH)
            cmd.add("-s");
View Full Code Here

TOP

Related Classes of com.netflix.priam.dse.IDseConfiguration.NodeType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.