Questions tagged [arangodb]

ArangoDB is a multi-model NoSQL database with a flexible data model for documents, graphs, and key-values collections.

ArangoDB is a multi-model NoSQL database with a flexible data model for documents, graphs, and key-values collections. It targets high-performance applications using a convenient declarative query language AQL and JavaScript extensions.

Useful links

Articles


Related tags :

1967 questions
5
votes
1 answer

How to set Foxx App at server root?

I was wondering how to set a Foxx app at the root of the sever/ip/domain name? For example if my IP was 100.12.32.12 if I go to http://100.12.32.12 it'll open the single-page foxx app without URL redirection. Things I've Tried Currently I got…
Quang Van
  • 11,475
  • 12
  • 57
  • 61
5
votes
1 answer

is there any tool for arangoDB

Like there is Workbench for MySQL, SQL Management studio for MS SQL, Is there any tool for arangoDB? I have searched a lot but found no solution. Your help is much appreciated. Thank you in advance.
user3458227
  • 93
  • 1
  • 1
  • 10
5
votes
2 answers

Unable to run a arangoDB foxx app successfully

I am new to arangoDB. It's exciting that you may create APIs on top of ArangoDB with help of foxx framework. Somehow I am failing to run/create a foxx app successfully. I am not sure if I am doing something wrong here. Following is details of…
fusionstrings
  • 1,025
  • 2
  • 13
  • 23
5
votes
1 answer

Arango db generate breadcrumbs while traversing graph

I searched all over the arangodb project website, but came up with no solution. If I traverse simple tree like graph like continents/countries/capitals how can I get breadcrumbs for current item? Hope that makes sense
Marius
  • 185
  • 11
4
votes
2 answers

docker: no matching manifest for linux/arm64/v8 while installing ArangoDB via Docker on M1 Mac

When you try and install ArangoDB via Docker: docker run -e ARANGO_ROOT_PASSWORD=password -p 8529:8529 -d --name arangodb arangodb The following error is thrown: Unable to find image 'arangodb:latest' locally latest: Pulling from…
itsezc
  • 692
  • 2
  • 7
  • 20
4
votes
1 answer

How to find duplicates documents?

It's very strange that I did not find answer in documentation and here for a very simple question. How to find duplicated records in collections. For example I need to find duplicated by id for next documents: {"id": 1, name: "Mike"}, {"id": 2,…
Dmitry Bubnenkov
  • 9,415
  • 19
  • 85
  • 145
4
votes
1 answer

How to sync ArangoDB with elasticsearch?

Is there any logstash plugin or other kind of mechanism to sync ArangoDB data with elasticsearch? I'm creating a social network platform and want my users and posts data searchable with ES. My initial thought was using MongoDB as data store because…
4
votes
1 answer

When to use RocksDB and when to use MMFiles storage engine in ArangoDB?

We use ArangoDB to store telco data. The main goal of our application is to let users build a certain types of reports very quickly. The reports are mostly based on the data we get from ArangoDB when we traverse different graphs. The business logic…
Peter Liapin
  • 1,196
  • 9
  • 20
4
votes
1 answer

What is the proper way to use IF THEN in AQL?

I'm trying to use IF THEN style AQL, but the only relevant operator I could find in the AQL documentation was the ternary operator. I tried to add IF THEN syntax to my already working AQL but it gives syntax errors no matter what I try. LET doc =…
ElJay
  • 347
  • 4
  • 17
4
votes
1 answer

Is there a way to read the ArangoDB Write Ahead Log for clusters?

I'm trying to read data from the ArangoDB Write Ahead Log (WAL) so that the data can be replicated into Kafka. ArangoDB provides an API to do so but says the following about it: As a public API it is only supported to access these REST endpoints on…
Jared Petersen
  • 125
  • 3
  • 12
4
votes
1 answer

When does arangodb's foxx collects garbage?

What I understand is; Foxx is based on V8 Engine. Foxx is multi-threaded, and it doesn't share state with other threads Foxx's thread will quit (is this the right term?) as soon as it sends the response to client. Aside from V8 Engine's garbage…
HelloWorld
  • 973
  • 2
  • 9
  • 23
4
votes
2 answers

Why does ArangoDB (using Python-Arango) return ERR 1600 ERROR_CURSOR_NOT_FOUND?

The problem I iterate over an entire vertex collection, e.g. journals, and use it to create edges, author, from a person to the given journal. I use python-arango and the code is something like: for journal in journals.all(): …
Thomas Fauskanger
  • 2,536
  • 1
  • 27
  • 42
4
votes
1 answer

ArangoDB Creating counter edge for every directed edge for bidirectional edges

I am very new to graph database. And I have started with Arango. For this project I am not sure about the queries that I will encounter in future. I don't want to create bottlenecks. So I wanted to create undirected or bidirectional edges…
Neel Basu
  • 12,638
  • 12
  • 82
  • 146
4
votes
0 answers

Queries are slower in Foxx microservice

We've noticed significant performance decreases when we move our AQL queries from ArangoDB's own REST API to a custom Foxx microservice. Is this to be expected? For example, if we run a multithreaded load test from a remote machine that asks for…
4
votes
1 answer

How to access embedded ArangoDB from desktop application?

I have copied ArangoDB dlls into my application and loaded them. I have trouble accessing ArangoDB API's to start server from C++ application. Has anybody able to access embed ArangoDB from C++ application.
Joy
  • 41
  • 3