我正在尝试调试使用Stratio Lucene索引对Cassandra进行查询的性能问题。索引定义如下所示:
CREATE CUSTOM INDEX table_idx ON keyspace.table ()
USING 'com.stratio.cassandra.lucene.Index'
WITH OPTIONS = {'refresh_seconds': '30',
'schema': '{"analyzers":{
"functionality1":{"type":"classpath","class":"my.custom.analyzer1"},
"functionality2":{"type":"classpath","class":"my.custom.analyzer2"}},
"fields":{"column_y":{"type":"text","analyzer":"standard"},
"column_x":{"type":"string","case_sensitive":false}}}'};
在以上定义中,声明了自定义分析器(functionality1,function2),但未将其用于索引。这可能是性能开销吗?
在索引未定义的分析器未对字段进行索引时,它们在实际索引编制时是否会执行任何操作?
请分享任何见解或参考。