I am trying to build a highly available very high volume shopping cart application. The application will have a volume so high that I am considering using cassandra instead of mysql for the database.
Now, in a shopping cart system, most database actions have to be 100% consistent, while others do not have to be.
Example of 100% consistent action: Saving the payment confirmation. Saving the purchased items list.
Example of things which do not require 100% consistent action: Saving the address of the customer (If at the time of payment, no address is saved in the database, assume that it was lost and ask the customer again). Other similar things.
Now, if I am running a server cluster in the same region (Amazon EC2), are there any major roadblocks to performing all transactions as a maximal consistent transaction. Would that provide identical reliability than mySQl Relational database. Remember, we are dealing with financial transactions here.
Is my data generally "safe" in cassandra. By that I mean complete unexpected power failure, random disc failure, etc, etc.