-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* regen: regenerate client with rpc priority * feat: support rpc priority * fix: change to non-breaking change + fix sample * docs: cleanup sample and add comment on prio * fix: update copyright year * chore: cleanup after merge * fix: sample test + possible undefined requestoptions * fix: wait for sample to finish * merge: remove manual changes from generated files * fix: omit transaction tags + add tests * fix: skip notation * fix: CommitOptions should not include transaction tag
- Loading branch information
Showing
11 changed files
with
383 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -12,3 +12,4 @@ system-test/*key.json | |
.DS_Store | ||
package-lock.json | ||
__pycache__ | ||
.idea |
This file contains 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,73 @@ | ||
// Copyright 2021 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. | ||
|
||
'use strict'; | ||
|
||
async function main(instanceId, databaseId, projectId) { | ||
// TODO: Add start region tag here | ||
// Imports the Google Cloud client library. | ||
const {Spanner, protos} = require('@google-cloud/spanner'); | ||
const Priority = protos.google.spanner.v1.RequestOptions.Priority; | ||
|
||
/** | ||
* TODO(developer): Uncomment the following lines before running the sample. | ||
*/ | ||
// const projectId = 'my-project-id'; | ||
// const instanceId = 'my-instance'; | ||
// const databaseId = 'my-database'; | ||
|
||
// Creates a client | ||
const spanner = new Spanner({ | ||
projectId: projectId, | ||
}); | ||
|
||
async function queryWithRpcPriority(instanceId, databaseId) { | ||
// Gets a reference to a Cloud Spanner instance and database. | ||
const instance = spanner.instance(instanceId); | ||
const database = instance.database(databaseId); | ||
|
||
const sql = `SELECT AlbumId, AlbumTitle, MarketingBudget | ||
FROM Albums | ||
ORDER BY AlbumTitle`; | ||
|
||
try { | ||
// Execute a query with low priority. Note that the default for all | ||
// requests is PRIORITY_HIGH, and that this option can only be used to | ||
// reduce the priority of a request. | ||
const [rows] = await database.run({ | ||
sql, | ||
requestOptions: { | ||
priority: Priority.PRIORITY_LOW, | ||
}, | ||
}); | ||
|
||
rows.forEach(row => { | ||
const json = row.toJSON(); | ||
console.log( | ||
`AlbumId: ${json.AlbumId}, AlbumTitle: ${json.AlbumTitle}, MarketingBudget: ${json.MarketingBudget}` | ||
); | ||
}); | ||
} catch (err) { | ||
console.error('ERROR:', err); | ||
} finally { | ||
// Close the database when finished. | ||
await database.close(); | ||
} | ||
} | ||
// TODO: Add end region tag here | ||
await queryWithRpcPriority(instanceId, databaseId); | ||
} | ||
main(...process.argv.slice(2)).then(() => | ||
console.log('Finished executing sample') | ||
); |
This file contains 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 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 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 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 |
---|---|---|
|
@@ -52,4 +52,4 @@ | |
} | ||
} | ||
] | ||
} | ||
} |
This file contains 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 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.