Why would a Cosmos stored procedure run differently when called from browser vs. called from Java?
我在 Cosmos DB 模拟器中有一个存储过程。此过程所做的只是:删除
1
2 3 4 5 |
并得到如下结果:
这太疯狂了。我正在从浏览器运行这个存储过程并得到这个结果:
因此,当存储过程由 Java 运行时,它被调用但没有完成工作。什么都没删除……为什么会这样?
下面是存储过程
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
function testStoredProcedure( ) { var collection = getContext().getCollection(); var collectionLink = collection.getSelfLink(); var response = getContext().getResponse(); var responseBody = { deleted: 0, continuation: true }; var query = ‘SELECT * FROM mycollection ‘; // Validate input. tryQueryAndDelete(); // Recursively runs the query w/ support for continuation tokens. var isAccepted = collection.queryDocuments(collectionLink, query, requestOptions, function (err, retrievedDocs, responseOptions) { if (retrievedDocs.length > 0) { // If we hit execution bounds – return continuation: true. // Recursively deletes documents passed in as an array argument. responseBody.deleted++; // If we hit execution bounds – return continuation: true. |
对于分区容器,在执行存储过程时,必须在请求选项中提供分区键值。存储过程始终限定为分区键。具有不同分区键值的项目对存储过程不可见。这也适用于触发器。
您在 requestOptions 中将分区键设置为”null”。”null”是一个有效的分区键值。看起来”null”不是您的 10 个文档的分区键值。
谦虚转贴@Jay Gong 回答 如何指定NONE 分区键来删除Document DB java SDK 中的文档?
也许它会对某人有所帮助。放:
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/267587.html