0

I have been through this document but here it doesn't say if the data is made a copy of because of secondary index or its just having links to other data ?

mehnaazm
  • 287
  • 1
  • 4
  • 14

1 Answers1

0

Secondary indexes create a copy of the index table (just index data, not the whole table of data) on each node. Datastax has a very good write up on how secondary indexes work and when/when not to use them.

https://docs.datastax.com/en/cql/3.3/cql/cql_using/useSecondaryIndex.html

gsteiner
  • 776
  • 5
  • 20