Reputation: 762
I am migrating my application from master/slave to HRD and I realized one thing: if I complete the migration (so that the old GAE master/slave project points to the new one) all the old serving url remain valid?
In fact when a user in my web-app upload an image I store this path:
servingUrl = ImagesServiceFactory.getImagesService().getServingUrl(blobKey);
This is very important to me because I use the serving url also externally from the app!
Upvotes: 1
Views: 104
Reputation: 101149
Old serving URLs will remain valid as long as your old app remains active, with the blobs they reference in the datastore. If you delete the app or the blobs, the serving URLs may go away at any time.
Upvotes: 1