5

我正在使用python-arango作为 ArangoDB 的驱动程序,似乎没有UPSERT接口。

我打算用 python-arango标记它,但我没有足够的代表来创建新的 tags

我正在使用如下所示的功能进行管理,但我想知道是否有更好的方法来做到这一点?

def upsert_document(collection, document, get_existing=False):
    """Upserts given document to a collection. Assumes the _key field is already set in the document dictionary."""
    try:
        # Add insert_time to document
        document.update(insert_time=datetime.now().timestamp())
        id_rev_key = collection.insert(document)
        return document if get_existing else id_rev_key
    except db_exception.DocumentInsertError as e:
        if e.error_code == 1210:
            # Key already exists in collection
            id_rev_key = collection.update(document)
            return collection.get(document.get('_key')) if get_existing else id_rev_key
    logging.error('Could not save document {}/{}'.format(collection.name, document.get('_key')))

请注意,在我的情况下,我确保所有文档_key在插入之前和之前都有一个值,因此我可以假设这成立。如果其他人想使用它,请相应地修改。

编辑:删除了_id字段的使用,因为这对问题不是必需的。

4

2 回答 2

2

使用的重点upsert是保存应用程序的数据库往返,这就是该try/except方法不太好的原因。

但是,目前ArangoDB HTTP-API不提供 upserts,因此 python-arango 无法为您提供 API。

您应该改为使用AQL 查询来更新您的文档以实现此目的:

UPSERT { name: "test" }
    INSERT { name: "test" }
    UPDATE { } IN users
LET opType = IS_NULL(OLD) ? "insert" : "update"
RETURN { _key: NEW._key, type: opType }

通过python-arango 的db.aql.execute接口

于 2019-02-26T14:06:45.920 回答
0

你不能用这样的东西吗?

try:
    collection.update({'_key': xxx, ...})
except db_exception.DocumentInsertError as e:
    document.insert({'_key': xxx, ...})
于 2017-09-27T22:26:18.977 回答