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 MongoDb offer ways to sync data to ES via logstash plugin. However ArangoDB provides graph database capabilities which are quite helpful for storing and querying social relations which is best suited to my requirements. This makes me more inclined towards ArangoDB.
I didn't find any ES/logstash plugin for syncing ArangoDB data with my ES cluster. There are few mentions of a river plugin which exists no more. Two questions:
- Is there an efficient async way to sync ArangoDB data with ES?
- If not, should I drop ArangoDB and go with MongoDB which does not provide graph capabilities?