1,964 questions
0
votes
0
answers
37
views
arangoexport parameter --server.request-timeout max value 3600?
I'm using arangoexport to export data with a complex AQL
After the export takes more than 20min, after 1200 seconds the tool exits with a timeout error.
So I added the parameter
--server.request-...
0
votes
0
answers
46
views
Init script executes successfully but no effect
ArangoDB is executed in a docker environment and an init script is provided successfully. It is executed at startup of ArangoDB.
This script is executed without errors in any case (see log at bottom). ...
0
votes
1
answer
36
views
arangoexport --custom-query-bindvars format in a windows cmd script
I'm using arangoexport with parameters
--custom-query-file
--custom-query-bindvars
on a windows batch file, but always get the error
FATAL {bench} For flag '--custom-query-bindvars {'myvarname': '...
0
votes
0
answers
41
views
ArangoDB 3.11.14 Server Hosted, but no UI
I'm trying to run an older version of ArangoDB (3.11.14) and I followed a tutorial to host a server using Docker on a Linux VM. I was able to get the server hosted, but the localhost address doesn't ...
1
vote
1
answer
65
views
Scoping FOR loop in AQL (ArangoDB)
The AQL query below inserts the object {title: "c"} twice in collection_2.
However, I want to scope the FOR loop so that the second INSERT is only executed once.
How can that be done? ...
0
votes
1
answer
28
views
Arangosearch on multiple fields with scoring
I think conceptually what I'm trying to do is very logical and straightforward. But I haven't been able to figure out a way to do this.
Using arangodb 3.12.4
If I have a document like:
product: ...
0
votes
1
answer
47
views
AQL to group using order and field constraints
I'm trying to write an AQL on a collection. The collection has the timestamp fields since and until, and a name for each document. The documents will need to be sorted by until.
Along the way the name ...
0
votes
0
answers
37
views
ArangoDB query slows down exponentially with depth
We are testing a very large depth tree with ArangoDB. It's loaded up in docker using the latest arangodb-instance image.
A tree with 1,000,000 nodes and 1,000,000 edges has been uploaded. It is set ...
0
votes
2
answers
39
views
Filtering outer collection by joined collection
I'm working with the following query:
FOR book IN books
FOR summary IN summaries
FILTER book._key == summary._key
FILTER summary.title !=""...
0
votes
1
answer
65
views
Struggling with Arango fuzzy search [closed]
As part of my pet project, I've been using ElasticSearch for a while to store some of my entities and allow users some, I would say, decent search capabilities.
I wanted to migrate from Elastic as I'...
1
vote
1
answer
87
views
How to update an element in an array using AQL in ArangoDB if it exists, and add if it doesn't
I'm struggeling with something that is perhaps very simple:
I have an array of objects, where each object is Date+Value.
Using AQL I want to add a new date+value object to the array if it does not ...
0
votes
1
answer
530
views
ArangoDB Setup with Docker Compose
I have a backend I am trying to setup in docker compose, made of two services:
An arangoDB container
A Golang API, that depends on the arangoDB container being started and seeded with the new ...
0
votes
0
answers
52
views
First call to ArangoDb very slow (20 seconds) following calls fast
I've got ArangoDb running in Docker like this:
docker run -e ARANGO_NO_AUTH=1 -p 8529:8529 -d -v C:\Programming\xxx\arangodb:/var/lib/arangodb3 arangodb
And I'm connecting to it using ...
0
votes
1
answer
50
views
AQL query for joining collections if not null and merging in single output
I have a graph with the following structure
---
title: TEST GRAPH
---
erDiagram
PROPERTIES ||--|{ APPLIANCES : contains
PROPERTIES ||--|{ SERVICES : provides
I would like to output in a ...
0
votes
1
answer
51
views
Dynamic WITH statement
Is it possible to dynamically construct a WITH statement?
I have to do a graph traversal, but I don't know in advance which collections contain the graph nodes. I have tried to create the statement ...