You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: