Re: [google-appengine] Re: Over index creation quota

2013-10-20 Thread Kaan Soral
If searchdatastore was true, I would definitely do that, search is more powerful However, it's unclear what are search's limits, first of all there is the 250gb index limit, even if that was elevated it's unclear whether it can perform as good as datastore There is also the cost issue, even if

Re: [google-appengine] Re: Over index creation quota

2013-10-19 Thread Alejandro González Rodrigo
That 200 index limit quota can't be changed (at least to my knowledge). That limit is there for important reasons. If you reach the limit, maybe you are doing something wrong, or not in the best way. Did you consider using search API for removing some index? Bigquery or CloudSQL for making

Re: [google-appengine] Re: Over index creation quota

2013-10-19 Thread Kaan Soral
The optimized/documented version of index.yaml is 138 indexes :) Generally the majority are from a single model with 2 boolean, one (3 choiced) string property, generating 2^3x of the initial index number Since the filters are not always present, the devserver generates an index for each

Re: [google-appengine] Re: Over index creation quota

2013-10-19 Thread Alejandro González Rodrigo
I dont know what kind of model do you have and what you can do with it, but for example with this entity: * Record* @Id Long id String user Boolean newsletter; //- indexed Boolean notifications; //- indexed String choice; //A,B or C - indexed How about splitting the entity this way?

Re: [google-appengine] Re: Over index creation quota

2013-10-19 Thread Kaan Soral
In my scenario, there is a query with a sort order and there are optional filters, each optional filter doubles the index number Generally speaking, If I'm not too mistaken, your approach to my scenario wouldn't reduce write operations, it would just reduce index number, but in return require

Re: [google-appengine] Re: Over index creation quota

2013-10-19 Thread Alejandro González Rodrigo
Generally speaking, If I'm not too mistaken, your approach to my scenario wouldn't reduce write operations, it would just reduce index number, but in return require manual indexing via additional models, kind of like moving around the limitation, not that I'm against it We were talking

Re: [google-appengine] Re: Over index creation quota

2013-10-19 Thread Nick
More than one or two sort orders will drastically increase the number of indexes you need to create, particularly if you're using range queries too. In the scenario you've described I would highly recommend duplicating your data into the SearchService and running searches on that. This will

Re: [google-appengine] Re: Over index creation quota

2013-10-18 Thread Kaan Soral
with 138 indexes, I'm wondering this too :) On Tuesday, September 3, 2013 6:50:42 AM UTC+3, aswath wrote: Same here. I need to increase the number of indexes. Is this limitation removed for billing enabled apps? -Aswath On Tue, Sep 3, 2013 at 1:08 AM, kcunha.araujo

[google-appengine] Re: Over index creation quota

2013-09-02 Thread kcunha.araujo
Hi all, Anybody know how to increase quota index number? My app is on limite 200. We need to increase it. Em quinta-feira, 12 de novembro de 2009 11h48min11s UTC-4, Orlando escreveu: I have same problem: Error 400: --- begin server output --- Over index creation quota: The API call

Re: [google-appengine] Re: Over index creation quota

2013-09-02 Thread Aswath Satrasala
Same here. I need to increase the number of indexes. Is this limitation removed for billing enabled apps? -Aswath On Tue, Sep 3, 2013 at 1:08 AM, kcunha.araujo kcunha.ara...@gmail.comwrote: Hi all, Anybody know how to increase quota index number? My app is on limite 200. We need to

[google-appengine] Re: Over index creation quota

2009-11-12 Thread Orlando
I have same problem: Error 400: --- begin server output --- Over index creation quota: The API call datastore_v3.CreateIndex() required more quota than is available. The application is 'testingryv'. I have tried to delete my useless indexes, but i got same problem. Any solution? Thanks, Orlando

[google-appengine] Re: Over index creation quota

2009-10-14 Thread Nick Johnson (Google)
Hi Dinesh, All apps are limited to 100 indexes. If you are getting this error on an app that has fewer than 100 indexes, please let me know which one it is, and I will reset your index count quota. -Nick Johnson On Wed, Oct 14, 2009 at 11:50 AM, Dinesh dinesh.varadhara...@orangescape.com wrote:

[google-appengine] Re: Over index creation quota

2009-10-14 Thread Dinesh
Hi Nick, thanks for the immediate reply.. I cleared data and vacuumed indexes in 4 of my apps. (Created new apps as old apps are not functioning). But still it is throwing the quota exception. The app ids are os-demo osruntime osclouddemo osruntime And we might be terribly needing support for

[google-appengine] Re: Over index creation quota

2009-10-14 Thread Nick Johnson (Google)
Hi dinesh, On Wed, Oct 14, 2009 at 12:00 PM, Dinesh dinesh.varadhara...@orangescape.com wrote: Hi Nick, thanks for the immediate reply.. I cleared data and vacuumed indexes in 4 of my apps. (Created new apps as old apps are not functioning). Not functioning how? But still it is

[google-appengine] Re: Over index creation quota

2009-10-14 Thread Dinesh
Hi Nick, Not functioning how? I want to reuse existing apps, so I cleared data and indexes. I am not seeing any data in data viewer or any index in indexes. But when trying to import new app I am getting index quota error.. I just got the alert saying deleting app is possible now. Thank god..

[google-appengine] Re: Over index creation quota

2009-10-14 Thread Nick Johnson (Google)
On Wed, Oct 14, 2009 at 1:53 PM, Dinesh dinesh.varadhara...@orangescape.com wrote: Hi Nick, Not functioning how? I want to reuse existing apps, so I cleared data and indexes. I am not seeing any data in data viewer or any index in indexes. But when trying to import new app I am getting