InterviewSolution
Saved Bookmarks
| 1. |
What Is Two-phase Commit ? |
|
Answer» Two-phase COMMIT is mechanism that guarantees a distributed transaction either commits on all INVOLVED nodes or rolls back on all involved nodes to maintain DATA consistency ACROSS the global distributed database. It has two phase, a Prepare Phase and a Commit Phase. Two-phase commit is mechanism that guarantees a distributed transaction either commits on all involved nodes or rolls back on all involved nodes to maintain data consistency across the global distributed database. It has two phase, a Prepare Phase and a Commit Phase. |
|