-
Notifications
You must be signed in to change notification settings - Fork 108
chore: sample for snapshot isolation #2265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
alkatrivedi
wants to merge
11
commits into
main
Choose a base branch
from
sample-snapshot-isolation
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 6 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
2a570b8
chore: sample for snapshot isolation
alkatrivedi e73331f
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] f09e627
refactor: sample comments
alkatrivedi 1c03bdf
Merge branch 'main' into sample-snapshot-isolation
alkatrivedi 82eb764
refactor sample
alkatrivedi 470eb56
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] 5772cb2
Merge branch 'main' into sample-snapshot-isolation
alkatrivedi 0da8b77
refactor: tests
alkatrivedi fd1d72f
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] 8c56a11
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] 33c251e
Merge branch 'sample-snapshot-isolation' of https://github.com/google…
gcf-owl-bot[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
// Copyright 2025 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// sample-metadata: | ||
// title: Performs a read-write transaction with isolation level option | ||
// usage: node snapshot-isolation.js <INSTANCE_ID> <DATABASE_ID> <PROJECT_ID> | ||
|
||
'use strict'; | ||
|
||
function main( | ||
instanceId = 'my-instance', | ||
databaseId = 'my-database', | ||
projectId = 'my-project-id' | ||
) { | ||
// [START spanner_isolation_level] | ||
// Imports the Google Cloud Spanner client library | ||
const {Spanner, protos} = require('@google-cloud/spanner'); | ||
// The isolation level specified at the client-level will be applied | ||
// to all RW transactions. | ||
const isolationOptionsForClient = { | ||
defaultTransactionOptions: { | ||
isolationLevel: | ||
protos.google.spanner.v1.TransactionOptions.IsolationLevel.SERIALIZABLE, | ||
}, | ||
}; | ||
|
||
// Instantiates a client with defaultTransactionOptions | ||
const spanner = new Spanner({ | ||
projectId: projectId, | ||
defaultTransactionOptions: isolationOptionsForClient, | ||
}); | ||
|
||
function runTransactionWithIsolationLevel() { | ||
// Gets a reference to a Cloud Spanner instance and database | ||
const instance = spanner.instance(instanceId); | ||
const database = instance.database(databaseId); | ||
// The isolation level specified at the request level takes precedence over the isolation level configured at the client level. | ||
const isolationOptionsForTransaction = { | ||
isolationLevel: | ||
protos.google.spanner.v1.TransactionOptions.IsolationLevel | ||
.REPEATABLE_READ, | ||
}; | ||
|
||
database.runTransaction( | ||
isolationOptionsForTransaction, | ||
async (err, transaction) => { | ||
if (err) { | ||
console.error(err); | ||
return; | ||
} | ||
try { | ||
const query = | ||
'SELECT AlbumTitle FROM Albums WHERE SingerId = 1 AND AlbumId = 1'; | ||
const results = await transaction.run(query); | ||
// Gets first album's title | ||
const rows = results[0].map(row => row.toJSON()); | ||
const albumTitle = rows[0].AlbumTitle; | ||
console.log(`previous album title ${albumTitle}`); | ||
|
||
const update = | ||
"UPDATE Albums SET AlbumTitle = 'New Album Title' WHERE SingerId = 1 AND AlbumId = 1"; | ||
const [rowCount] = await transaction.runUpdate(update); | ||
console.log( | ||
`Successfully updated ${rowCount} record in Albums table.` | ||
); | ||
await transaction.commit(); | ||
console.log( | ||
'Successfully executed read-write transaction with isolationLevel option.' | ||
); | ||
} catch (err) { | ||
console.error('ERROR:', err); | ||
} finally { | ||
transaction.end(); | ||
// Close the database when finished. | ||
await database.close(); | ||
} | ||
} | ||
); | ||
} | ||
runTransactionWithIsolationLevel(); | ||
// [END spanner_isolation_level] | ||
} | ||
process.on('unhandledRejection', err => { | ||
console.error(err.message); | ||
process.exitCode = 1; | ||
}); | ||
main(...process.argv.slice(2)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here with naming.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done