Skip to content

Commit f85968a

Browse files
committed
edit pass: cassandra-faq
1 parent 67f352d commit f85968a

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/cosmos-db/cassandra-faq.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The throughput concept is explained in the [Request Units in Azure Cosmos DB](re
3737

3838
### What is the throughput of a table that's created through CQL?
3939

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.
4141

4242
CQL
4343

@@ -79,11 +79,11 @@ Azure Cosmos DB is a system based on service-level agreement (SLA). It provides
7979

8080
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.
8181

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?
8383

8484
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.
8585

86-
### Can I create more than one table with the API?
86+
### Can I create more than one table with the Cassandra API?
8787

8888
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.
8989

@@ -107,7 +107,7 @@ Yes. Assuming uniformly distributed partitions, the storage capacity is automati
107107

108108
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.
109109

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?
111111

112112
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.
113113

@@ -131,7 +131,7 @@ Azure Cosmos DB is a platform service that helps you increase productivity and n
131131
- Use [metrics](use-metrics.md)
132132
- Use [diagnostic logs](logging.md)
133133

134-
### Which client SDKs can work with the API?
134+
### Which client SDKs can work with the Cassandra API?
135135

136136
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]).
137137

@@ -143,23 +143,23 @@ Yes, you can use regular syntax to create composite partition keys.
143143

144144
No, sstableloader isn't supported.
145145

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?
147147

148148
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.
149149

150-
### Does the API provide full backups?
150+
### Does the Cassandra API provide full backups?
151151

152152
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.
153153

154154
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.
155155

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?
157157

158158
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).
159159

160160
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.
161161

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?
163163

164164
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.
165165

@@ -174,7 +174,7 @@ Yes, this is supported. You can find details on how to enable this in the [Use t
174174
You can read about migration options in the [Migrate your data to Cassandra API account in Azure Cosmos DB](cassandra-import-data.md) tutorial.
175175

176176

177-
### Where can I give feedback on API features?
177+
### Where can I give feedback on Cassandra API features?
178178

179179
Provide feedback via [user voice feedback](https://feedback.azure.com/forums/263030-azure-cosmos-db).
180180

0 commit comments

Comments
 (0)