Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Storing Graph Databases in Google Cloud

I have a dataset of 6 million entries. Each entry has one-to-many relationship with other entries. Previously this data has been stored in a Neo4J instance.

Does Google Cloud provide a product that can store Graph Databases? Or is there a way to adapt an existing Google Cloud Database product to work as a graph databases engine?

I am trying to avoid running a Neo4J instance on a Google compute instance.

like image 277
Quest Monger Avatar asked Oct 03 '17 05:10

Quest Monger


1 Answers

JanusGraph is an open source graph database solution which can use Google Cloud Bigtable as a storage backend; here's a guide for deploying JanusGraph with Cloud Bigtable on GCP.

Some of the folks from Google even help maintain the project. So that might be close to what you looking for.

like image 200
Filipe Teixeira Avatar answered Oct 16 '22 08:10

Filipe Teixeira