我想輸入成千上萬的記錄到Arango。我試圖使用描述於:https://docs.arangodb.com/3.0/HTTP/BatchRequest/index.html的Arango的批量/批量導入功能來執行PUT和POST請求的組合,以插入新記錄,或者如果它們已經存在,則更新現有記錄。我的最終解決方案需要從Python腳本運行,可能使用pyArango。我創建了一個樣本HTTP請求 POST
我可以得到一個數據庫對象的代碼: import pyArango.database as DAT
db = DAT.Database(connection, dbName)
,並根據該文件,我可以得到一個集合的代碼: import pyArango.collection as COL
collection = COL.Collection(database, jsonData)
我如何