hugegraph-hubble is a graph management and analysis platform that provides features: graph data load, schema management, graph relationship analysis and graphical display.
- Graph connection management, supporting to easily switch graph to operate
- Graph data load, supporting to load large amounts of data from files into hugegraph-server
- Schema management, supporting to easily perform schema manipulation and display
- Graph analysis and graphical display, supporting to build query via the gremlin or algorithms with a little effort then will get cool graphical results
We can quickly start hubble
in two ways:
-
We can use
docker run -itd --name=hubble -p 8088:8088 hugegraph/hubble
to quickly start hubble. -
Or we can use the
docker-compose.yml
to starthubble
withhugegraph-server
. If we setPRELOAD=true
, we can preload the example graph when startinghugegraph-server
:version: '3' services: server: image: hugegraph/hugegraph container_name: graph #environment: # - PRELOAD=true ports: - 18080:8080 hubble: image: hugegraph/hubble container_name: hubble ports: - 8088:8088
Then we should follow the hubble doc to create the graph.
The hubble homepage contains more information about it.
hugegraph-hubble is licensed under Apache 2.0 License.