Oh and keep in mind please that my answer (that indexes are the cause) might be completely wrong as well. I'm a noob! :)
2010/5/2 Jaroslav Záruba <[email protected]> > I believe that it was in this video... > http://www.youtube.com/watch?v=tx5gdoNpcZM > <http://www.youtube.com/watch?v=tx5gdoNpcZM>...where a question was asked > whether we are charged for space taken by indexes. The question is "No". > (Explanation has been that it would probably discourage users from using > advantages of datastore.) > So I think that might address your concerns. > > Should you watch this video from the start to the end, please let me know > where exactly that question has been asked+answered. I'm too lazy to seek > again, Youtube is not exastly fast today. Next time someone asks I would > like to post exact timestamp. > > Regards > J. Záruba > > On Sun, May 2, 2010 at 9:11 PM, Perica Zivkovic <[email protected] > > wrote: > >> Jaroslav, >> >> thank you for your answer. To be honest if Im using 20MB of objects >> and that is creating 530MB of indexes I am stopping with GAE today !! >> >> Because that will mean that I get from Google 101GB and if I create >> 200-300MB of objects all my space is gone ??!??! >> >> cheers, >> >> Perica >> >> On May 2, 4:28 pm, Jaroslav Záruba <[email protected]> wrote: >> > I've learned that indexes may take way more space (many times more) than >> the >> > data itself. >> > >> > You might consider excluding particular property from indexing` in Java >> that >> > would be: >> > >> > @Persistent >> > @Extension(vendorName = "datanucleus", key = "gae.unindexed", >> value="true") >> > private String unindexedString; >> > >> > ...as seen here< >> http://code.google.com/appengine/docs/java/datastore/queriesandindexe...> >> > . >> > >> > Regards >> > J. Záruba >> > >> > On Sun, May 2, 2010 at 12:13 PM, Perica Zivkovic >> > <[email protected]>wrote: >> > >> > >> > >> > >> > >> > > Hi there, >> > >> > > I have created small blog on GAE and I'm puzzled about numbers on the >> > > dashboard saying that my app is using 0.55 of 101 GB (billing enabled) >> > > of Total Stored Data. Thats 550 MB !! >> > >> > > If I take a look to the actual usage I see that I have three files in >> > > blobstore with total size 17MB and datastore stats also say that total >> > > size of all my entities is 3MB so all in all I should be using 20 MB. >> > >> > > What I'm I missing here and what is using "other" 530MB of "Total >> > > Stored Data"? >> > >> > > cheers, >> > >> > > Perica >> > >> > > p.s. app ID is "zivkovic-nl" >> > >> > > -- >> > > You received this message because you are subscribed to the Google >> Groups >> > > "Google App Engine" group. >> > > To post to this group, send email to >> [email protected]. >> > > To unsubscribe from this group, send email to >> > > [email protected]<google-appengine%[email protected]><google-appengine%2Bunsubscrib >> [email protected]> >> > > . >> > > For more options, visit this group at >> > >http://groups.google.com/group/google-appengine?hl=en. >> > >> > -- >> > You received this message because you are subscribed to the Google >> Groups "Google App Engine" group. >> > To post to this group, send email to [email protected]. >> > To unsubscribe from this group, send email to >> [email protected]<google-appengine%[email protected]> >> . >> > For more options, visit this group athttp:// >> groups.google.com/group/google-appengine?hl=en. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Google App Engine" group. >> To post to this group, send email to [email protected]. >> To unsubscribe from this group, send email to >> [email protected]<google-appengine%[email protected]> >> . >> For more options, visit this group at >> http://groups.google.com/group/google-appengine?hl=en. >> >> > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
