And is there a way to send a request directly to that server?
|
|
|
Actually there is a way and it can be useful for pushing new data out to all instances of an application.
|
|||||||
|
|
No there isn't. Usually when someone asks something like this, they're headed in the wrong direction on app engine. Frontend servers get started and shutdown all the time. If you are designing anything that relies on a particular instance, you're doing it wrong. You need to design requests that work no matter what instance they hit. Consider using backends if you must do that. |
|||
|
|
For what purpose? If you want to test different versions, you can use traffic splitting https://developers.google.com/appengine/docs/adminconsole/trafficsplitting That is different versions though, and not a specific instance. |
|||||||
|
|
I use Python and a datetime stamp to identify an instance. This instance id is set by appengine_config.py. To signal other instances I use a flag in memcache, which is checked by the Here is an example of a memcache flag; signalling to reload all dynamic modules, which had been set by instance id: '2012-12-26 16:39:50.072000'
And I starred the feature request from : Ibrahim Arief |
||||
|
|