添加自定义 Cql3SolrSecondaryIndex 后无法使用 Stargate 进行查询

Unable to query with Stargate after adding custom Cql3SolrSecondaryIndex

我的 DEV 服务器中有 stargate 1.0.38 运行。我可以使用 stargate rest api 来获取 auth_token 和 运行 插入,select 查询。

昨天,我在我的 Cassandra DSE 6.8 中为 table 创建了一个索引 Cql3SolrSecondaryIndex。然后我在 stargate 日志中看到以下错误。在那之后,我删除了那个索引。但即使在删除索引之后,我仍然在星际之门日志中看到以下错误。我也尝试 stop/start 星门,但仍然看到同样的错误。

ERROR [MigrationStage:1] 2021-10-15 00:47:13,593 PullRequestScheduler.java:245 - Configuration exception merging remote schema
org.apache.cassandra.exceptions.ConfigurationException: Unable to find custom indexer class 'com.datastax.bdp.search.solr.Cql3SolrSecondaryIndex'
        at org.apache.cassandra.utils.FBUtilities.classForName(FBUtilities.java:493)
        at org.apache.cassandra.schema.IndexMetadata.getCustomIndexClass(IndexMetadata.java:190)
        at org.apache.cassandra.schema.IndexMetadata.validate(IndexMetadata.java:131)
        at org.apache.cassandra.schema.Indexes.lambda$validate(Indexes.java:168)
        at java.lang.Iterable.forEach(Iterable.java:75)
        at org.apache.cassandra.schema.Indexes.validate(Indexes.java:168)
        at org.apache.cassandra.schema.TableMetadata.validate(TableMetadata.java:512)
        at java.lang.Iterable.forEach(Iterable.java:75)
        at org.apache.cassandra.schema.KeyspaceMetadata.validate(KeyspaceMetadata.java:112)
        at org.apache.cassandra.schema.KeyspaceMetadata.<init>(KeyspaceMetadata.java:85)
        at org.apache.cassandra.schema.KeyspaceMetadata.create(KeyspaceMetadata.java:167)
        at org.apache.cassandra.schema.SchemaKeyspace.fetchKeyspace(SchemaKeyspace.java:1154)
        at org.apache.cassandra.schema.SchemaKeyspace.fetchKeyspaces(SchemaKeyspace.java:1769)
        at org.apache.cassandra.schema.SchemaManager.merge(SchemaManager.java:893)
        at org.apache.cassandra.schema.SchemaManager.mergeAndAnnounceVersion(SchemaManager.java:877)
        at org.apache.cassandra.schema.PullRequestScheduler.lambda$sendPullRequest(PullRequestScheduler.java:240)
        at java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:774)
        at java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:750)
        at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
        at org.apache.cassandra.concurrent.NamedThreadFactory.lambda$threadLocalDeallocator[=10=](NamedThreadFactory.java:88)
        at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
        at java.lang.Thread.run(Thread.java:748)
        at org.apache.cassandra.utils.concurrent.InlinedThreadLocalThread.run(InlinedThreadLocalThread.java:251)
Caused by: java.lang.ClassNotFoundException: com.datastax.bdp.search.solr.Cql3SolrSecondaryIndex not found by io.stargate.db.dse [1]
        at org.apache.felix.framework.BundleWiringImpl.findClassOrResourceByDelegation(BundleWiringImpl.java:1597)
        at org.apache.felix.framework.BundleWiringImpl.access0(BundleWiringImpl.java:79)
        at org.apache.felix.framework.BundleWiringImpl$BundleClassLoader.loadClass(BundleWiringImpl.java:1982)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
        at java.lang.Class.forName0(Native Method)
        at java.lang.Class.forName(Class.java:264)
        at org.apache.cassandra.utils.FBUtilities.classForName(FBUtilities.java:489)
        ... 24 common frames omitted

由于这个错误,我仍然能够得到 auth_token 但所有 select 查询都得到这个错误

{
    "description": "Resource not found: keyspace 'test' not found",
    "code": 404
}

请帮我解决这个问题。

Stargate 目前不支持搜索和图形等高级工作负载。我认为您可能必须删除并重新创建没有 Solr 索引的键空间才能再次工作,因为模式仍然存在于其他节点上。

此问题已记录在案 here. There has also been a request made to support Solr here

@David,我能够删除 DSE 搜索索引,执行我的 DSE 节点和 Stargate 节点的滚动重启,它启动得很好,没有任何错误。我确保我之前的所有数据都很好,并且能够使用 Stargate REST、GraphQL 和文档 API 验证 运行 基本 CRUD 操作,没有任何问题 post 那。