I'm working on a project using ArangoDB. This project implies large data (not too much at now) as 4000k documents in a single Collection.
I migrated the data step by step and at the end there was no problem on reading Collection data.
We stopped ArangoDB and our machine because weekend. When we started our machine it was impossible to load data of that Collection.
Sequentially we tried to:
- Load data by arangodb client, but response was been a generic error
'Collection error'
- Dump data from console: but response was been:
Error: got invalid response from server: Could not connect to 'tcp://localhost:8529' 'connect() failed with #111 - Connection refused'
What can we do? This collection has a good number of indexes and the bucket was fixed to 64.
EDIT I tried to stop and start again arangodb: problem persist. So, I would excluding that is a server problem. Could be possible that there is some wrong configuration in Collection (wait for sync: false, bucket 64, journal size: 32)?
/var/log/arangodb/*
? – dothebart