MaterializedViews / preventing models synchronization
Cassandra driver does not support MaterializedViews as now, but I found out that you can use them anyway, just describe your model and start querying on matching materialized view.
So it almost works with cassandra-engine too. Only problem is that synchronizing database will create actual table from your "MaterializedView" model and if the materialized view exists synchronization will crash, because if exists clause does not catch that there is materialized view with that name.
So I'm looking way to tell cassandra_sync that do not try to synchronize this model. I found out that Meta class options proxy=True or manage=False will not prevent creation of table.
Any ideas how to solve this issue?
I am interested in this too
I subscribe to the issue, and could not solve the problem.
Any updates on this?