Hello Christophe, On Wednesday, May 15, 2013 8:43:34 AM UTC-5, Christophe Pruvost wrote: > > I deploy my application then I use Id Allocation and get a range from > Club(1) To Club(10) > I redeployed my application then I use Id Allocation and get a range from > Club(1001) To Club(1010) > So my question : what is the expected behavior for id allocation ? please > give some details.... > Each time I redeploy the I increase the sequence by 1000 ? >
You're seeing the scattered ID allocation ( https://groups.google.com/forum/?fromgroups#!topic/google-appengine/YlCZ3z7lwdI introduced in 1.7.5) at work: the datastore allocates a set of IDs where the sequence is scattered in the range of possible float64 numbers. So the next time you allocate a 10 entity range, you could get 9001-9010, 45001-45010, etc. On Wednesday, May 15, 2013 8:43:34 AM UTC-5, Christophe Pruvost wrote: > > I want to flush the Club Data so I would like to get a new Sequence > beginning from Club(1)...is it possible to do that ? What kind of action > could I have on this sequence generator ...I do not find information on > that ? > No, there is no way to do that. You can still manually set the entity ID so you maintain a sequence of Entity IDs though. ----------------- -Vinny P Technology & Media Advisor Chicago, IL My Go side project: http://invalidmail.com/ -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
