Java Code Examples for org.apache.cassandra.config.DatabaseDescriptor#startRpc()

The following examples show how to use org.apache.cassandra.config.DatabaseDescriptor#startRpc() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CassandraDaemon.java    From stratio-cassandra with Apache License 2.0 5 votes vote down vote up
/**
 * Start the Cassandra Daemon, assuming that it has already been
 * initialized via {@link #init(String[])}
 *
 * Hook for JSVC
 */
public void start()
{
    String nativeFlag = System.getProperty("cassandra.start_native_transport");
    if ((nativeFlag != null && Boolean.parseBoolean(nativeFlag)) || (nativeFlag == null && DatabaseDescriptor.startNativeTransport()))
        nativeServer.start();
    else
        logger.info("Not starting native transport as requested. Use JMX (StorageService->startNativeTransport()) or nodetool (enablebinary) to start it");

    String rpcFlag = System.getProperty("cassandra.start_rpc");
    if ((rpcFlag != null && Boolean.parseBoolean(rpcFlag)) || (rpcFlag == null && DatabaseDescriptor.startRpc()))
        thriftServer.start();
    else
        logger.info("Not starting RPC server as requested. Use JMX (StorageService->startRPCServer()) or nodetool (enablethrift) to start it");
}