Details
-
Improvement
-
Status: Resolved
-
Low
-
Resolution: Won't Fix
-
None
-
None
Description
This is a proposal to complete the CustomExpression support first introduced as part of https://issues.apache.org/jira/browse/CASSANDRA-10217.
The current support for custom expressions is partial. There is no clean way to implement queries making use of the "exp('index', 'value)" syntax due to the fact CustomExpression is declared as final and there is no way to for developers to cleanly plug-in their own expressions.
The proposal is to make CustomExpression not final so that developers can extend and create their own subclass and provide their own isSatisfiedBy operation (which currently always returns true).
Introducing a new custom expression would be done as follows:
1. Developer would create a subclass of CustomExpression and override isSatisfiedBy method with their logic (public boolean isSatisfiedBy(CFMetaData metadata, DecoratedKey partitionKey, Row row))
2. This class would be packaged in a jar and copied to the cassandra lib directory along with a secondary index class which overrides Index.customExpressionValueType
2. Create the custom index with an option which identifies the CustomExpression subclass (custom_expression_class).
CREATE CUSTOM INDEX ON keyspace.my_table(my_indexed_column) USING 'org.custom.MyCustomIndex'
WITH OPTIONS =
;
I have prototyped the change and works as designed. In my case I do a type of "IN" query filter which will simplify my client logic significantly.
The default behavior of using the CustomExpression class would be maintained if the developer does not provide a custom class in the create index options.
Attachments
Attachments
Issue Links
- is related to
-
CASSANDRA-11295 Make custom filtering more extensible via custom classes
- Resolved