ArangoDB Testing: Best Practices, Tools, and Tutorials https://arangodb.com/tag/testing/ The database for graph and beyond Tue, 06 Aug 2024 07:16:47 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.1 https://arangodb.com/wp-content/uploads/2023/08/cropped-favicon-32x32.png ArangoDB Testing: Best Practices, Tools, and Tutorials https://arangodb.com/tag/testing/ 32 32 When Exceptions Collide: Managing Errors in ArangoDB https://arangodb.com/2019/09/when-exceptions-collide/ https://arangodb.com/2019/09/when-exceptions-collide/#comments Thu, 19 Sep 2019 10:55:12 +0000 https://www.arangodb.com/?p=30928 Managing Exception Collisions | ArangoDB BlogThis is a story of an excursion to the bottom of a deep rabbit hole, where I discovered a foot gun in `gcc`’s `libgcc`. The investigation has cost me several days and I hope that by writing this up I can entertain others and save them the journey. TL;DR If…

The post When Exceptions Collide: Managing Errors in ArangoDB appeared first on ArangoDB.

]]>
https://arangodb.com/2019/09/when-exceptions-collide/feed/ 2
Performance Impact of Meltdown and Spectre V1 Patches on ArangoDB https://arangodb.com/2018/02/performance-impact-meltdown-spectre-v1-patches-arangodb/ https://arangodb.com/2018/02/performance-impact-meltdown-spectre-v1-patches-arangodb/#comments Tue, 13 Feb 2018 09:51:29 +0000 https://www.arangodb.com/?p=24606 To investigate the impact of the Meltdown and Spectre patches on the performance of ArangoDB, we ran benchmark tests with the two storage engines available in ArangoDB (MMFiles & RocksDB). We used the arangobench benchmark and test tool for these tests. The tests include 10 different test cases with changing test parameters like concurrency, batch…

The post Performance Impact of Meltdown and Spectre V1 Patches on ArangoDB appeared first on ArangoDB.

]]>
https://arangodb.com/2018/02/performance-impact-meltdown-spectre-v1-patches-arangodb/feed/ 1
Performance analysis with pyArango: Part III Measuring possible capacity with usage Scenarios https://arangodb.com/2017/10/performance-analysis-pyarango-usage-scenarios/ https://arangodb.com/2017/10/performance-analysis-pyarango-usage-scenarios/#respond Thu, 26 Oct 2017 10:40:29 +0000 https://www.arangodb.com/?p=23410 So you measured and tuned your system like described in the Part I and Part II of these blog post series. Now you want to get some figures how many end users your system will be able to serve. Therefore you define “scenarios” which will be typical for what your users do. One such a…

The post Performance analysis with pyArango: Part III Measuring possible capacity with usage Scenarios appeared first on ArangoDB.

]]>
https://arangodb.com/2017/10/performance-analysis-pyarango-usage-scenarios/feed/ 0
The Great AQL Shootout: ArangoDB 2.5 vs 2.6 Comparison https://arangodb.com/2015/06/the-great-aql-shootout-arangodb-2-5-vs-2-6/ https://arangodb.com/2015/06/the-great-aql-shootout-arangodb-2-5-vs-2-6/#respond Tue, 30 Jun 2015 15:54:56 +0000 http://www.arangodb.com/?p=8078 For the ArangoDB 2.6 release from last week we’ve put some performance tests together. The tests will compare the AQL query execution times in 2.5 and 2.6. The results look quite promising: 2.6 outperformed 2.5 for all tested queries, mostly by factors of 2 to 5. A few dedicated AQL features in the tests got…

The post The Great AQL Shootout: ArangoDB 2.5 vs 2.6 Comparison appeared first on ArangoDB.

]]>
https://arangodb.com/2015/06/the-great-aql-shootout-arangodb-2-5-vs-2-6/feed/ 0
Testing Foxx with Mocha: ArangoDB Development Insights https://arangodb.com/2015/04/testing-foxx-mocha/ https://arangodb.com/2015/04/testing-foxx-mocha/#comments Wed, 15 Apr 2015 11:18:26 +0000 http://www.arangodb.com/?p=7290 Some of the most frequent questions by new programmers learning Foxx have been about testing. While the HTTP API can easily be tested with any HTTP client and any JavaScript code that can be isolated from the ArangoDB APIs could be tested in similar environments like Node.js or io.js, it was all but impossible to…

