コード例 #1
0
ファイル: tests.py プロジェクト: dilipvamsi/pyArango
 def deleteManyUsersBulk(self, collection, batchSize, skip, docs):
     count = 0
     with BulkOperation(collection, batchSize=batchSize) as col:
         i = 0;
         while i < len(docs):
             docs[i].delete()
             i += skip
             count += 1
     return count
コード例 #2
0
ファイル: tests.py プロジェクト: dilipvamsi/pyArango
    def test_bulk_operations(self):
        (collection, docs) = self.createManyUsersBulk(55, 17)
        self.assertEqual(collection.count(), len(docs))
        newCount = self.patchManyUsersBulk(collection, 7, 3, docs)
        aql = "let length = (FOR c IN @@col FILTER c.xtrue == false RETURN 1) RETURN count(length)"
        q = self.db.AQLQuery(aql, rawResults = True, bindVars = {"@col": collection.name})
        
        self.assertEqual(len(q.result), 1)
        self.assertEqual(q[0], newCount)
        deleteCount = self.deleteManyUsersBulk(collection, 9, 4, docs)
        self.assertEqual(len(docs) - deleteCount, collection.count())

        # mixing bulk operations not supported, should throw:
        with BulkOperation(collection, batchSize=99) as col:
            doc = col.createDocument()
            doc.save()
            try:
                docs[2]['something'] = 'abc'
                docs[2].patch()
                self.fail("should have raised while patching")
            except UpdateError:
                pass
            try:
                docs[2].delete()
                self.fail("should have raised while deleting")
            except UpdateError:
                pass
        with BulkOperation(collection, batchSize=99) as col:
            docs[1].delete()
            try:
                docs[2]['something'] = 'abc'
                docs[2].patch()
                self.fail("should have raised")
            except UpdateError:
                pass
            try:
                doc = col.createDocument()
                doc.save()
                self.fail("should have raised")
            except UpdateError:
                pass

        collection.delete()
コード例 #3
0
ファイル: tests.py プロジェクト: dilipvamsi/pyArango
 def patchManyUsersBulk(self, collection, batchSize, skip, docs):
     count = 0
     with BulkOperation(collection, batchSize=batchSize) as col:
         i = 0;
         while i < len(docs):
             docs[i]["species"] = "robot"
             docs[i]["xtrue"] = False
             docs[i].patch()
             i += skip
             count += 1
     return count
コード例 #4
0
 def run(self):
     with BulkOperation(self.collection, batchSize=self.batchSize) as col:
         while True:
             try:
                 col.createDocument(self.queue.get(
                     block=True, timeout=10)).save(overwriteMode="ignore",
                                                   waitForSync=False)
             except queue.Empty:
                 break
             except Exception as e:
                 pass
コード例 #5
0
ファイル: tests.py プロジェクト: dilipvamsi/pyArango
 def createManyUsersBulk(self, nbUsers, batchSize):
     docs = [];
     collection = self.db.createCollection(name = "users")
     with BulkOperation(collection, batchSize=batchSize) as col:
         for i in range(nbUsers):
             doc = col.createDocument()
             docs.append(doc)
             doc["name"] = "Tesla-%d" % i
             doc["number"] = i
             doc["species"] = "human"
             doc.save()
     return (collection, docs)
コード例 #6
0
    relcol = db.createCollection(className='Edges', name="relations")
except:
    print("Relations Collection already exists")

collection = db["users"]
collection.truncate()

relcol = db["relations"]
relcol.truncate()

startTime = time.time()
nbUsers = 100000
batchSize = 500

print("Saving Users: ")
with BulkOperation(collection, batchSize=batchSize) as col:
    for i in range(nbUsers):
        if i % 1000 == 0:
            print("->", i, "saved")
        try:
            createUsers(col, i)
        except Exception as e:
            print("died at", i)
            raise e

i = 0
with BulkOperation(relcol, batchSize=batchSize) as col:
    for userA in allUsers:
        i += 1
        try:
            otherUser = random.choice(allUsers)