First of all I have a small query:

lets say I have three collections A, B and C created using Web API(empty) 
with three edges between then 

D : A->B
E : B->C
F : C->A

all empty. Now while creating Graph using Web API, I specified edges and 
collections _from and _to but mentioned nothing in last columns which says 
vertex collections. Will that be a problem as I have collections A, B and C 
to take care of that(even if not specifically mentioned as vertices).

Coming to main problem:

with the same structure defined as above I imported vertices A and B using 
arangoimp, using the following script on master machine.

for filename in /home/ubuntu/*********/*.csv; do

   arangoimp --server.endpoint tcp://********************/ 
--server.username root --server.password admin --file $filename --type csv 
--on-duplicates ignore --server.database AdtheorentDB --collection A > 
$filename"_log"

   rm $filename"_log"

done


I have a cluster of three machines two servers and one master. two primary 
and one coordinator.


After finishing importing collections A and B. I am importing edges with 
same number of files as of A and B. but size of each file is more than 100 
MB(nearly one million rows per file). This starts with a good speed but 
soon it crashes. After the crash I see only one of the DBServer i.e. 
DBServer002 running while other is down. 

-- 
You received this message because you are subscribed to the Google Groups 
"ArangoDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to