为什么我的所有文档都没有在Firestore中更新?

问题描述 投票:0回答:1

我正在使用python尝试向firestore集合中的750多个文档添加一个字段,但在尝试这样做时,只有我的前55个文档得到更新。我假设发生这种情况是因为firestore写入限制,但实际上并没有得到原因。

收集结构

enter image description here

注意:actividades是一个大小约为20个元素的数组,每个元素只有3个属性。

enter image description here

import firebase_admin
from firebase_admin import credentials, firestore

cred = credentials.Certificate('avancesAccountKey.json')
default_app = firebase_admin.initialize_app(cred)
db = firestore.client()

count = 0
avances = db.collection('avances').get()
for e in avances:  
    db.collection('avances').document(e.id).update({
        'vigente': False
    })
    count += 1

print(count) # count is 55 when trying to update, 757 otherwise

究竟发生了什么以及如何解决这个问题?

python firebase google-cloud-firestore firebase-admin
1个回答
1
投票

在迭代它时,不应该改变集合。相反,获取文档引用然后迭代。

count = 0
documents = [snapshot.reference for snapshot in db.collection('avances').get()]
for document in documents:
    document.update({u'vigente': False})
    count += 1

参考:https://github.com/GoogleCloudPlatform/google-cloud-python/issues/6033

更新:看起来Firestore python客户端确实有一个20 second timeout for the generator returned from a query

© www.soinside.com 2019 - 2024. All rights reserved.