Hi,HRD migration has been a nightmare for me. I did a migration of over 55GB database to HRD yesterday. Post migration several of my indexes and datastore queries are broken.
Some examples:
- Select * from table1 where col1=val1 => query.count() > 0 but query.get() = empty
- Select * from where col1=val1 => query.get() = empty in my python code. However, same query returns results in Datastore Viewer.
- Select * from table1 order by col1 desc => misses many rows
How can I get these tables & indexes repaired?
Thanks in advance for your help,Saurabh--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/2mBUkDu3OZ0J.
To post to this group, send email to google-a...@googlegroups.com.
To unsubscribe from this group, send email to google-appengi...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
Existing entities (by key match) are overwritten. "Extra" entities you had at destination before copy are not deleted.
Mine worked fine and keys maintained.