Graph Visualization Screencast | ArangoDB: Advanced Techniques
In the latest version of ArangoDB (1.4) we have introduced a new tab in the Admin Interface: Graphs. You can use this tab to view and modify your graphs stored in ArangoDB. In this screencast you will get a short introduction on how to use the new system.
ArangoDB Insert Performance Measurement: Techniques & Insights
Measuring ArangoDB insert performance ArangoDB offers a few APIs to insert documents. First, there is an HTTP API for bulk document imports. This API was already covered in another post. In general, the bulk import API should always be used when the task is to create many documents into a collection at once, as fast…
ArangoDB 1.4: Introducing Multiple Databases Feature
This version is deprecated. Download the new version of ArangoDB ArangoDB 1.4 provides support for multiple databases, a feature often requested by our users. Motivation In the old days, ArangoDB provided the option to create multiple collections, but all collections were created on the same level. As there was no hierarchy of collections, there was…
Elasticsearch Plugin: ArangoDB Integration | ArangoDB ’13
ArangoDB River Plugin for ElasticSearch ArangoDB offers now a plugin for automated data transfer from ArangoDB into ElasticSearch. If you want to benefit from ElasticSearch’s full text search capabilities for your ArangoDB document data, the easiest way to do so is to use this new plugin. Implementing the push approach, otherwise, would make it necessary…
ArangoDB 1.4: Replication Feature Overview | ArangoDB ’13
ArangoDB 1.4 comes with asynchronous master-slave replication. The new replication feature should make it much easier to create a backup from a running ArangoDB server. For example, a second ArangoDB instance can now be used as a slave by cloning all data from the master. The slave will be populated in the background while the…
ArangoDB 1.4.1 Available: Discover Enhancements | ArangoDB ’13
This version is deprecated. Download the new version of ArangoDB The bug-fix release 1.4.1 of ArangoDB is available for download. The fixed issues can be found in the changelog. It also fixes a problem with some of the build packages. The arangod daemon process was under some distributions started as root.
ArangoDB 1.4.0 on Raspberry Pi: Database Power for Small Devices
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…
ArangoDB 1.4.0 Released: Discover New Features | ArangoDB ’13
This version is deprecated. Download the new version of ArangoDB We are proud to announce that version 1.4.0 of ArangoDB has been released. The release is available for download here: https://www.arangodb.com/download Thanks to all contributors and testers for your enormous help! Features This release is a major milestone for us, because it contains two of…
ArangoDB 1.3.3 Release: Enhancements & Fixes | ArangoDB ’13
This version is deprecated. Download the new version of ArangoDB Packages for the bug-fix release 1.3.3 are now available from our web-site and from Homebrew. For a list of fixes checkout the CHANGELOG.
ArangoDB on Raspberry Pi: Database Power for Small Devices
During the ArangoDB Hackathon weekend, we tried to compile ArangoDB on a Raspberry PI using Raspbian as operating system. ArangoDB needs some external libraries in order to compile libev ICU V8 zlib Libev, ICU and zlib compiled without problems. Raspbian comes with a precompiled version of V8 – but it’s too old for ArangoDB. So,…