Hello All

I have ~27000 entries in 1Mb csv file. After bulk uploading them on my
local GAE server, it starts to consume ~250Mb of memory.
But i have 5 same files with entries. So, when i'll upload them, will
GAE take more then 1GB of memory?
(On second file there is almost line dependence ~55000 entries = 500Mb
GAE in mem)
After cold start GAE loads all the data entries all in RAM memory too.
Is it normal?
Why data entries are stored in memory and not in some kind of file_db
object?

Btw, size of GAE datastore db file with that 27000 entries is 5Mb.

Entry class:
class CurrencyRate(db.Model):
        id = db.StringProperty()            # 11 chars
        charcode = db.StringProperty() # 3 chars
        value = db.FloatProperty()        # 4 chars after comma
        date = db.StringProperty()        # 8 chars

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to