Free Write and Read Operations

67 views
Skip to first unread message

José Luis Ordiales Fernandez

unread,
Feb 2, 2012, 6:18:24 AM2/2/12
to google-a...@googlegroups.com
Hi,
im a student of Spain and im using the free version of the GAE. Actually im working with a CSV file and I get to import to the Datastore, but this CSV file has about 200 columns and 1000 rows and when i try to read the data into the datastore the GAE tell me that i have exceed the number of reads.
I have seen that if you enable your billing the cost of reading each 100k operations is 0.07$,but i dont know how many operations of read has my CSV file.

Can anyone help me?
Thanks in advance.

Timofey Koolin

unread,
Feb 2, 2012, 6:36:15 PM2/2/12
to google-a...@googlegroups.com
Every field have index by default.
You can calc write ops by table
https://code.google.com/intl/en/appengine/docs/billing.html 
"These low-level operations map to API-level operations as follows"

2012/2/2 José Luis Ordiales Fernandez <jlof...@gmail.com>

--
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/-/wDh1011b3i0J.
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.



--
Blog: www.rekby.ru

Robert Kluin

unread,
Feb 3, 2012, 1:55:46 AM2/3/12
to google-a...@googlegroups.com
If you're lazy, you can also try importing it on the local dev server,
then goto the local datastore viewer. It will tell you how many write
ops each entity required.

You can also disable unneeded indexes (what Timofey is talking about),
which will reduce cost and improve performance.


Robert

Cezary Wagner

unread,
Feb 3, 2012, 12:27:13 PM2/3/12
to Google App Engine
I do some tool which list all tables and shows bottlenecks base on:
https://code.google.com/intl/en/appengine/docs/billing.html.

First of all do indexed=False for all fields! - not sure about
overhead of import tools since could generate more operation than is
need.

On Feb 3, 7:55 am, Robert Kluin <robert.kl...@gmail.com> wrote:
> If you're lazy, you can also try importing it on the local dev server,
> then goto the local datastore viewer.  It will tell you how many write
> ops each entity required.
>
> You can also disable unneeded indexes (what Timofey is talking about),
> which will reduce cost and improve performance.
>
> Robert
>
>
>
>
>
>
>
> On Thu, Feb 2, 2012 at 18:36, Timofey Koolin <timo...@koolin.ru> wrote:
> > Every field have index by default.
> > You can calc write ops by table
> >https://code.google.com/intl/en/appengine/docs/billing.html
> > "These low-level operations map to API-level operations as follows"
>
> > 2012/2/2 José Luis Ordiales Fernandez <jlof1...@gmail.com>
Reply all
Reply to author
Forward
0 new messages