Joshua McKenzie created CASSANDRA-8136: ------------------------------------------
Summary: Windows Service never finishes shutting down Key: CASSANDRA-8136 URL: https://issues.apache.org/jira/browse/CASSANDRA-8136 Project: Cassandra Issue Type: Bug Reporter: Joshua McKenzie Assignee: Joshua McKenzie Priority: Minor Fix For: 2.1.2 When using procrun and the -install combination on Windows and starting cassandra via services.msc, stopping the service never completes and gets stuck in "stopping" status forever. Probably related to: {code} public void stop() { // this doesn't entirely shut down Cassandra, just the RPC server. // jsvc takes care of taking the rest down logger.info("Cassandra shutting down..."); thriftServer.stop(); nativeServer.stop(); } {code} procrun calls the StopMethod as CassandraDaemon.stop so we may need to either a) augment what procrun's doing or b) add a more comprehensive stop to be called on Windows shutdown. -- This message was sent by Atlassian JIRA (v6.3.4#6332)