-
Notifications
You must be signed in to change notification settings - Fork 6.5k
feat(datastore): Add Datastore Admin API samples #4121
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
Merged
tmatsuo
merged 20 commits into
GoogleCloudPlatform:master
from
MaxxleLLC:datastore_admin_api_samples
Aug 3, 2020
Merged
Changes from 4 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
f27c755
feat(datastore): Add Datastore Admin API samples
a1bb45e
add test for entities import/export
bd7e915
add requirements into the README file
575a23e
fix imports order, add Storage roles tip, add retrying into requirements
28b9eb6
Merge branch 'master' into datastore_admin_api_samples
leahecole 4be5782
Merge branch 'master' into datastore_admin_api_samples
leahecole b447a36
use backoff instead of retrying, add App Engine tip
cf611d1
Merge branch 'datastore_admin_api_samples' of https://github.com/q-lo…
9ba88d0
del retrying from requrements-test.txt
eb01543
fix imports order
7083009
Merge branch 'master' into datastore_admin_api_samples
leahecole 1502752
Merge branch 'master' into datastore_admin_api_samples
3508a6f
add timeouts
d002a39
Merge branch 'datastore_admin_api_samples' of https://github.com/q-lo…
9197192
Merge branch 'master' into datastore_admin_api_samples
67da620
Merge branch 'master' into datastore_admin_api_samples
b909716
Merge branch 'master' into datastore_admin_api_samples
d4dc86f
Merge branch 'master' into datastore_admin_api_samples
9593e43
Merge branch 'master' into datastore_admin_api_samples
7f0c858
Merge branch 'master' into datastore_admin_api_samples
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,86 @@ | ||
# Copyright 2016, Google, Inc. | ||
# 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. | ||
|
||
# [START datastore_admin_client_create] | ||
from google.cloud.datastore_admin_v1.gapic import datastore_admin_client | ||
|
||
|
||
def client_create(): | ||
"""Creates a new Datastore admin client.""" | ||
client = datastore_admin_client.DatastoreAdminClient() | ||
|
||
print("Admin client created\n") | ||
return client | ||
# [END datastore_admin_client_create] | ||
|
||
|
||
# [START datastore_admin_entities_export] | ||
def export_entities(project_id, output_url_prefix): | ||
""" | ||
Exports a copy of all or a subset of entities from | ||
Datastore to another storage system, such as Cloud Storage. | ||
""" | ||
# project_id = "project-id" | ||
# output_url_prefix = "gs://bucket-name" | ||
client = datastore_admin_client.DatastoreAdminClient() | ||
|
||
op = client.export_entities(project_id, output_url_prefix) | ||
response = op.result() | ||
IlyaFaer marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
print("Entities were exported\n") | ||
return response | ||
# [END datastore_admin_entities_export] | ||
|
||
|
||
# [START datastore_admin_entities_import] | ||
def import_entities(project_id, input_url): | ||
"""Imports entities into Datastore.""" | ||
# project_id := "project-id" | ||
# input_url := "gs://bucket-name/overall-export-metadata-file" | ||
client = datastore_admin_client.DatastoreAdminClient() | ||
|
||
op = client.import_entities(project_id, input_url) | ||
response = op.result() | ||
IlyaFaer marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
print("Entities were imported\n") | ||
return response | ||
# [END datastore_admin_entities_import] | ||
|
||
|
||
# [START datastore_admin_index_get] | ||
def get_index(project_id, index_id): | ||
"""Gets an index.""" | ||
# project_id := "my-project-id" | ||
# index_id := "my-index" | ||
client = datastore_admin_client.DatastoreAdminClient() | ||
index = client.get_index(project_id, index_id) | ||
|
||
print("Got index: %v\n", index.index_id) | ||
return index | ||
# [END datastore_admin_index_get] | ||
|
||
|
||
# [START datastore_admin_index_list] | ||
def list_indexes(project_id): | ||
"""Lists the indexes.""" | ||
# project_id := "my-project-id" | ||
client = datastore_admin_client.DatastoreAdminClient() | ||
|
||
indexes = [] | ||
for index in client.list_indexes(project_id): | ||
indexes.append(index) | ||
print("Got index: %v\n", index.index_id) | ||
|
||
print("Got list of indexes\n") | ||
return indexes | ||
# [END datastore_admin_index_list] |
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,47 @@ | ||
# Copyright 2016, Google, Inc. | ||
# 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. | ||
|
||
import os | ||
|
||
import admin | ||
import pytest | ||
from retrying import retry | ||
|
||
|
||
PROJECT = os.environ["GOOGLE_CLOUD_PROJECT"] | ||
BUCKET = os.environ["CLOUD_STORAGE_BUCKET"] | ||
|
||
|
||
class TestDatastoreAdminSnippets: | ||
def test_client_create(self): | ||
assert admin.client_create() | ||
|
||
def test_get_index(self): | ||
indexes = admin.list_indexes(PROJECT) | ||
if not indexes: | ||
pytest.skip( | ||
"Skipping datastore test. At least " | ||
"one index should present in database." | ||
) | ||
|
||
assert admin.get_index(PROJECT, indexes[0].index_id) | ||
|
||
def test_list_index(self): | ||
assert admin.list_indexes(PROJECT) | ||
|
||
@retry(stop_max_attempt_number=3, stop_max_delay=540000) | ||
def test_export_import_entities(self): | ||
response = admin.export_entities(PROJECT, "gs://" + BUCKET) | ||
assert response | ||
|
||
assert admin.import_entities(PROJECT, response.output_url) |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
backoff==1.10.0 | ||
pytest==5.3.2 | ||
retrying==1.3.3 | ||
IlyaFaer marked this conversation as resolved.
Show resolved
Hide resolved
|
||
flaky==3.6.1 |
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.
Uh oh!
There was an error while loading. Please reload this page.