We are using Google App Engine with Datastore and Objectify. In our local machine it's taking 1 second to do a query while in the cloud it's taking arround 20 seconds. The server location is in europe-west and I am in Spain so I don't think this is the issue.
The query we are performing is just retrieving data with just 1 filter:
final CityEntity cityEntity = new CityEntity();
cityEntity.setId(1);
ofy().load().type(Person.class).filter("city =", cityEntity).list();