是否可以为物化视图创建 solr 核心

Is it possible to create solr core for materialized views

我正在探索参考 this 的物化视图。我创建了一个 table 和一个物化视图,如下所示。

CREATE TABLE scores (   user TEXT,   game TEXT,   year INT,   month INT,   day INT,   score INT,   PRIMARY KEY (user, game, year, month, day) )



CREATE MATERIALIZED VIEW alltimehigh AS
       SELECT user FROM scores
       WHERE game IS NOT NULL AND score IS NOT NULL AND user IS NOT NULL AND year IS NOT NULL AND month IS NOT NULL AND day IS NOT NULL
       PRIMARY KEY (game, score, user, year, month, day)
       WITH CLUSTERING ORDER BY (score desc)

接下来我需要对此执行 solr 搜索。我成功地为 scores table 创建了 solr core,它工作正常。我想知道是否也可以为物化视图创建 solr 核心。实体化视图的创建核心命令失败,但是否可以通过任何其他方式实现?

$ dsetool create_core test.alltimehigh generateResources=true
--this one failed

很遗憾,目前不支持此功能。

The prerequisite for creating a core with automatic resource generation is an existing CQL table

http://docs.datastax.com/en/latest-dse/datastax_enterprise/srch/creatingCoreAutoGenIndexResources.html