Note that there are some explanatory texts on larger screens.

plurals
  1. POWhy is my write quota reached with a simple admin bulk remove?
    text
    copied!<p>This weird case happened twice already in the last 2 days.</p> <p>I used Datastore Admin to remove all entities, no more than 100, to later re–upload db using <code>remote_api_shell</code> but after the request the <em>Datastore Write Operations</em> reached the limit:</p> <p><img src="https://i.stack.imgur.com/plPDe.png" alt="enter image description here"></p> <p>This is the first and the only operation I did since last 24h reset.</p> <p>Also the error is reported in <code>remote_api_shell</code> when I try to <code>put</code> new entities.</p> <p>Any advice welcome.</p> <hr> <h2>Edit:</h2> <p>Here the models, nothing huge...</p> <pre><code>class Brand(BaseModel): ''' Brand class `Marca` in Etax db ''' name = db.StringProperty() abbr = db.StringProperty() def __repr__(self): return ('&lt;Brand {0} instance at {1}&gt;' .format(self.abbr.encode('utf-8'), hex(id(self)))) class Model(BaseModel): ''' Model class `Gamma` in Etax db ''' name = db.StringProperty() code = db.IntegerProperty() brand = db.ReferenceProperty(Brand, collection_name='models') def __repr__(self): return ('&lt;Model {0} instance at {1}&gt;' .format(self.code, hex(id(self)))) class TrimLevel(BaseModel): ''' Trim Level class `Modello` in Etax db ''' name = db.StringProperty() etax_code = db.IntegerProperty() start_production_date = db.DateProperty() end_production_date = db.DateProperty() retail_buy_prices = db.ListProperty(int) retail_sell_prices = db.ListProperty(int) list_prices = db.ListProperty(int) model = db.ReferenceProperty(Model, collection_name='trim_levels') fuel_supply = db.StringProperty() gear_shift = db.StringProperty() gear_speeds = db.IntegerProperty() doors = db.IntegerProperty() seats = db.IntegerProperty() kw = db.IntegerProperty() def __repr__(self): return ('&lt;TrimLevel {0} instance at {1}&gt;' .format(self.etax_code, hex(id(self)))) </code></pre> <p><img src="https://i.stack.imgur.com/20ByD.png" alt="enter image description here"></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload