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
Copy file name to clipboardExpand all lines: articles/cosmos-db/cassandra-faq.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ The throughput concept is explained in the [Request Units in Azure Cosmos DB](re
37
37
38
38
### What is the throughput of a table that's created through CQL?
39
39
40
-
Azure Cosmos DB uses Request Units per second (RU/s) as a currency for providing throughput. Tables created through CQL have 400 RU. You can change the RU from the Azure portal.
40
+
Azure Cosmos DB uses Request Units per second (RU/s) as a currency for providing throughput. Tables created through CQL have 400 RU by default. You can change the RU from the Azure portal.
41
41
42
42
CQL
43
43
@@ -79,11 +79,11 @@ Azure Cosmos DB is a system based on service-level agreement (SLA). It provides
79
79
80
80
You should adhere to the 10-GB limit on the number of entities or items per logical partition. To ensure that your application scales well, we recommend that you *not* create a hot partition by storing all information in one partition and querying it. This error can come only if your data is skewed: that is, you have lot of data for one partition key (more than 10 GB). You can find the distribution of data by using the storage portal. The way to fix this error is to re-create the table and choose a granular primary (partition key), which allows better distribution of data.
81
81
82
-
### Can I use the API as a key value store with millions or billions of partition keys?
82
+
### Can I use the Cassandra API as a key value store with millions or billions of partition keys?
83
83
84
84
Azure Cosmos DB can store unlimited data by scaling out the storage. This storage is independent of the throughput. Yes, you can always use the Cassandra API just to store and retrieve keys and values by specifying the right primary/partition key. These individual keys get their own logical partition and sit atop a physical partition without issues.
85
85
86
-
### Can I create more than one table with the API?
86
+
### Can I create more than one table with the Cassandra API?
87
87
88
88
Yes, it's possible to create more than one table with the Cassandra API. Each of those tables is treated as unit for throughput and storage.
89
89
@@ -107,7 +107,7 @@ Yes. Assuming uniformly distributed partitions, the storage capacity is automati
107
107
108
108
The Cassandra API for Azure Cosmos DB provides protocol-level compatibility for executing operations. It hides away the complexity of management, monitoring, and configuration. As a developer/user, you don't need to worry about availability, tombstones, key cache, row cache, bloom filter, and a multitude of other settings. The Cassandra API focuses on providing the read and write performance that you need without the overhead of configuration and management.
109
109
110
-
### Will the API support node addition, cluster status, and node status commands?
110
+
### Will the Cassandra API support node addition, cluster status, and node status commands?
111
111
112
112
The Cassandra API simplifies capacity planning and responding to the elasticity demands for throughput and storage. With Azure Cosmos DB, you provision the throughput that you need. Then you can scale it up and down any number of times through the day, without worrying about adding, deleting, or managing nodes. You don't need to use tools for node and cluster management.
113
113
@@ -131,7 +131,7 @@ Azure Cosmos DB is a platform service that helps you increase productivity and n
131
131
- Use [metrics](use-metrics.md)
132
132
- Use [diagnostic logs](logging.md)
133
133
134
-
### Which client SDKs can work with the API?
134
+
### Which client SDKs can work with the Cassandra API?
135
135
136
136
The Apache Cassandra SDK's client drivers that use CQLv3 were used for client programs. If you have other drivers that you use or if you're facing issues, send mail to [[email protected]](mailto:[email protected]).
137
137
@@ -143,23 +143,23 @@ Yes, you can use regular syntax to create composite partition keys.
143
143
144
144
No, sstableloader isn't supported.
145
145
146
-
### Can I pair an on-premises Apache Cassandra cluster with the API?
146
+
### Can I pair an on-premises Apache Cassandra cluster with the Cassandra API?
147
147
148
148
At present, Azure Cosmos DB has an optimized experience for a cloud environment without the overhead of operations. If you require pairing, send mail to [[email protected]](mailto:[email protected]) with a description of your scenario. We're working on an offering to help pair the on-premises or cloud Cassandra cluster with the Cassandra API for Azure Cosmos DB.
149
149
150
-
### Does the API provide full backups?
150
+
### Does the Cassandra API provide full backups?
151
151
152
152
Azure Cosmos DB provides two free full backups taken at four-hour intervals across all APIs. So you don't need to set up a backup schedule.
153
153
154
154
If you want to modify retention and frequency, send email to [[email protected]](mailto:[email protected]) or raise a support case. Information about backup capability is provided in the [Automatic online backup and restore with Azure Cosmos DB](../synapse-analytics/sql-data-warehouse/backup-and-restore.md) article.
155
155
156
-
### How does the API account handle failover if a region goes down?
156
+
### How does the Cassandra API account handle failover if a region goes down?
157
157
158
158
The Cassandra API borrows from the globally distributed platform of Azure Cosmos DB. To ensure that your application can tolerate datacenter downtime, enable at least one more region for the account in the Azure portal. For more information, see [High availability with Azure Cosmos DB](high-availability.md).
159
159
160
160
You can add as many regions as you want for the account and control where it can fail over to by providing a failover priority. To use the database, you need to provide an application there too. When you do so, your customers won't experience downtime.
161
161
162
-
### Does the API index all attributes of an entity by default?
162
+
### Does the Cassandra API index all attributes of an entity by default?
163
163
164
164
No. The Cassandra API supports [secondary indexes](cassandra-secondary-index.md), which behave in a similar way to Apache Cassandra. The API does not index every attribute by default.
165
165
@@ -174,7 +174,7 @@ Yes, this is supported. You can find details on how to enable this in the [Use t
174
174
You can read about migration options in the [Migrate your data to Cassandra API account in Azure Cosmos DB](cassandra-import-data.md) tutorial.
175
175
176
176
177
-
### Where can I give feedback on API features?
177
+
### Where can I give feedback on Cassandra API features?
178
178
179
179
Provide feedback via [user voice feedback](https://feedback.azure.com/forums/263030-azure-cosmos-db).
0 commit comments