با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
این صفحه نحوه استفاده از یک تابع Cloud قابل فراخوان برای حذف داده ها را توضیح می دهد. هنگامی که این عملکرد را اجرا کردید، می توانید مستقیماً از برنامه تلفن همراه یا وب سایت خود با آن تماس بگیرید تا اسناد و مجموعه ها را به صورت بازگشتی حذف کنید. برای مثال، میتوانید از این راهحل برای دادن قابلیت حذف کل مجموعهها به کاربران منتخب استفاده کنید.
برای سایر روشهای حذف مجموعهها، به حذف دادهها مراجعه کنید.
راه حل: داده ها را با یک تابع Cloud قابل فراخوانی حذف کنید
حذف کل مجموعه ها از یک برنامه تلفن همراه با منابع محدود ممکن است به دلایل زیر دشوار باشد:
هیچ عملیاتی وجود ندارد که مجموعه ای را به صورت اتمی حذف کند.
حذف یک سند، اسناد موجود در زیر مجموعه های آن را حذف نمی کند.
اگر اسناد شما دارای مجموعههای فرعی پویا هستند، دانستن اینکه چه دادههایی را برای یک مسیر مشخص باید حذف کنید دشوار است.
حذف مجموعه ای از بیش از 500 سند به چندین عملیات نوشتن دسته ای یا صدها حذف منفرد نیاز دارد.
در بسیاری از برنامه ها، دادن مجوز به کاربران نهایی برای حذف کل مجموعه ها مناسب نیست.
خوشبختانه، شما می توانید یک Cloud Function قابل فراخوانی بنویسید تا حذف ایمن و کارآمد کل مجموعه ها یا درختان مجموعه را اجرا کنید. تابع Cloud زیر یک تابع قابل فراخوانی را پیاده سازی می کند که به این معنی است که می توان آن را مستقیماً از برنامه تلفن همراه یا وب سایت شما همانطور که برای یک عملکرد محلی فراخوانی می کنید، فراخوانی کرد.
برای استقرار تابع و امتحان نسخه نمایشی، کد نمونه را ببینید.
عملکرد ابر
تابع Cloud زیر مجموعه و همه فرزندان آن را حذف می کند.
به جای اجرای منطق حذف بازگشتی خود برای عملکرد ابری خود، می توانید از دستور firestore:delete در رابط خط فرمان Firebase (CLI) استفاده کنید. با استفاده از بسته firebase-tools می توانید هر تابعی از Firebase CLI را به برنامه Node.js خود وارد کنید.
Firebase CLI از Cloud Firestore REST API استفاده می کند تا تمام اسناد را در مسیر مشخص شده پیدا کند و آنها را به صورت جداگانه حذف کند. این پیاده سازی نیازی به دانش سلسله مراتب داده های خاص برنامه شما ندارد و حتی اسناد "یتیم" را که دیگر والد ندارند، پیدا و حذف می کند.
Node.js
/** * Initiate a recursive delete of documents at a given path. * * The calling user must be authenticated and have the custom "admin" attribute * set to true on the auth token. * * This delete is NOT an atomic operation and it's possible * that it may fail after only deleting some documents. * * @param {string} data.path the document or collection path to delete. */exports.recursiveDelete=functions.runWith({timeoutSeconds:540,memory:'2GB'}).https.onCall(async(data,context)=>{// Only allow admin users to execute this function.if(!(context.auth && context.auth.token && context.auth.token.admin)){thrownewfunctions.https.HttpsError('permission-denied','Must be an administrative user to initiate delete.');}constpath=data.path;console.log(`User ${context.auth.uid} has requested to delete path ${path}`);// Run a recursive delete on the given document or collection path.// The 'token' must be set in the functions config, and can be generated// at the command line by running 'firebase login:ci'.awaitfirebase_tools.firestore.delete(path,{project:process.env.GCLOUD_PROJECT,recursive:true,force:true,token:functions.config().fb.token});return{path:path};});
برای فراخوانی تابع، یک مرجع به تابع از Firebase SDK دریافت کنید و پارامترهای مورد نیاز را ارسال کنید:
وب
/** * Call the 'recursiveDelete' callable function with a path to initiate * a server-side delete. */functiondeleteAtPath(path){vardeleteFn=firebase.functions().httpsCallable('recursiveDelete');deleteFn({path:path}).then(function(result){logMessage('Delete success: '+JSON.stringify(result));}).catch(function(err){logMessage('Delete failed, see console,');console.warn(err);});}
توجه: این محصول در اهداف watchOS و App Clip موجود نیست.
// Snippet not yet written
هدف-C
توجه: این محصول در اهداف watchOS و App Clip موجود نیست.
// Snippet not yet written
Kotlin
/** * Call the 'recursiveDelete' callable function with a path to initiate * a server-side delete. */fundeleteAtPath(path:String){valdeleteFn=Firebase.functions.getHttpsCallable("recursiveDelete")deleteFn.call(hashMapOf("path"topath)).addOnSuccessListener{// Delete Success// ...}.addOnFailureListener{// Delete Failed// ...}}
/** * Call the 'recursiveDelete' callable function with a path to initiate * a server-side delete. */publicvoiddeleteAtPath(Stringpath){Map<String,Object>data=newHashMap<>();data.put("path",path);HttpsCallableReferencedeleteFn=FirebaseFunctions.getInstance().getHttpsCallable("recursiveDelete");deleteFn.call(data).addOnSuccessListener(newOnSuccessListener<HttpsCallableResult>(){@OverridepublicvoidonSuccess(HttpsCallableResulthttpsCallableResult){// Delete Success// ...}}).addOnFailureListener(newOnFailureListener(){@OverridepublicvoidonFailure(@NonNullExceptione){// Delete failed// ...}});}
با استفاده از SDK مشتری برای توابع ابری قابل فراخوانی، وضعیت احراز هویت کاربران و پارامتر path به طور یکپارچه به تابع راه دور منتقل می شود. هنگامی که عملکرد کامل شد، مشتری یک تماس با نتیجه یا یک استثنا دریافت می کند. برای آشنایی با نحوه فراخوانی یک عملکرد ابری از Android، Apple یا پلتفرم دیگر، مستندات را بخوانید.
محدودیت ها
راه حل نشان داده شده در بالا حذف مجموعه ها از یک تابع قابل فراخوانی را نشان می دهد، اما باید از محدودیت های زیر آگاه باشید:
سازگاری - کد بالا اسناد را یکی یکی حذف می کند. اگر در حین انجام عملیات حذف پرس و جو کنید، نتایج شما ممکن است وضعیت نیمه کاملی را نشان دهد که در آن فقط برخی از اسناد هدفمند حذف می شوند. همچنین هیچ تضمینی وجود ندارد که عملیات حذف به طور یکسان با موفقیت یا شکست مواجه شود، بنابراین برای رسیدگی به موارد حذف جزئی آماده باشید.
وقفه ها - عملکرد بالا به گونه ای پیکربندی شده است که حداکثر 540 ثانیه قبل از اتمام زمان اجرا شود. کد حذف در بهترین حالت می تواند 4000 سند در ثانیه را حذف کند. اگر نیاز به حذف بیش از 2,000,000 سند دارید، باید عملیات را روی سرور خود اجرا کنید تا زمان آن تمام نشود. برای مثالی از نحوه حذف مجموعه از سرور خود، به حذف مجموعه ها مراجعه کنید.
حذف تعداد زیادی از اسناد ممکن است باعث شود نمایشگر داده در کنسول Google Cloud به کندی بارگیری شود یا خطای مهلت زمانی بازگردد.
تاریخ آخرین بهروزرسانی 2025-08-29 بهوقت ساعت هماهنگ جهانی.
[null,null,["تاریخ آخرین بهروزرسانی 2025-08-29 بهوقت ساعت هماهنگ جهانی."],[],[],null,["\u003cbr /\u003e\n\nThe page describes how to use a callable Cloud Function\nto delete data. Once you deploy this function,\nyou can call it directly from your mobile app or website to\nrecursively delete documents and collections. For example, you can use this\nsolution to give select users the ability to delete entire collections.\n\nFor other ways to delete collections, see [Delete data](../manage-data/delete-data#collections).\n\nSolution: Delete data with a callable Cloud Function\n\nDeleting entire collections from a resource-limited mobile app can be difficult\nto implement for the following reasons:\n\n- There is no operation that atomically deletes a collection.\n- Deleting a document does not delete the documents in its subcollections.\n- If your documents have dynamic subcollections, it can be hard to know what data to delete for a given path.\n- Deleting a collection of more than 500 documents requires multiple batched write operations or hundreds of single deletes.\n- In many apps, it isn't appropriate to give end-users permission to delete entire collections.\n\nFortunately, you can write a [callable Cloud Function](https://firebase.google.com/docs/functions/callable)\nto run safe and performant deletes of entire collections or collection trees. The Cloud Function below implements a [callable function](https://firebase.google.com/docs/functions/callable)\nwhich means it can be called directly from your mobile app or website as you\nwould for a local function.\n\nTo deploy the function and try a demo, see the [sample code](https://github.com/firebase/snippets-node/tree/master/firestore/solution-deletes).\n\nCloud Function\n\nThe Cloud Function below deletes a collection and all of its descendants.\n\nInstead of implementing your own recursive delete logic for your Cloud Function,\nyou can take advantage of the `firestore:delete` command in the\nFirebase Command Line Interface (CLI). You can import any function of the\nFirebase CLI into your Node.js application using the `firebase-tools` package.\n| **Note:** Deleting data with the Firebase CLI incurs read and delete costs. For more information, see [Pricing](https://firebase.google.com/docs/firestore/pricing).\n\nThe Firebase CLI uses the Cloud Firestore REST API\nto find all documents under the specified path and delete them individually.\nThis implementation requires no knowledge of your app's specific data hierarchy\nand will even find and delete \"orphaned\" documents that no longer have a\nparent. \n\nNode.js \n\n```javascript\n/**\n * Initiate a recursive delete of documents at a given path.\n * \n * The calling user must be authenticated and have the custom \"admin\" attribute\n * set to true on the auth token.\n * \n * This delete is NOT an atomic operation and it's possible\n * that it may fail after only deleting some documents.\n * \n * @param {string} data.path the document or collection path to delete.\n */\nexports.recursiveDelete = functions\n .runWith({\n timeoutSeconds: 540,\n memory: '2GB'\n })\n .https.onCall(async (data, context) =\u003e {\n // Only allow admin users to execute this function.\n if (!(context.auth && context.auth.token && context.auth.token.admin)) {\n throw new functions.https.HttpsError(\n 'permission-denied',\n 'Must be an administrative user to initiate delete.'\n );\n }\n\n const path = data.path;\n console.log(\n `User ${context.auth.uid} has requested to delete path ${path}`\n );\n\n // Run a recursive delete on the given document or collection path.\n // The 'token' must be set in the functions config, and can be generated\n // at the command line by running 'firebase login:ci'.\n await firebase_tools.firestore\n .delete(path, {\n project: process.env.GCLOUD_PROJECT,\n recursive: true,\n force: true,\n token: functions.config().fb.token\n });\n\n return {\n path: path \n };\n });https://github.com/firebase/snippets-node/blob/f1869eeb97c2bbb713aff3deb5a67666da7bcb6b/firestore/solution-deletes/functions/index.js#L29-L73\n```\n\nClient Invocation\n\nTo call the function, get a reference to the function from the Firebase SDK\nand pass the required parameters: \n\nWeb \n\n```javascript\n/**\n * Call the 'recursiveDelete' callable function with a path to initiate\n * a server-side delete.\n */\nfunction deleteAtPath(path) {\n var deleteFn = firebase.functions().httpsCallable('recursiveDelete');\n deleteFn({ path: path })\n .then(function(result) {\n logMessage('Delete success: ' + JSON.stringify(result));\n })\n .catch(function(err) {\n logMessage('Delete failed, see console,');\n console.warn(err);\n });\n}https://github.com/firebase/snippets-node/blob/f1869eeb97c2bbb713aff3deb5a67666da7bcb6b/firestore/solution-deletes/public/index.js#L4-L18\n```\n\nSwift \n**Note:** This product is not available on watchOS and App Clip targets. \n\n```swift\n // Snippet not yet written\n \n```\n\nObjective-C \n**Note:** This product is not available on watchOS and App Clip targets. \n\n```objective-c\n // Snippet not yet written\n \n```\n\nKotlin \n\n```kotlin\n/**\n * Call the 'recursiveDelete' callable function with a path to initiate\n * a server-side delete.\n */\nfun deleteAtPath(path: String) {\n val deleteFn = Firebase.functions.getHttpsCallable(\"recursiveDelete\")\n deleteFn.call(hashMapOf(\"path\" to path))\n .addOnSuccessListener {\n // Delete Success\n // ...\n }\n .addOnFailureListener {\n // Delete Failed\n // ...\n }\n}https://github.com/firebase/snippets-android/blob/2c1b5c793165d90ca1d6079e27be03e746e2645e/firestore/app/src/main/java/com/google/example/firestore/kotlin/SolutionDeletes.kt#L9-L24\n```\n\nJava \n\n```java\n/**\n * Call the 'recursiveDelete' callable function with a path to initiate\n * a server-side delete.\n */\npublic void deleteAtPath(String path) {\n Map\u003cString, Object\u003e data = new HashMap\u003c\u003e();\n data.put(\"path\", path);\n\n HttpsCallableReference deleteFn =\n FirebaseFunctions.getInstance().getHttpsCallable(\"recursiveDelete\");\n deleteFn.call(data)\n .addOnSuccessListener(new OnSuccessListener\u003cHttpsCallableResult\u003e() {\n @Override\n public void onSuccess(HttpsCallableResult httpsCallableResult) {\n // Delete Success\n // ...\n }\n })\n .addOnFailureListener(new OnFailureListener() {\n @Override\n public void onFailure(@NonNull Exception e) {\n // Delete failed\n // ...\n }\n });\n}https://github.com/firebase/snippets-android/blob/2c1b5c793165d90ca1d6079e27be03e746e2645e/firestore/app/src/main/java/com/google/example/firestore/SolutionDeletes.java#L17-L42\n```\n\nBy using the client SDK for callable cloud functions, the users's authentication\nstate and the `path` parameter are seamlessly passed to the remote function.\nWhen the function completes, the client will receive a callback with the\nresult or an exception. To learn about how to call a cloud function from\nAndroid, Apple, or another platform, read [the documentation](https://firebase.google.com/docs/functions/callable#call_the_function).\n| **Warning:** Callable functions are not secure by default! Make sure that your callable functions check the user's authorization before performing any sensitive actions like writing or deleting documents.\n\nLimitations\n\nThe solution shown above demonstrates deleting collections from a callable\nfunction, but you should be aware of the following limitations:\n\n- **Consistency** - the code above deletes documents one at a time. If you query while there is an ongoing delete operation, your results may reflect a partially complete state where only some targeted documents are deleted. There is also no guarantee that the delete operations will succeed or fail uniformly, so be prepared to handle cases of partial deletion.\n- **Timeouts** - the function above is configured to run for a maximum of 540 seconds before timing out. The deletion code can delete 4000 documents per second in the best case. If you need to delete more than 2,000,000 documents, you should consider running the operation on your own server so that it does not time out. For an example of how to delete a collection from your own server, see [Delete collections](../manage-data/delete-data#collections).\n- Deleting a large number of documents might cause the data viewer in the Google Cloud console to load slowly or to return a timeout error."]]