Cosmos DB常见问题解答在Cassandra API部分的内容为Azure Cosmos DB provides automatic indexing of all attributes without any schema definition
。 https://docs.microsoft.com/en-us/azure/cosmos-db/faq#does-this-mean-i-dont-have-to-create-more-than-one-index-to-satisfy-the-queries-1
但是当我尝试向我的CQL查询中添加WHERE column1 = 'x'
过滤器时,我从Datastax cassandra驱动程序中得到了异常,表示不支持数据过滤。我尝试通过提供ALLOW FILTERING
来绕过客户端驱动程序,但是这次从cosmos服务器收到错误消息,说该功能未实现。
那么,如果为Cosmos / Cassandra API实现了自动索引编制,该如何使用?