Alex Kokorin
Alex Kokorin

Reputation: 469

How to make materialized view update immediately (or is there a manual refresh command) in Cassandra?

I can only use CQL (i.e., I can set consistency to ALL and then my key space setup is WITH replication = {'class': 'SimpleStrategy', 'replication_factor' : 1}).

Upvotes: 1

Views: 252

Answers (1)

Aaron
Aaron

Reputation: 57748

Unfortunately materialized views are inherently broken. The only way to rebuild/refresh a view is to recreate it:

ref: https://www.mail-archive.com/[email protected]/msg54073.html

Upvotes: 2

Related Questions