Alter SAI index

SAI indexes cannot be altered. If you need to modify an SAI index, you will need to drop the current index, create a new index, and rebuild the cycling.

Prerequisites

  • Keyspace created

  • Table created

  • SAI index created

    1. Drop indexes.

      DROP INDEX IF EXISTS cycling.lastname_idx;
      DROP INDEX IF EXISTS cycling.age_idx;
      DROP INDEX IF EXISTS cycling.country_idx;
      DROP INDEX IF EXISTS cycling.registration_idx;

      # LLP: next block is printing twice, can’t figure out why

    2. Create new indexes.

      CREATE CUSTOM INDEX lastname_idx ON cycling.cyclist_semi_pro (lastname) 
        USING 'StorageAttachedIndex' 
        WITH OPTIONS = {'case_sensitive': 'false', 'normalize': 'true', 'ascii': 'true'}; 
      CREATE CUSTOM INDEX age_idx ON cycling.cyclist_semi_pro (age) 
        USING 'StorageAttachedIndex'; 
      CREATE CUSTOM INDEX country_idx ON cycling.cyclist_semi_pro (country) 
        USING 'StorageAttachedIndex' 
        WITH OPTIONS = {'case_sensitive': 'false', 'normalize': 'true', 'ascii': 'true'}; 
      CREATE CUSTOM INDEX registration_idx ON cycling.cyclist_semi_pro (registration) 
        USING 'StorageAttachedIndex'; 

end::dse51[]

Was this helpful?

Give Feedback

How can we improve the documentation?

© 2024 DataStax | Privacy policy | Terms of use

Apache, Apache Cassandra, Cassandra, Apache Tomcat, Tomcat, Apache Lucene, Apache Solr, Apache Hadoop, Hadoop, Apache Pulsar, Pulsar, Apache Spark, Spark, Apache TinkerPop, TinkerPop, Apache Kafka and Kafka are either registered trademarks or trademarks of the Apache Software Foundation or its subsidiaries in Canada, the United States and/or other countries. Kubernetes is the registered trademark of the Linux Foundation.

General Inquiries: +1 (650) 389-6000, info@datastax.com