web-dev-qa-db-ja.com

Cosmos DB-ドキュメントの削除

Cosmos DBから個々のレコードを削除するにはどうすればよいですか?

SQL構文を使用して選択できます。

SELECT *
FROM collection1
WHERE (collection1._ts > 0)

そして、すべてのドキュメント(行に類似?)が十分に返されることを確認してください

ただし、削除しようとするとこれは機能しません

DELETE
FROM collection1
WHERE (collection1._ts > 0)

どうすればそれを達成できますか?

16
Ben Mayo

DocumentDB APIのSQLは、クエリ専用です。つまり、SELECTまたはUPDATEではなく、DELETEのみを提供します。

これらの操作は完全にサポートされていますが、REST(またはSDK)呼び出しが必要です。たとえば、.netでは、DeleteDocumentAsync()またはReplaceDocumentAsync()を呼び出します。 、およびnode.jsでは、これはdeleteDocument()またはreplaceDocument()の呼び出しになります。

特定のシナリオでは、SELECTを実行して削除するドキュメントを特定し、ドキュメントごとに1つの「削除」呼び出しを行うことができます(または、効率とトランザクション性のために、削除するドキュメントの配列を保存された手順)。

26
David Makogon

考慮すべきもう1つのオプションは、存続時間(TTL)です。コレクションに対してこれをオンにしてから、ドキュメントの有効期限を設定できます。ドキュメントは、期限が切れると自動的にクリーンアップされます。

5
Morrolan

次のコードを使用してストアドプロシージャを作成します。

/**
 * A Cosmos DB stored procedure that bulk deletes documents for a given query.
 * Note: You may need to execute this stored procedure multiple times (depending whether the stored procedure is able to delete every document within the execution timeout limit).
 *
 * @function
 * @param {string} query - A query that provides the documents to be deleted (e.g. "SELECT c._self FROM c WHERE c.founded_year = 2008"). Note: For best performance, reduce the # of properties returned per document in the query to only what's required (e.g. prefer SELECT c._self over SELECT * )
 * @returns {Object.<number, boolean>} Returns an object with the two properties:
 *   deleted - contains a count of documents deleted
 *   continuation - a boolean whether you should execute the stored procedure again (true if there are more documents to delete; false otherwise).
 */
function bulkDeleteStoredProcedure(query) {
    var collection = getContext().getCollection();
    var collectionLink = collection.getSelfLink();
    var response = getContext().getResponse();
    var responseBody = {
        deleted: 0,
        continuation: true
    };

    // Validate input.
    if (!query) throw new Error("The query is undefined or null.");

    tryQueryAndDelete();

    // Recursively runs the query w/ support for continuation tokens.
    // Calls tryDelete(documents) as soon as the query returns documents.
    function tryQueryAndDelete(continuation) {
        var requestOptions = {continuation: continuation};

        var isAccepted = collection.queryDocuments(collectionLink, query, requestOptions, function (err, retrievedDocs, responseOptions) {
            if (err) throw err;

            if (retrievedDocs.length > 0) {
                // Begin deleting documents as soon as documents are returned form the query results.
                // tryDelete() resumes querying after deleting; no need to page through continuation tokens.
                //  - this is to prioritize writes over reads given timeout constraints.
                tryDelete(retrievedDocs);
            } else if (responseOptions.continuation) {
                // Else if the query came back empty, but with a continuation token; repeat the query w/ the token.
                tryQueryAndDelete(responseOptions.continuation);
            } else {
                // Else if there are no more documents and no continuation token - we are finished deleting documents.
                responseBody.continuation = false;
                response.setBody(responseBody);
            }
        });

        // If we hit execution bounds - return continuation: true.
        if (!isAccepted) {
            response.setBody(responseBody);
        }
    }

    // Recursively deletes documents passed in as an array argument.
    // Attempts to query for more on empty array.
    function tryDelete(documents) {
        if (documents.length > 0) {
            // Delete the first document in the array.
            var isAccepted = collection.deleteDocument(documents[0]._self, {}, function (err, responseOptions) {
                if (err) throw err;

                responseBody.deleted++;
                documents.shift();
                // Delete the next document in the array.
                tryDelete(documents);
            });

            // If we hit execution bounds - return continuation: true.
            if (!isAccepted) {
                response.setBody(responseBody);
            }
        } else {
            // If the document array is empty, query for more documents.
            tryQueryAndDelete();
        }
    }
}

そして、パーティションキー(例:null)とクエリを使用して実行し、ドキュメントを選択します(例:すべてを削除するにはSELECT c._self FROM c)。

に基づく Query Explorerを介した条件に基づいてCosmosDBからドキュメントを削除する

0
Antón R. Yuste