Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
8
818f19p5
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Peter Keleher
818f19p5
Commits
5b8b532a
Commit
5b8b532a
authored
5 years ago
by
keleher
Browse files
Options
Downloads
Patches
Plain Diff
auto
parent
ec0ae110
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+5
-5
5 additions, 5 deletions
README.md
with
5 additions
and
5 deletions
README.md
+
5
−
5
View file @
5b8b532a
# Project 5: Transactional Support From a Log
<font
=
-1
>
v1.0
</font>
# Overall Project Description
...
...
@@ -76,10 +77,9 @@ Our transaction substrate is modeled on that in Tango. Update transactions are
*optimistic*
, and commit only if isolation is preserved for the entire transaction
execution. Said another way:
**Definition 1:**
*
T
<sub>
i
</sub>
commits iff for each read r in T
<sub>
i
</sub>
:
<br>
- r is not a
**dirty write**
*
// note that the paper does not mention this
*
<br>
- there are no writes (without
associated aborts) to r's key in the log between r and T
<sub>
i
</sub>
's commit.
*
**Definition 1:**
*
T
<sub>
i
</sub>
commits iff for each read r in T
<sub>
i
</sub>
,
the value read by
* r *
is not stale by the time T
<sub>
i
</sub>
's commit record is encountered.
*
Transactions that are observed to commit have their writes reflected in the clients local
key-value store.
...
...
@@ -99,7 +99,7 @@ ignored by other replicas.
## Part 2: Snapshot Isolation
Your decision as to how to implement this, but it
shoul
d not involve any changes to the
Your decision as to how to implement this, but it
nee
d not involve any changes to the
log abstraction in
`replica.go`
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment