开发者

Does bigtable need locking?

I am using task queue for certain data updation in GAE.

My queue.xml file look like below

  <queue> 
    <name>data-processing</name> 
    <rate>20/s</rate> 
  </queue> 

My queue processing servlet decrease credit by 1 for every task. While processing it need to check for credit availability and proceed further only if credit is available.

The credit is stored in a table and it get updated when a task is completed.

I see the tasks as threads an开发者_StackOverflowd worried about synchonization problem.

what if 2 or more tasks query/update credit table simultaniously? Do i need to create some locking mechenism? If yes then how?


Yes you do need synchronization. You'll typically update the credits in a read-modify-write scheme: first read the available credits, subtract one, and write the remaining credits back. If two tasks do this at the same time, one may overwrite the result of the other leading to an incorrect credit count being stored. (Unless there's an atomic instruction for this, which do exist for Memcache, but not for the Data Store I believe).

You can use transactions to solve this, see http://code.google.com/appengine/docs/java/datastore/transactions.html


The App Engine task queue takes care of accounting for execution rate itself. You don't need to do anything other than configure queue.xml as you already have.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