我对 cassandra 完全是新手,所以我的错误可能是显而易见的。
我正在尝试创建一个带有spring Boot (版本2.3.0.M2)的应用程序,该应用程序与安装在localhost中的cassandra(版本3.11.6)联系。
我得到了一个java.lang.IllegalStateException异常,其中包含以下消息:由于您提供了显式联系点,因此必须显式设置本地DC(请参阅配置中的basic.load-balancing-policy.local-datacenter,或使用SessionBuilder.withLocalDatacenter以编程方式设置)。节点(端点=本地主机:9042,主机ID = 16 a785 a4-eaf 3 - 4a 4d-a216 - 5244 d 75206 aa,哈希代码= 7 b 0 b 99 d 7)=数据中心1。此群集中的当前DC为:数据中心1
我的pom是以下之一:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.0.M2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.test</groupId>
<artifactId>cassandra</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>cassandra</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-cassandra</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
</pluginRepository>
</pluginRepositories>
</project>
在应用程序代码中,我有一个以下配置类:
public class CassandraConfig extends AbstractCassandraConfiguration {
public static final String KEYSPACE = "test_keyspace";
@Override
public SchemaAction getSchemaAction() {
return SchemaAction.CREATE_IF_NOT_EXISTS;
}
@Override
protected List<CreateKeyspaceSpecification> getKeyspaceCreations() {
CreateKeyspaceSpecification specification = CreateKeyspaceSpecification.createKeyspace(KEYSPACE);
return Arrays.asList(specification);
}
@Override
protected List<DropKeyspaceSpecification> getKeyspaceDrops() {
return Arrays.asList(DropKeyspaceSpecification.dropKeyspace(KEYSPACE));
}
@Override
protected String getKeyspaceName() {
return KEYSPACE;
}
@Override
public String[] getEntityBasePackages() {
return new String[]{"com.test.cassandra.entity"};
}
}
我的属性文件包含以下配置:
spring.data.cassandara.keyspace-name=test_keyspace
spring.data.cassandra.contact-points=localhost
spring.data.cassanda.port=9042
spring.data.cassandra.schema-act=create_if_not_exists
我也试过
spring.data.cassandra.contact-points=dc1
当我执行应用程序时,我从日志中看到我正在使用以下版本的DataStax Java驱动程序,用于Apache Cassandra(R)(com.datastax.oss:java-driver-core)版本4.4.0
在www.example.com中cassandra-rackdc.properties我将名称设置为
dc=dc1
我已经做了几个添加配置参数的测试,甚至像datastax文档中描述的那样将application.conf添加到类路径中,但是没有任何成功。
7条答案
按热度按时间3df52oht1#
只需添加
添加到 * application. properties * 文件,其中DC1表示本地数据中心名称(默认为DC1)。
brqmpdu12#
由于Sping Boot 2.3.0.X,您需要显式提供本地数据中心的名称(因为添加了Cassandra驱动程序4.X支持,需要显式设置本地数据中心)。您可以通过覆盖
AbstractSessionConfiguration
中的getLocalDataCenter
方法来完成此操作。AbstractCassandraConfiguration
扩展了此类,因此您只需在CassandraConfig
类中添加:jtw3ybtb3#
在Cassandra shell中运行
nodetool status
,它将为您提供数据中心名称。在我的例子中,它是“datacenter1”。这将在属性文件中如下所示:
bweufnob4#
实际上,ApacheCassandra需要一个不同的配置才能真正与新的 Spring 版本一起工作。我花了大约50个小时才在这篇文档中找到这个配置-https://docs.spring.io/spring-data/cassandra/docs/current/reference/html/#cassandra.cassandra-java-config
你需要创建一个新的配置文件,如图所示:
1.创建名为
config
的新包1.在名为-
CassandraConfig
的包中创建.java类文件1.将下面的代码复制并粘贴到其中。
@Configuration public class CassandraConfig { public @Bean CqlSession session() { return CqlSession.builder().withKeyspace("mykeyspacename").build(); } }
注意,将Keyspace名称更改为在属性文件中定义的Keyspace名称。如果尚未创建Keyspace,请在系统上启动Cassandra服务器,通过发出
cqlsh
登录到terminal
或cmd
上的cqlsh
,然后发出以下命令-到目前为止,当您启动Sping Boot 应用程序时,它应该运行没有任何错误。
sqxo8psd5#
您的错误日志中提到“此群集中的当前DC为:数据中心1”
只需在www.example.com中添加spring.data.cassandra.本地数据中心=数据中心1application.properties
goqiplq26#
我通过如下设置本地数据中心解决了这个问题:
应用程序属性文件:
cassandra.local.datacenter=datacenter1
注意:这并不是配置代码的全部,我只是想通过这个代码片段展示本地数据中心的配置。
7hiiyaii7#
由于Sping Boot 3.0 Cassandra属性的前缀是
spring.cassandra.*
,而不是spring.data.cassandra.*
(特别是从3.0.0-M5开始,如@ConfigurationProperties.prefix
值here和here所示),所以你得写
在
application.properties
文件中设置本地数据中心