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
0
votes
0 answers

Clone/Backup of ArangoDB-Collection with Python

Is there a Pythonic way to do a quick backup or a copy of a collection (document and edge)? The regular way seems to be using arangodump/arangoimp in the console. Also there are some tutorials on how to do a full backup on a different server in…
Qohelet
  • 1,459
  • 4
  • 24
  • 41
0
votes
1 answer

Find shortest paths through predefined set of vertices and edges in arangodb

I need to find shortest paths which should pass through several nodes and edges. Few details: It should be shortest paths according to weights. Include set can be ordered and unordered. Graph size - 50 000 vertices and 450 0000 edges Is there any…
0
votes
1 answer

ARANGODB ensureIndex to create full text not working

I have events collection inserted with a below record in ARANGODB. ( I am new to Arango ) INSERT { "source": "ABC", "target": "ZYX", "tranno": "ABCDEF", "type": "REST", "attributes" : { "myID" : "12345"} } INTO events But trying…
0
votes
1 answer

Use Flink to call arangodb Java driver API to insert data into arangodb and report error err 'transaction ID already used'

Use Flink to call arangodb Java driver API to insert data into arangodb and report error err 'transaction ID already used' Caused by: TimerException{com.arangodb.ArangoDBException: Response: 500, Error: 1590 - AQL: error, cluster node:…
0
votes
1 answer

ArangoDB Post-filtering aggregated data

I'm stuck with filtering on aggregated data using ArangoDB Imagine a graph with user documents. Every user has a number of game consoles. So the graph is User -[]-> GameConsole I need a query that lists all users with its game consoles. AND I want…
0
votes
1 answer

Arangodb not connecting using localhost but accessible using external IP

I installed arangodb on single node ubuntu server, followed this below is my arangod.conf file: endpoint = tcp://127.0.0.1:8529 endpoint = tcp://:8529 I did enable both of them. Now i am able to access arango using below on my…
toofrellik
  • 1,277
  • 4
  • 15
  • 39
0
votes
2 answers

TypeError: string indices must be integers on ArangoDB

Arango module gives a weird error while accessing databases: from arango import ArangoClient client = ArangoClient(hosts='http://localhost:8529/') sys_db = client.db('_system', username='root', password='root') sys_db.databases() below is the…
toofrellik
  • 1,277
  • 4
  • 15
  • 39
0
votes
0 answers

How do I pull out ArangoDB embedded lists in useful format

First let me say I am entirely new to ArangoDb and coding in a non relational world (sql being my experience). We have an issue where we are looking to pull out information from an embedded list. We have the below scenario where the data comes…
run400
  • 1
0
votes
1 answer

Using ArangoDB through the command line not working

Thanks for taking the time, so - Arango is installed and the WebUI has been working fine. I've been doing the tutorials and finished the basics, but attempting to move on and import my own data I'm getting stuck. I stored my data in a google sheet…
0
votes
1 answer

Arango Edge Creation bug with Spring boot

I am creating a project with ArangoDb for my research. It is a backend project with Spring boot. I was following the tutorials here: https://github.com/arangodb/spring-data-demo Everything went well but when I tried creating a controller with the…
0
votes
1 answer

Is there a way to "touch" a document in ArangoDb

I need to be able to "touch" a document (for optimistic purposes) in ArangoDb in order to check and update the _rev without modifying any other data in the document. I have yet to find a way to do this generically with AQL or Javascript Driver…
robross0606
  • 544
  • 1
  • 9
  • 19
0
votes
1 answer

Dump Arangodb database with Go

I would like to know if I can dump an ArangoDB with Go. I know how to use ArangoDB Go driver but there is no example which show how to dump the db. I also aware about how to download the database on the command line.
Victor
  • 21
  • 9
0
votes
1 answer

How to import dbpedia data into arangodb for use in a django website?

I'm new to programming and just learnt python and some django basics. I want to build a website to display wikipedia data in a particular format and also display the connections using plotly dash. However i'm unable to find instructions on how to…
rawm
  • 251
  • 5
  • 24
0
votes
1 answer

AQL- expected join possible in Arangodb and How?

My Environment ArangoDB Version: 3.5.2(the latest i think) Storage Engine:RocksDB Deployment Mode:Single Server Deployment Strategy: Manual Start Infrastructure:own Operating System: Ubuntu 16.04 Total RAM in your machine: 8GB Disks in use:…
SAM-wq
  • 11
  • 4
0
votes
1 answer

ArangoDB init container fails on minikube

I'm working on a NodeJS service which uses ArangoDB as datastore, and deployed on minikube. I use an initContainer directive in the kubernetes deployment manifest to ensure that the database is ready to receive connections before the application…
ceblay
  • 23
  • 4
1 2 3
99
100