0
votes
1answer
50 views

Google App Engine & JDO: Transaction is not written to the datastore

We are using GAE with JDO2.3 and have this code: public void submit_job (HttpSession session, BlobKey blobKey) throws Exception { // START TRANSACTION PersistenceManager pm = ...
0
votes
0answers
31 views

Can I use @Transactional from Guice with Google App Engine's Datastore?

Can I do something like this? Would it still be a transaction even though I did not use ds.get(tx, key) and ds.put(tx, key)? public class MyClass { private final DatastoreService ds; ...
0
votes
2answers
65 views

Why aren't entities of the same kind implicitly in the same entity group

Why aren't entities of the same kind implicitly in the same entity group when they don't have a parent (they are root entities)? Does that mean if I want to do for example batch operations of writing ...
0
votes
1answer
101 views

performance implications of transactions on large entity groups (python, NDB, Master/Slave)

I have several tens of thousands of related small entities (NDB atop of Master-Slave, will have to move to HRD one day..), which I'd like to put in the same entity group to enable transactions. Small ...
0
votes
1answer
148 views

XG transaction isolation fails during test that generates unique sequence number (Objectify4)

I have to generate a unique invoice number in a XG transaction that includes the following 3 entity groups in my data model : (toplevel) ContactRoot <-- (ancestor) <--- Contact : contact must ...
0
votes
3answers
121 views

Is there a way to implement long-running transactions in App Engine?

I have a function that makes many HTTP requests to collect data and stores it in the datastore. All calls must succeed or else everything must be rolled back. The length of time to execute approaches ...
0
votes
1answer
68 views

TypeError: 'TransactionOptions' object is not callable

'TransactionOptions' object is not callable Traceback (most recent call last): File "/base/python27_runtime/python27_lib/versions/third_party/webapp2-2.3/webapp2.py", line 1511, in __call__ ...
0
votes
1answer
143 views

Nested transactions on google app engine datastore 3

Question is: does ds.put(employee) happen in transaction? Or does the outer transaction get erased/overriden by the transaction in saveRecord(..)? Once error is thrown at line datastore.put(..) at ...
0
votes
1answer
224 views

Nested transaction on google app engine datastore

If I want all deletes execute all-or-nothing. If nothing changed. Will the group of deletes be atomic? If I remove outer transaction, will something change? If I remove only inner transaction, will ...
1
vote
1answer
409 views

BadRequestError: Only ancestor queries are allowed inside transactions

from google.appengine.ext import db class Parent(db.Model): app_id = db.StringProperty() class Child(db.Model): app_id = db.ReferenceProperty(Parent,collection_name='children') type = ...
0
votes
2answers
214 views

Sharded counters within transaction

Taken from this artice on Sharding Counters, the following function demonstrates how a random shard is selected before it is incremented. This happens within a transaction. def increment(): ...
0
votes
1answer
199 views

Google AppEngine: understanding datastore transactions

I've recently faced this annoying problem with GAE inability to handle more than one entity group in a single transaction. Java pseudo-code below: public void doit(EntityManager em, long id) { ...
0
votes
0answers
59 views

running transactions in db.Model subclassed put

I'm trying to create a google app engine data model with the following attributes: store string, value pair into BigTable if string, value pair DOES NOT exist, create the record if string, value ...
3
votes
1answer
522 views

Spring transactions with Objectify and Appengine

I am using appengine with Objectify to access my datasource. I use Spring for my business layer. In order to play with data I use the objectify-appengine-spring factory. I would like to use ...
2
votes
2answers
1k views

How many objects is “too many” for in a single transaction to Google's DataStore (High Replication)?

I have following entity (non-relevant fields/methods are removed). public class HitsStatsTotalDO { @Id transient private Long targetId; public Key<HitsStatsTotalDO> createKey() ...
0
votes
1answer
146 views

Is a re-tried transation after transaction collision safe?

Can a failed — with "transaction collision" — write operation to an entity overwrite changes made to the same entity on the other successfully committed transaction? I understand that transactional ...
2
votes
2answers
189 views

How wide is transaction isolation in Google App Engine?

Where — on what level — the locking and collisions occur in transactional operations on the same entity group? At root? At some common, wide enough parent? It's not clear to me what is an "Entity ...
0
votes
2answers
121 views

GAE Lookup Table Incompatible with Transactions?

My Python High Replication Datastore application requires a large lookup table of between 100,000 and 1,000,000 entries. I need to be able to supply a code to some method that will return the value ...
0
votes
1answer
26 views

What exactly does “With a transaction, the second attempt fails atomically” mean?

I'm using GAE and I've found the documentation about how to use transactions to handle two threads attempting to create an entity with the same key. Unfortunately, the documentation isn't clear about ...
1
vote
1answer
162 views

Providing arguments to transactions in Datastore Plus (NDB)

I'm having trouble working out how to pass in arguments into transactions when using Datastore Plus. Could someone please rewrite this regular-datastore example code? from google.appengine.ext ...
0
votes
4answers
230 views

Threadsafe name reservation on appengine

I'm creating and editing groups. I need to check to see if a group name is already in use before creating a new group with that name or changing an existing group name to that name. The problem is ...
1
vote
1answer
102 views

Find the flaws! Performing a long task reliably with the task queue

I'm making a gradebook on google app engine. I keep track of each student's grade per grading period. The grading periods can overlap. Since I may display hundreds of these grades at a time, I ...
0
votes
1answer
353 views

Does db.run_in_transaction return anything?

I'm mimicking a transaction example I found in the Taggable Mixin, but it's not behaving in the same manner. def txn(): // statements omitted for brevity blog_index.put() new_post = ...
2
votes
1answer
41 views

Establishing entity groups while maintaining access to Long ids

I'm using the appengine datastore, and all of my entities have Long ids as their PrimaryKey. I use those ids to communicate with the client, since the full-fledged Keys take much more bandwidth to ...
0
votes
2answers
226 views

GAE update different fields of the same entity

UserA and UserB are changing objectA.filedA objectA.filedB respectively and at the same time. Because they are not changing the same field one might think that there are no overlaps. Is that true? or ...
5
votes
5answers
321 views

On the google app engine, how do I implement database Transactions?

I know that the way to handle DB transactionality on the app engine is to give different entities the same Parent(Entity Group) and to use db.run_in_transaction. However, assume that I am not able ...
3
votes
3answers
265 views

datastore transaction restrictions

in my google app application, whenever a user purchases a number of contracts, these events are executed (simplified for clarity): user.cash is decreased user.contracts is increased by the number ...