使用IDEA debug Cassandra

  1. 下载源代码
  2. 进入cassandra源码目录,运行ant generate-eclipse-files(前提是安装了ant,如果是mac用户brew install ant很快就好了)
  3. 点击+添加新的configuration,选择Application


    Configuration

其中Main class为org.apache.cassandra.service.CassandraDaemon
VM option为:

-Dcassandra-foreground=yes -Dcassandra.config=file://$PROJECT_DIR$/conf/cassandra.yaml -Dcassandra.storagedir=$PROJECT_DIR$/data -Dlogback.configurationFile=file://$PROJECT_DIR$/conf/logback.xml -Dcassandra.logdir=$PROJECT_DIR$/data/logs -ea -Xmx1G
  1. 点击debug按钮
  2. 在cassandra/bin目录下运行cqlsh即可

你可能感兴趣的:(使用IDEA debug Cassandra)