在Embedded-Cassandra (https://github.com/nosan/embedded-cassandra/wiki)中,默认版本似乎是3.11.4。我想用3.11.3。我试图设置版本,但得到了错误。
val factory = new LocalCassandraFactory
println(s"factory is ${factory}")
factory.setVersion(("3.11.1"))..。
错误
WARN c.g.n.e.c.l.a.RemoteArtifact - HTTP (404 Not Found) status for URL 'http://www.mirrorservice.org/sites/ftp.apache.org/cassandra/3.11.3/apache-cassandra-3.11.3-bin.tar.gz'
实际上,该版本在http://www.mirrorservice.org/sites/ftp.apache.org/cassandra/中并不存在
如何在EmbeddedCassandra中使用特定版本的Cassandra
发布于 2019-05-17 06:40:13
您是否收到了异常或警告消息?RemoteArtifact试图从多个URL下载一个归档文件。
第二个链接对我来说很好。
https://archive.apache.org/dist/cassandra/3.11.3/apache-cassandra-3.11.3-bin.tar.gz
https://stackoverflow.com/questions/56180078
复制相似问题