如何删除firebase中的大型节点

我有一个Firebase子节点,其中包含大约15,000,000个子对象,总大小约为8 GB.

例如数据结构:

firebase.com/childNode/$pushKey

each $pushKey contains a small flat dictionary: 
{a: 1.0, b: 2.0, c: 3.0}

我想尽可能有效和简单地删除这些数据.怎么样?

我试过的:
我的第一次尝试是一个put请求:

PUT firebase.com/childNode.json?auth=FIRE_SECRET
data-raw: null

response: {
“error”: “Data requested exceeds the maximum size that can be accessed with a single request. Contact support@firebase.com for help.”
}

所以这不起作用,让我们做一个限制请求:

PUT firebase.com/childNode.json?auth=FIRE_SECRET&orderBy="$key"&limitToFirst=100
data-raw: null

response: {
“error”: “Querying related parameters not supported on this request type”
}

到目前为止没有运气:(如何编写一个脚本,将获得第一个X数量的键,然后创建一个补丁请求,每个值设置为null?

GET firebase.com/childNode.json?auth=FIRE_SECRET&shallow=true&orderBy="$key"&limitToLast=100

{
“error” : “Mixing ‘shallow’ and querying parameters is not supported”
}

这个真的不容易吗?我可以删除浅层需求并获取密钥,然后完成脚本.我只是希望有一种更简单/更有效的方式???

我尝试的另一件事是创建一个侦听childAdded的节点脚本,然后直接尝试删除这些子节点?

ref.authWithCustomToken(AUTH_TOKEN, function(error, authData) {
  if (error) {console.log("Login Failed!", error)}
  if (!error) {console.log("Login Succeeded!", authData)}

  ref.child("childNode").on("child_added", function(snap) {
    console.log(`found: ${snap.key()}`)
    ref.child("childNode").child(snap.key()).remove( function(err) {
      if (!err) {console.log(`deleted: ${snap.key()}`)}
    })
  })
})

这个脚本现在实际挂起,但早些时候我确实收到了一些事情,比如来自firebase的最大堆栈限制警告.我知道这不是一个firebase问题,但我没有看到任何特别简单的方法来解决这个问题.

最佳答案 下载一棵浅树,只会下载密钥.因此,您可以下载所有密钥,而不是要求服务器订购和限制.

然后,您可以在客户端订购和限制它,并批量发送删除请求到Firebase.

您可以使用此脚本获取灵感:https://gist.github.com/wilhuff/b78e7391396e09f6c614

点赞