ArangoDB 3.12 Product Release Announcement! Read the blog for details. Read Blog

Vector-5

Weekly Newsletter, January 8, 2015

Estimated reading time: 3 minutes

The ArangoDB team is back from holidays, wishing you and your families a happy New Year 2015. This year will become a good one for multi-model databases – like ArangoDB – according to analysts, quoted in the NoSQL trends 2015 article from Dataversity. This newsletter covers the last 3 weeks, including the beta of ArangoDB 2.4, build on christmas eve.

ArangoDB Releases

We released the ArangoDB 2.4 beta. You can find a full list of changes in our change-log. Here are some of the changes:

(more…)

Sending Mails from Foxx in the background via SendGrid

Estimated reading time: 2 minutes

ArangoDB Foxx allows defining job queues that let you perform slow or expensive actions asynchronously.

These queues can be used to send emails, call external APIs or perform other actions that you do not want to perform directly or want to retry on failure. Let’s say you want to send out an email every time you check off an item in your Foxx todo app and you want to use an external transactional email service to do that. Go to

(more…)

Crawling GITHUB with Promises

Estimated reading time: 3 minutes

The new Javascript driver no longer imposes any promises implementation. It follows the standard callback pattern with a callback using err and res.

I wanted to give the new driver a try. A github crawler seemed like a good side-project, especially because the node-github driver follows the same conventions as the Javascript driver.

There are a lot of promise libraries out there. The most popular one – according to NPM – was promises. It should be possible to use any implementation. Therefore I used this one.

The following source code can be found on github.

(more…)

Weekly Newsletter, December 18, 2014

Estimated reading time: 2 minutes

ArangoDB Releases

We released ArangoDB 2.3.3 – a maintenance release with some bug fixes. Here are some of the fixes:

  • fixed error handling in instantiation of distributed AQL queries
  • issue #1185: parse non-fractional JSON numbers with exponent (e.g. 4e-261)
  • issue #1159: allow –server.request-timeout and –server.connect-timeout of 0

ArangoDB related (Drivers & more)

  • aqb 1.4.1: ArangoDB query builder (npm) fluent JS API by Alan Plum
  • guacamole 0.4.0 (rubygems.org): An ODM for ArangoDB by Dirk Breuer and Lucas Dohmen
  • Travesedo: J Patrick Davenport started a new Clojure driver for ArangoDB
  • ..
(more…)

Getting started with Guacamole on Rails

Estimated reading time: 14 minutes

Please note that parts of this article will not work out of the box with ArangoDB 3.0

Using ArangoDB as your main database is a good idea for various reasons. What I personally like about it is its query language AQL. I used relational databases in the past as my main database and writing statements in a language similar to SQL was a great way for me to get started with ArangoDB.

Having a HTTP based interface (like all the cool kids these days) we could build applications running solely on top of our database. That’s rather nice but then we would have to take care of all the gory details. So..

(more…)

Bulk inserts in MongoDB, CouchDB, and ArangoDB (Dec. 2014)

Estimated reading time: 3 minutes

More than two years ago, we compared the bulk insert performance of ArangoDB, CouchDB and MongoDB in a blog post.

The original blog post dates back to the times of ArangoDB 1.1-alpha. We have been asked several times to re-run the tests with the current versions of the databases. So here we go.

Test setup

We have again used the PHP bulk insert benchmark tool to generate results for MongoDB, CouchDB, and ArangoDB. The benchmark tool uses the HTTP bulk documents APIs for CouchDB and ArangoDB, and the binary protocol for MongoDB (as MongoDB does not have an HTTP bulk API). The benchmark tool was..

(more…)

ArangoDB 2.3.3

Estimated reading time: 0 minutes

This version is deprecated. Download the new version of ArangoDB

(more…)

ArangoDB Query Builder

Estimated reading time: 3 minutes

The most powerful way to query your data in ArangoDB is by using ArangoDB’s own query language, AQL. In the past using AQL in your JavaScript code sadly would often require writing long, unwieldy strings. This made writing complex queries difficult and could often lead to subtle syntax errors or mistakes.

The ArangoDB Query Builder (AQB) is a JavaScript node packaged module that provides a fluid API for writing AQL queries in plain JavaScript. And if you’re using ArangoDB 2.3, the aqb module is already available to your Foxx applications. Let’s say we want to perform the following query in..

(more…)

AQL Improvements for 2.4

Estimated reading time: 1 minutes

While on a retreat in Belgium, we found some spare time to work on improvements for AQL. These will be shipped with ArangoDB version 2.4, and are already available in the devel version for testing from now on.

(more…)

Weekly Newsletter, December 11, 2014

Estimated reading time: 2 minutes

ArangoDB Release

We released ArangoDB 2.3.2 with some bug fixes. You can find a full list of changes in our change-log. Here is a short extract:

  • added AQL optimizer rule for removing INTO from a COLLECT statement if not needed
  • fixed missing makeDirectory when fetching a Foxx application from a zip file
  • fixed issue #1173: AQL Editor “Save current query” resets user password

ArangoDB related (Drivers & more)

(more…)