Go App Engine packages
Перейти к файлу
Steven Buss c71d63e301
internal: Increase limitDial timeout from 500ms to 10s (#210)
Increase internal.limitDial's timeout from 500ms to 10s, to account for differences in the go111 legacy API endpoint.
2019-09-19 14:55:17 -07:00
aetest aetest: Redirect stderr to be visible to the user (#208) 2019-08-28 13:17:10 -07:00
blobstore blobstore: handle base64 encoding and non-UTF-8 charset (#129) 2018-03-28 10:56:29 -07:00
capability capability: Simplify the API to remove unnecessary RPC calls (#206) 2019-08-01 11:14:06 -07:00
channel channel: add deprecation message (#78) 2017-06-30 13:53:15 -07:00
cloudsql Update more docs to follow new Managed VM branding. 2016-03-23 14:15:09 +11:00
cmd cmd/aedeploy: deprecate aedeploy (#65) 2017-03-21 09:47:31 -07:00
datastore datastore: add EnableKeyConversion for compatibility with Cloud Datastore encoded keys (#192) 2019-05-14 10:23:40 -07:00
delay Add support for stable Func keys in App Engine second gen (#184) 2018-12-17 12:59:03 -08:00
demos Update more docs to follow new Managed VM branding. 2016-03-23 14:15:09 +11:00
file file: Fix error message for DefaultBucketName failures (#201) 2019-06-03 12:23:20 -07:00
image Remove internal.CallOptions entirely, and use the context's timeout for API calls. 2015-01-28 16:44:06 +11:00
internal internal: Increase limitDial timeout from 500ms to 10s (#210) 2019-09-19 14:55:17 -07:00
log log: clarify package docs (#83) 2017-08-01 11:31:37 -07:00
mail mail, search: update doc URLs (#81) 2017-07-07 16:33:49 -04:00
memcache Normalize namespace and transaction application. 2016-05-17 01:27:11 +00:00
module Remove internal.CallOptions entirely, and use the context's timeout for API calls. 2015-01-28 16:44:06 +11:00
remote_api remote_api: don't modify http.Client parameter (#94) 2017-10-11 14:50:12 -07:00
runtime runtime: update RunInBackground doc to include basic scaling. 2016-08-07 22:12:34 -07:00
search search: fix language code of Japanese (#103) 2018-03-28 14:30:08 -07:00
socket Update more docs to follow new Managed VM branding. 2016-03-23 14:15:09 +11:00
taskqueue delay: make it possible to get taskqueue HTTP headers from inside a delay.Func (#82) 2017-08-14 12:09:42 -07:00
urlfetch Use the context's deadline for urlfetch, and drop urlfetch.Transport's Deadline field. 2015-05-27 14:20:47 +10:00
user user: check for valid context and panic if not (#70) 2017-04-10 10:49:17 -07:00
xmpp Remove internal.CallOptions entirely, and use the context's timeout for API calls. 2015-01-28 16:44:06 +11:00
.travis.yml Drop pre 18 (#165) 2018-10-29 15:34:14 -07:00
CONTRIBUTING.md CONTRIBUTING.md: adds file (#42) 2017-01-06 13:02:42 -08:00
LICENSE Add LICENSE file. 2014-02-07 14:33:00 +11:00
README.md Change /_ah/startup to /_ah/start in README (#203) 2019-05-14 21:47:07 -07:00
appengine.go Remove TODO that has been implemented. (#193) 2019-02-15 12:43:44 -08:00
appengine_test.go Add missing copyright headers. 2015-08-25 23:55:53 +00:00
appengine_vm.go appengine: introduce appengine.Main() for Standard. 2016-07-07 23:40:48 +00:00
errors.go Remove appengine.IsCapabilityDisabled. 2014-02-06 15:01:18 +11:00
go.mod go.mod: Update github.com/golang/protobuf to v1.3.1 (#204) 2019-06-06 10:30:15 -07:00
go.sum go.mod: Update github.com/golang/protobuf to v1.3.1 (#204) 2019-06-06 10:30:15 -07:00
identity.go appengine: name returned parameters on SignBytes to improve documentation 2015-04-07 06:55:24 +00:00
namespace.go Refactor namespace application so it gets correctly applied implicitly. 2016-01-04 14:57:12 +11:00
namespace_test.go Normalize namespace and transaction application. 2016-05-17 01:27:11 +00:00
timeout.go Remove internal.CallOptions entirely, and use the context's timeout for API calls. 2015-01-28 16:44:06 +11:00
travis_install.sh Drop pre 18 (#165) 2018-10-29 15:34:14 -07:00
travis_test.sh Drop pre 18 (#165) 2018-10-29 15:34:14 -07:00

README.md

Go App Engine packages

Build Status

This repository supports the Go runtime on App Engine standard. It provides APIs for interacting with App Engine services. Its canonical import path is google.golang.org/appengine.

See https://cloud.google.com/appengine/docs/go/ for more information.

File issue reports and feature requests on the GitHub's issue tracker.

Upgrading an App Engine app to the flexible environment

This package does not work on App Engine flexible.

There are many differences between the App Engine standard environment and the flexible environment.

See the documentation on upgrading to the flexible environment.

Directory structure

The top level directory of this repository is the appengine package. It contains the basic APIs (e.g. appengine.NewContext) that apply across APIs. Specific API packages are in subdirectories (e.g. datastore).

There is an internal subdirectory that contains service protocol buffers, plus packages required for connectivity to make API calls. App Engine apps should not directly import any package under internal.

Updating from legacy (import "appengine") packages

If you're currently using the bare appengine packages (that is, not these ones, imported via google.golang.org/appengine), then you can use the aefix tool to help automate an upgrade to these packages.

Run go get google.golang.org/appengine/cmd/aefix to install it.

1. Update import paths

The import paths for App Engine packages are now fully qualified, based at google.golang.org/appengine. You will need to update your code to use import paths starting with that; for instance, code importing appengine/datastore will now need to import google.golang.org/appengine/datastore.

2. Update code using deprecated, removed or modified APIs

Most App Engine services are available with exactly the same API. A few APIs were cleaned up, and there are some differences:

  • appengine.Context has been replaced with the Context type from golang.org/x/net/context.
  • Logging methods that were on appengine.Context are now functions in google.golang.org/appengine/log.
  • appengine.Timeout has been removed. Use context.WithTimeout instead.
  • appengine.Datacenter now takes a context.Context argument.
  • datastore.PropertyLoadSaver has been simplified to use slices in place of channels.
  • delay.Call now returns an error.
  • search.FieldLoadSaver now handles document metadata.
  • urlfetch.Transport no longer has a Deadline field; set a deadline on the context.Context instead.
  • aetest no longer declares its own Context type, and uses the standard one instead.
  • taskqueue.QueueStats no longer takes a maxTasks argument. That argument has been deprecated and unused for a long time.
  • appengine.BackendHostname and appengine.BackendInstance were for the deprecated backends feature. Use appengine.ModuleHostnameand appengine.ModuleName instead.
  • Most of appengine/file and parts of appengine/blobstore are deprecated. Use Google Cloud Storage if the feature you require is not present in the new blobstore package.
  • appengine/socket is not required on App Engine flexible environment / Managed VMs. Use the standard net package instead.

Key Encode/Decode compatibiltiy to help with datastore library migrations

Key compatibility updates have been added to help customers transition from google.golang.org/appengine/datastore to cloud.google.com/go/datastore. The EnableKeyConversion enables automatic conversion from a key encoded with cloud.google.com/go/datastore to google.golang.org/appengine/datastore key type.

Enabling key conversion

Enable key conversion by calling EnableKeyConversion(ctx) in the /_ah/start handler for basic and manual scaling or any handler in automatic scaling.

1. Basic or manual scaling

This start handler will enable key conversion for all handlers in the service.

http.HandleFunc("/_ah/start", func(w http.ResponseWriter, r *http.Request) {
    datastore.EnableKeyConversion(appengine.NewContext(r))
})

2. Automatic scaling

/_ah/start is not supported for automatic scaling and /_ah/warmup is not guaranteed to run, so you must call datastore.EnableKeyConversion(appengine.NewContext(r)) before you use code that needs key conversion.

You may want to add this to each of your handlers, or introduce middleware where it's called. EnableKeyConversion is safe for concurrent use. Any call to it after the first is ignored.