Tagged Questions
acronym for atomicity, consistency, isolation, durability
14
votes
7answers
1k views
Are disk sector writes atomic?
Clarified Question:
When the OS sends the command to write a sector to disk is it atomic? i.e. Write of new data succeeds fully or old data is left intact should the power fail immediately following ...
13
votes
3answers
575 views
What does MongoDB not being ACID compliant really mean?
I am not a database expert and have no formal computer science background, so bear with me. I want to know the kinds of real world negative things that can happen if you use MongoDB, which is not ...
13
votes
11answers
3k views
Is there any NoSQL that is ACID compliant?
Is there any NoSQL that is ACID compliant?
(Or is that even possible with NoSQL given it's just a bunch of loosely coupled key-value pairs.)
6
votes
4answers
213 views
Does MySQL/InnoDB implement true serializable isolation?
It is not entirely clear from MySQL documentation whether the InnoDB engine implements true serializable isolation1 or snapshot isolation, which is often confusingly called "serializable" too. Which ...
5
votes
6answers
2k views
IE9 Acid 3 test?
Does anybody know if Microsoft is planning on having IE9 pass with 100/100 on acid 3?
The current version of IE9 gets a 68/100 on the test (can be viewed here, main site here).
What did IE8 pass ...
5
votes
7answers
571 views
Patterns for implementing transactions outside of a database
I have to send an email, write to a file, and call a web service. To maintain consistency, all steps must happen. If any step throws an exception or errors out, all steps must be rolled back.
Before ...
5
votes
2answers
1k views
How do distributed transactions work (eg. MSDTC)?
I understand, in a fuzzy sort of way, how regular ACID transactions work. You perform some work on a database in such a way that the work is not confirmed until some kind of commit flag is set. The ...
4
votes
4answers
216 views
What Applications Don't Need ACID?
Sorry for the ignorant question, but what kind of applications wouldn't require an ACID compliant database server? I have a SQL Server background where ACID has always "been there", and now ...
3
votes
1answer
100 views
What (if any) ACID guarantees can Core Data provide on iOS?
I'm working on an app where I need to persist data in a reliable manner, i.e. updates need to be persisted all-or-nothing even in the face of application crashes and quits etc.
However I can't find ...
3
votes
1answer
193 views
Atomic Transactions across web services residing on same server using same database
Our architecture comprises of Web Services developed on JAX-WS specification using
Metro. These services are deployed on a single Glass Fish App server as separate war
files.All web services ...
3
votes
4answers
609 views
Transaction Isolation on select, insert, delete
What could possibly go wrong with the following transaction if executed by concurrent users in the default isolation level of READ COMMITTED?
BEGIN TRANSACTION
SELECT * FROM t WHERE pid = 10 and r ...
2
votes
0answers
62 views
Schema-free/flexible ACID database for a SaaS application?
I am looking at rewriting a VB based on-premise (locally installed) application (invoicing+inventory) as a web based Clojure application for small enterprise customers. I am intending this to be ...
2
votes
1answer
70 views
In Acid-state, exactly what does $(deriveSafeCopy 0 'base ''T) mean
For Acid to store values of type T, one must write
$(deriveSafeCopy 0 'base ''T)
after the definition of T. But what exactly does this command do?
2
votes
2answers
165 views
Using NoSQL and Relational data stores for high volume web site
We are building a large scale e-comm web site to service over 100,000 users, but we expect the number of users to grow rapidly over the first year. In general, the site functions very much like ebay ...
2
votes
1answer
196 views
Optimizing slow query in MySql InnoDB Database
I have a MySql database with a query that is running really slow. I'm trying the best I can to make it perform better but can't see what I'm doing wrong here. Maybe you can?
CREATE TABLE `tablea` (
...
2
votes
3answers
100 views
Any write functions In python that have the same safety as ACID does in databases
The title could have probably been put better, but anyway. I was wondering if there are any functions for writing to files that are like what the ACID properties are for databases. Reason is, I would ...
2
votes
1answer
52 views
Simple bulk data persistance framework
Is there an ACID framework for bulk data persistance, which would also allow some basic search capabilities? I am not looking for a full blown DBMS, but rather something fast, light and simple. Even ...
2
votes
1answer
80 views
Which should take initiative task on rollback, App or DB?
MySql InnoDB is set autocommit off and used default isolation level REPEATABLE READ. There are two scenarioes that two distinct transactions T1 and T2 run in the time sequence below,
1)
time T1 ...
2
votes
3answers
404 views
Transactional NTFS (TxF) on Process.Start()
Consider the following code:
try
{
using(TransactionScope)
{
Process.Start("SQLInstaller.EXE");
throw new Exception();
Commit();
}
}
catch(Exception ex)
{
//Do ...
2
votes
2answers
320 views
Multiple WCF service calls in ACID transaction
Here's my scenario: I need to make three or four calls to different WCF services before completing the transaction - what are my options, if any?
ServiceA.SaveWork(work1);
ServiceB.SaveWork(work2);
...
2
votes
3answers
357 views
Implementing ACID
I am starting research on a project that will need to provide ACID semantics on its database.
Due to the nature of the data it is not suitable for storage in common off-the-shelf systems (relational ...
1
vote
1answer
18 views
Will any errors be thrown out while executing START TRANSACTION in MyISAM table?
I tried the start transaction on a MyISAM table, and it replied "Query OK, 0 rows affected (0.00 sec)".
But I'm not sure if the same thing will happen on all versions of MySQL.
Is there any spec ...
1
vote
3answers
87 views
What are some real world implications of non-ACID database compliance?
Specifically is there some risk that data can be lost? I'm looking at running an intensive transaction processing system where it is critical that nothing be lost. Are there any examples of NoSQL ...
1
vote
2answers
51 views
Deadlocks and Timeouts break ACID transactions
I've got transactional application that works like so:
try {
$db->begin();
increaseNumber();
$db->commit();
} catch(Exception $e) {
$db->rollback();
}
And then inside ...
1
vote
2answers
107 views
PHP and MySQL ACID Program design
a while ago I completely recoded my application so that MySQL would perform in an ACID way.
At the very top level of all functions I do something like this:
try{
$db->begin();
...
1
vote
1answer
51 views
Perfect data integrity possible with database transactions that correspond to real world events?
I was talking to a guy who was using an ATM when it crashed (it was running Windows XP, apparently) and took his money.
A transactional database with write-ahead logging can ensure that your database ...
1
vote
0answers
74 views
Mysql XA Isolation Level
Does anyone know why Mysql requires serializable isolation level to achieve ACID properties with XA transactions or what would be lost if you used repeatable read and XA?
However, for a ...
1
vote
1answer
104 views
Database durability vs performance
I have studied a lot how durability is achieved in databases and if I understand well it works like this (simplified):
Clent's point of view:
start transaction.
insert into table values...
commit ...
1
vote
6answers
603 views
Example of a task that a NoSQL database can't handle (if any)
I would like to test the NoSQL world. This is just curiosity, not an absolute need (yet).
I have read a few things about the differences between SQL and NoSQL databases. I'm convinced about the ...
1
vote
2answers
189 views
how to synchronize mysql database requests?
I have a lot of entries in a table that are fetched for performing jobs. this is scaled to several servers.
when a server fetches a bunch of rows to add to its own job queue they should be "locked" ...
1
vote
1answer
334 views
Memory Mapped files and atomic writes of single blocks
If I read and write a single file using normal IO APIs, writes are guaranteed to be atomic on a per-block basis. That is, if my write only modifies a single block, the operating system guarantees that ...
1
vote
3answers
368 views
ACID and database transactions?
What is the relationship between ACID and database transaction?
Does ACID give database transaction or is it the same thing?
Could someone enlighten this topic.
1
vote
2answers
216 views
Is the data system for ATM-machines using eventual consistency?
I wounder how the world-wide ATM-systems are architected. It must be pretty hard for the banks to design a consistent system world wide. Do they use eventual consistency for this or do they use a ...
1
vote
3answers
217 views
Great articles/videos/… on non-ACID (distributed) systems? (“Eventually Consistent” etc.)
I'll start with these - IMO brilliant - articles:
Base: An Acid Alternative - by Dan Pritchett (eBay), 2008
Eventually Consistent (- Revisited) - by Werner Vogels (Amazon), 2008
Brewer's conjecture ...
1
vote
1answer
55 views
Are there generic implementations of ARIES or other ACID-ensuring algorithms?
I have an application which I'd like to carry out certain actions atomically.
However, these actions are occurring on remote storage, and connections may drop, actions may fail, etc.
There's plenty ...
1
vote
3answers
1k views
What's a real-world example of ACID?
I'm looking for a real-world example for the various ACID properties of a database.
1
vote
2answers
66 views
Renaming DB column in referencing table (violation?)
Say I have this table:
Person table
--------------
PersonId
Address table
------------
AddressId
PersonAddressId
where PersonAddressId is PersonId and the foreign key. Is there any type of ...
1
vote
5answers
191 views
Transaction encapsulation of multi-process writes
I have a database scenario (i'm using Oracle) in which several processes make inserts into a table and a single process selects from it. The table is basically used as a intermediate storage, to ...
0
votes
2answers
56 views
Which opensource database satisfies all these requirements?
Supports C API for reading and writing into the DB.
Support ACID transaction feature.
Support sending notifications if any change happens to DB state.
Finally it should be an open source.
Could ...
0
votes
3answers
76 views
how to enable multi-thread/connection modify the same mysql table?
I have a program that has 2 threads running, and each thread has its own database JDBC connection, and they will access/modify the same database table A like below. Table A only has 2 columns (id, ...
0
votes
0answers
11 views
Graph database which support full ACID with true nested transactions?
Is there graph-database which support full ACID with true nested transactions?
I'm not considering SQL RDBMS unless there's no option.
0
votes
1answer
53 views
ACID Problems in a Multithreaded Environment
I have a multi-threaded java application which executes a lot of parallel CRUD operations on an MySQL Database. As read in MySQL manuals, InnoDB table structure should ensure, that the transactions ...
0
votes
2answers
55 views
What operation ordering guarantees are there without durability (mongo)?
Suppose you have an ACID database. Without an explicit guarantee about operation ordering, you can still infer ordering as a result of durability.
e.g.
I insert x into a database and the statement ...
0
votes
3answers
69 views
Does a typical ACID RDBMS sync to disk every commit?
The 'D' in ACID means "Durability" which is defined by Wikipedia as: "every committed transaction is protected against power loss/crash/errors and cannot be lost by the system and can thus be ...
0
votes
3answers
47 views
Thread safe way to get auto incremented primary key inserted into another table (so they can be joined later)
It seems there are two methods for this, the first one goes like this:
$result = mysql_query("SHOW TABLE STATUS LIKE 'table_name'");
$row = mysql_fetch_array($result);
$nextId = ...
0
votes
0answers
31 views
What are some ways an ACID database can violate atomicity?
From the Wikipedia article on atomicity (http://en.wikipedia.org/wiki/ACID):
An atomic transfer cannot be subdivided and must be processed in its
entirety or not at all. Atomicity means that ...
0
votes
1answer
39 views
Transcations, API's and Designing for Failure
I have been working on an application that needs to log credit card transactions which is dependent on using an external API. Within my application, I have the concept of an invoice with a total, and ...
0
votes
1answer
139 views
NHibernate.Event.IPostDeleteEventListener not working good with transactions
I have a NHibernate-mapped class that holds binary data bound to a file on disk. Business logic is very simple:
When object is stored in the database, the blob is written to a file properly named to ...
0
votes
4answers
76 views
Basic Database Question?
I am intrested to know a little bit more about databases then i currently know. I know how to setup a database backend for any webapp that i happen to be creating but that is all. For example if i was ...
0
votes
1answer
65 views
Rollback for Atomic and Durability
I am trying to understand the ACID property of database transction: how they are achieved; which part is atomicity and which part is durability ,etc.
Let's say I have a transction with two actions,A ...