The post Testing Foxx with Mocha: ArangoDB Development Insights appeared first on ArangoDB.

]]>
https://arangodb.com/2015/04/testing-foxx-mocha/feed/ 1
Comparison: Lockless programming with atomics in C++ 11 vs. mutex and RW-locks https://arangodb.com/2015/02/comparing-atomic-mutex-rwlocks/ https://arangodb.com/2015/02/comparing-atomic-mutex-rwlocks/#comments Mon, 16 Feb 2015 16:45:23 +0000 http://www.arangodb.com/?p=6186 ArangoDB is multithreaded and able to use several CPU-cores at once. Because of that access to common data structures to these threads have to be protected from concurrent access. ArangoDB currently uses mutexes, spinlocks and RW-locks for that. With the ongoing development of the MVCC the number of situations where protected access is needed grows…

The post Comparison: Lockless programming with atomics in C++ 11 vs. mutex and RW-locks appeared first on ArangoDB.

]]>
https://arangodb.com/2015/02/comparing-atomic-mutex-rwlocks/feed/ 15
ArangoDB 2.3 Beta 2: Available for Testing | ArangoDB Blog https://arangodb.com/2014/11/arangodb-2-3-beta-2-available-testing/ https://arangodb.com/2014/11/arangodb-2-3-beta-2-available-testing/#respond Mon, 10 Nov 2014 13:21:29 +0000 http://www.arangodb.com/?p=5140 This version is deprecated. Download the new version of ArangoDB A new beta release is available for testing. Please note that there are issues with the keys generated by the OBS. We will sort this out as fast as possible. Currently you simple have to trust the keys during install. This beta release contains various…

The post ArangoDB 2.3 Beta 2: Available for Testing | ArangoDB Blog appeared first on ArangoDB.

]]>
https://arangodb.com/2014/11/arangodb-2-3-beta-2-available-testing/feed/ 0
Setting Up Test Data: ArangoDB Tutorial & Best Practices https://arangodb.com/2014/11/setting-test-data/ https://arangodb.com/2014/11/setting-test-data/#comments Wed, 05 Nov 2014 10:38:31 +0000 http://www.arangodb.com/?p=5104 Today I was asked to look at code that was supposed to read data from a MySQL data source, process it and then import it into ArangoDB. To run and debug the code I had to have some MySQL data source. So I thought I’d quickly set up a simple example table with a few…

The post Setting Up Test Data: ArangoDB Tutorial & Best Practices appeared first on ArangoDB.

]]>
https://arangodb.com/2014/11/setting-test-data/feed/ 2
Hate OpenSSL? Get Started with LibreSSL | ArangoDB Blog https://arangodb.com/2014/07/started-hate-openssl/ https://arangodb.com/2014/07/started-hate-openssl/#comments Tue, 08 Jul 2014 10:40:26 +0000 http://www.arangodb.com/?p=3848 ArangoDB has an HTTP interface to talk to its clients. Sometimes people want to secure this connection and use SSL or TLS instead. That is where we are using OpenSSL. It provides all the methods to implemented HTTPS on top of an HTTP server. It worked well and the corresponding code is only some 300…

The post Hate OpenSSL? Get Started with LibreSSL | ArangoDB Blog appeared first on ArangoDB.

]]>
https://arangodb.com/2014/07/started-hate-openssl/feed/ 1
ArangoDB 1.4.0 on Raspberry Pi: Database Power for Small Devices https://arangodb.com/2013/11/arangodb-1-4-0-raspberry-pi/ https://arangodb.com/2013/11/arangodb-1-4-0-raspberry-pi/#comments Thu, 07 Nov 2013 16:06:47 +0000 http://www.arangodb.com/?p=2932 This is a follow to the post about ArangoDB 1.3 running on Raspberry PI. With the release of ArangoDB 1.4.0 I now tried to compile it again. As all patches required for 1.3 are part of 1.4.0 it is now much easier. pi> sudo apt-get install libreadline6 libreadline6-dev libssl-dev pi> git clone -b v1.4.0 https://github.com/triAGENS/ArangoDB…

The post ArangoDB 1.4.0 on Raspberry Pi: Database Power for Small Devices appeared first on ArangoDB.

]]>
https://arangodb.com/2013/11/arangodb-1-4-0-raspberry-pi/feed/ 2