in Datastore Statistics, Size of all entities is only 9MB.
all that happened from about 4% to 95% is i updated an entity for
about 200 times. the class is:
class ltWords( db.Model ):
WordsDText = db.TextProperty()
after this, there is only one entity of ltWords and the WordsDText is
no longer than 1MB. why does it take more than 90% of my datastore
quota and how to release it?
http://code.google.com/p/googleappengine/issues/detail?id=631
i did nothing about memcache. but i updated all data in taskquene. and
exceptions of textproperty over lengh has occured in updating.
who can help me?
On 1月30日, 下午8时42分, Sylvain <sylvain.viv...@gmail.com> wrote:
Hugo
Robert
2010/2/1 Hugo Visser <bott...@gmail.com>:
> --
> You received this message because you are subscribed to the Google Groups "Google App Engine" group.
> 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.
>
>
Any help regarding this would be appreciated.
If anybody from Google guys is interested - my app-id is "sandcode"
Best Regards:
Dimitar Makariev
On Feb 1, 11:51 am, Robert Kluin <robert.kl...@gmail.com> wrote:
> We see about 10x overhead, I assume from indexes, in our apps. One
> app is using 30M for storing entities and metadata, the indexes take
> another 300M. We see similar usage multipliers in all of our apps.
>
> Robert
>
> 2010/2/1 Hugo Visser <botte...@gmail.com>:
if the guys from Google want to take a look my app-id is "sandcode"
Best Regards:
Dimitar Makariev
On Feb 1, 11:51 am, Robert Kluin <robert.kl...@gmail.com> wrote:
> We see about 10x overhead, I assume from indexes, in our apps. One
> app is using 30M for storing entities and metadata, the indexes take
> another 300M. We see similar usage multipliers in all of our apps.
>
> Robert
>
> 2010/2/1 Hugo Visser <botte...@gmail.com>:
Besides memcache and datastore I also use task queues, anybody else
using those and seeing a quota rise?
This started somewhere around the weekend so I really think this is a
bug of somekind...I hope Google will look into it soon.
This post seems to be related:
http://groups.google.com/group/google-appengine/browse_thread/thread/e619865eaf584706
Hugo
On Feb 1, 8:51 pm, Robert Kluin <robert.kl...@gmail.com> wrote:
> We see about 10x overhead, I assume from indexes, in our apps. One
> app is using 30M for storing entities and metadata, the indexes take
> another 300M. We see similar usage multipliers in all of our apps.
>
> Robert
>
> 2010/2/1 Hugo Visser <botte...@gmail.com>:
On Feb 2, 9:56 am, Hugo Visser <botte...@gmail.com> wrote:
> Well I guess what I'm seeing is not "normal". I have 129 entities that
> take 1 MB in total according to the statistics. I have 48 MB in
> memcache and that's it.
> Still my total stored data quota is at 59% and didn't get reset, even
> after flushing the memcache and deleting all of my entities from the
> datastore.
>
> Besides memcache and datastore I also use task queues, anybody else
> using those and seeing a quota rise?
>
> This started somewhere around the weekend so I really think this is a
> bug of somekind...I hope Google will look into it soon.
> This post seems to be related:http://groups.google.com/group/google-appengine/browse_thread/thread/...
Stored Data:
$0.005/GByte-day 0.00 1.00 0.00 $0.00
Maybe a dashboard/statistics bug?
Hope this helps others finding this thread.
do you mean if i put an entity larger than 1MB, it will take 949MB in
my datastore?
when i do the updatings, some exception occured like
BadRequestError: string property WordsDText is too long. It cannot
exceed 1000000 characters.
the entity will still take 949MB even after the exception?
above all, how to solve it? i want to know how to release the 949MB
more than why it happen.
please help me.
On 2月2日, 上午12时27分, Wooble <geoffsp...@gmail.com> wrote:
> The stored data quota in the dashboard isn't updated in realtime, so
> you wouldn't see the change immediately even if that is the problem.
> I'd suspect some buggy indexes or something, though, if that really
> was your only entity. For one thing, you can't have a single entity
> larger than 1MB, and it would be tough to use 949 MB in datastore
> overhead even if you wanted to.
>
> On Jan 31, 3:05 am,saintthor<saintt...@gmail.com> wrote:
>
> > i deleted the only entity of ltWords. the Total Stored Data is still
> > 95%!
>
> > who can help me?
>
> > On 1月30日, 下午8时42分, Sylvain <sylvain.viv...@gmail.com> wrote:
>
> > > maybe this bug ?
>
> > >http://code.google.com/p/googleappengine/issues/detail?id=631
>
my Total Stored Data resumed to 4%.
who did that? thank you. you are my god.