-
Notifications
You must be signed in to change notification settings - Fork 6.6k
[Cloud Tasks] Add Http Push Queue Sample #2046
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
Merged
Changes from 3 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
a173e24
Http push queue sample
averikitsch 02e2b36
Updates to requirements and license
averikitsch b6248fe
update comments
averikitsch 727073f
Merge branch 'master' into http-tasks
averikitsch e6eca22
Update app.yaml
averikitsch e50aea4
Merge branch 'master' into http-tasks
averikitsch ff2429b
Merge branch 'master' into http-tasks
averikitsch 4cf79b3
update readme
averikitsch afa072c
Merge branch 'http-tasks' of https://github.com/GoogleCloudPlatform/p…
averikitsch 46a0687
fix versioning errors
averikitsch 426b01c
linting error fixed
averikitsch 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Copyright 2019 Google LLC All Rights Reserved. | ||
# | ||
# 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. | ||
|
||
runtime: python | ||
env: flex | ||
entrypoint: gunicorn -b :$PORT main:app | ||
|
||
runtime_config: | ||
python_version: 3 |
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
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,122 @@ | ||
# Copyright 2019 Google LLC All Rights Reserved. | ||
# | ||
# 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. | ||
|
||
from __future__ import print_function | ||
|
||
import argparse | ||
import datetime | ||
|
||
|
||
def create_http_task(project, | ||
queue, | ||
location, | ||
url, | ||
payload=None, | ||
in_seconds=None): | ||
# [START cloud_tasks_create_http_task] | ||
"""Create a task for a given queue with an arbitrary payload.""" | ||
|
||
from google.cloud import tasks | ||
from google.protobuf import timestamp_pb2 | ||
|
||
# Create a client. | ||
client = tasks.CloudTasksClient() | ||
|
||
# TODO(developer): Uncomment these lines and replace with your values. | ||
# project = 'my-project-id' | ||
# queue = 'my-appengine-queue' | ||
# location = 'us-central1' | ||
# url = 'https://<project-id>.appspot.com/example_task_handler' | ||
# payload = 'hello' | ||
|
||
# Construct the fully qualified queue name. | ||
parent = client.queue_path(project, location, queue) | ||
|
||
# Construct the request body. | ||
task = { | ||
'http_request': { # Specify the type of request. | ||
'http_method': 'POST', | ||
'url': url # The full url path that the task will be sent to. | ||
} | ||
} | ||
if payload is not None: | ||
# The API expects a payload of type bytes. | ||
converted_payload = payload.encode() | ||
|
||
# Add the payload to the request. | ||
task['http_request']['body'] = converted_payload | ||
|
||
if in_seconds is not None: | ||
# Convert "seconds from now" into an rfc3339 datetime string. | ||
d = datetime.datetime.utcnow() + datetime.timedelta(seconds=in_seconds) | ||
|
||
# Create Timestamp protobuf. | ||
timestamp = timestamp_pb2.Timestamp() | ||
timestamp.FromDatetime(d) | ||
|
||
# Add the timestamp to the tasks. | ||
task['schedule_time'] = timestamp | ||
|
||
# Use the client to build and send the task. | ||
response = client.create_task(parent, task) | ||
|
||
print('Created task {}'.format(response.name)) | ||
return response | ||
# [END cloud_tasks_create_http_task] | ||
|
||
|
||
if __name__ == '__main__': | ||
parser = argparse.ArgumentParser( | ||
description=create_http_task.__doc__, | ||
formatter_class=argparse.RawDescriptionHelpFormatter) | ||
|
||
parser.add_argument( | ||
'--project', | ||
help='Project of the queue to add the task to.', | ||
required=True, | ||
) | ||
|
||
parser.add_argument( | ||
'--queue', | ||
help='ID (short name) of the queue to add the task to.', | ||
required=True, | ||
) | ||
|
||
parser.add_argument( | ||
'--location', | ||
help='Location of the queue to add the task to.', | ||
required=True, | ||
) | ||
|
||
parser.add_argument( | ||
'--url', | ||
help='The full url path that the request will be sent to.', | ||
required=True, | ||
) | ||
|
||
parser.add_argument( | ||
'--payload', | ||
help='Optional payload to attach to the push queue.' | ||
) | ||
|
||
parser.add_argument( | ||
'--in_seconds', type=int, | ||
help='The number of seconds from now to schedule task attempt.' | ||
) | ||
|
||
args = parser.parse_args() | ||
|
||
create_http_task( | ||
args.project, args.queue, args.location, args.url, | ||
args.payload, args.in_seconds) |
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,28 @@ | ||
# Copyright 2019 Google LLC All Rights Reserved. | ||
# | ||
# 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 create_http_task | ||
|
||
TEST_PROJECT_ID = os.getenv('GCLOUD_PROJECT') | ||
TEST_LOCATION = os.getenv('TEST_QUEUE_LOCATION', 'us-central1') | ||
TEST_QUEUE_NAME = os.getenv('TEST_QUEUE_NAME', 'my-appengine-queue') | ||
|
||
|
||
def test_create_task(): | ||
url = 'https://' + TEST_PROJECT_ID + '.appspot.com/example_task_handler' | ||
result = create_http_task.create_http_task( | ||
TEST_PROJECT_ID, TEST_QUEUE_NAME, TEST_LOCATION, url) | ||
assert TEST_QUEUE_NAME in result.name |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Flask==1.0.2 | ||
gunicorn==19.9.0 | ||
google-cloud-tasks==0.4.0 | ||
google-cloud-tasks==0.5.0 |
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.
Can we change this to "gunicorn -b :$PORT --threads=4 main:app" to ensure the user does not run into concurrency issues while dealing with asynchronously triggered tasks?