Michele Orsi
Michele Orsi

Reputation: 762

Are "serving url" valid after migration to datastore HRD?

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

Answers (2)

Nick Johnson
Nick Johnson

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

Stuart Langley
Stuart Langley

Reputation: 7054

Yes this should still work fine.

Upvotes: 0

Related Questions