3

是否可以使用其REST API向Google Cloud Datastore發送記錄並將任務記錄到App Engine外部的TaskQueue?Google任務隊列JSON API事務

基本上實現了this(下面),但是在Container Engine中並且沒有使用高級別App Engine特定的API。

DatastoreService ds = DatastoreServiceFactory.getDatastoreService(); 
Queue queue = QueueFactory.getDefaultQueue(); 
try { 
    Transaction txn = ds.beginTransaction(); 

    // ... 

    queue.add(TaskOptions.Builder.withUrl("/path/to/my/worker")); 

    // ... 
    txn.commit(); 
} catch (DatastoreFailureException e) { 
} 

回答

2

這當前不可能使用Cloud Datastore API。