All Projects → apache → incubator-age-viewer

apache / incubator-age-viewer

Licence: Apache-2.0 license
Graph database optimized for fast analysis and real-time data processing. It is provided as an extension to PostgreSQL.

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
SCSS
7915 projects

Projects that are alternatives of or similar to incubator-age-viewer

Incubator Age
Graph database optimized for fast analysis and real-time data processing. It is provided as an extension to PostgreSQL.
Stars: ✭ 244 (+98.37%)
Mutual labels:  graph-database, graphdb, postgresql-extension
Gremlin Scala
Scala wrapper for Apache TinkerPop 3 Graph DSL
Stars: ✭ 462 (+275.61%)
Mutual labels:  graph-database, graphdb
Orientdb
OrientDB is the most versatile DBMS supporting Graph, Document, Reactive, Full-Text and Geospatial models in one Multi-Model product. OrientDB can run distributed (Multi-Master), supports SQL, ACID Transactions, Full-Text indexing and Reactive Queries. OrientDB Community Edition is Open Source using a liberal Apache 2 license.
Stars: ✭ 4,394 (+3472.36%)
Mutual labels:  graph-database, multi-model-dbms
Neo4j sips
Elixir driver for the Neo4j graph database server
Stars: ✭ 78 (-36.59%)
Mutual labels:  graph-database, graphdb
Agensgraph Extension
A graph database extension for PostgreSQL
Stars: ✭ 170 (+38.21%)
Mutual labels:  graph-database, postgresql-extension
Janusgraph
JanusGraph: an open-source, distributed graph database
Stars: ✭ 4,277 (+3377.24%)
Mutual labels:  graph-database, graphdb
Agensgraph
AgensGraph, a transactional graph database based on PostgreSQL
Stars: ✭ 1,056 (+758.54%)
Mutual labels:  graph-database, graphdb
typedb
TypeDB: a strongly-typed database
Stars: ✭ 3,152 (+2462.6%)
Mutual labels:  graph-database, graphdb
Redisgraph
A graph database as a Redis module
Stars: ✭ 1,292 (+950.41%)
Mutual labels:  graph-database, graphdb
Grakn
TypeDB: a strongly-typed database
Stars: ✭ 2,947 (+2295.93%)
Mutual labels:  graph-database, graphdb
Bolt sips
Neo4j driver for Elixir
Stars: ✭ 204 (+65.85%)
Mutual labels:  graph-database, graphdb
Dgraph
Native GraphQL Database with graph backend
Stars: ✭ 17,127 (+13824.39%)
Mutual labels:  graph-database, graphdb
Arangodb
🥑 ArangoDB is a native multi-model database with flexible data models for documents, graphs, and key-values. Build high performance applications using a convenient SQL-like query language or JavaScript extensions.
Stars: ✭ 11,880 (+9558.54%)
Mutual labels:  graph-database, graphdb
Ecosys
TigerGraph Ecosystem
Stars: ✭ 166 (+34.96%)
Mutual labels:  graph-database, graphdb
NeoClient
🦉 Lightweight OGM for Neo4j which support transactions and BOLT protocol.
Stars: ✭ 21 (-82.93%)
Mutual labels:  graph-database, graphdb
Awesome Graph
A curated list of resources for graph databases and graph computing tools
Stars: ✭ 717 (+482.93%)
Mutual labels:  graph-database, graphdb
nebula
A distributed, fast open-source graph database featuring horizontal scalability and high availability
Stars: ✭ 8,196 (+6563.41%)
Mutual labels:  graph-database, graphdb
Cypher.js
Cypher graph database for Javascript
Stars: ✭ 30 (-75.61%)
Mutual labels:  graph-database, graphdb
Neo4j
Graphs for Everyone
Stars: ✭ 9,582 (+7690.24%)
Mutual labels:  graph-database, graphdb
Tinkerpop
Apache TinkerPop - a graph computing framework
Stars: ✭ 1,309 (+964.23%)
Mutual labels:  graph-database, graphdb

PRs Welcome

What is Apache-Age Viewer

Apache-Age Viewer is a web based user interface that provides visualization of graph data stored in a postgreSQL database with AGE extension. It is graph visualisation tool, for Apache AGE.

This is a sub-project of the Apache AGE project.

Recommend Node Version & install module

  • Node version - ^14.16.0

  • Node Module - pm2

Install latest pm2 with : npm i pm2

pm2 is an NPM module to run the project in production mode, and hence is optional for getting started with setting up development environment for Age-Viewer

Running Age-Viewer

  • Install the required node modules using :
    npm run setup
  • Run Age-Viewer using : npm run start

This will start the age-viewer on http://localhost:3000 if port 3000 is free.

How to build using command

  • Build the front-end : npm run build-front

  • Build the back-end : npm run build-back

  • Start the project in production mode :

      pm2 stop ag-viewer-develop
    
      pm2 delete ag-viewer-develop
    
      pm2 start ecosystem.config.js
    
    

    How to start using Age-Viewer

  • To start using Age-Viewer we need to have a running postgreSQL database server with Apache Age Extension

    Setting up the PostgreSQL server with AGE extension

    • Easiest way for Windows, Mac-OS and Linux Environment using Docker

    Install docker in advance (https://www.docker.com/get-started), install the version compatible with your OS from the provided link.

    Run Using Docker :

    • Get the docker image - docker pull apache/age

    • Create AGE docker container

    docker run --name myPostgresDb -p 5455:5432 -e POSTGRES_USER=postgresUser \
    -e POSTGRES_PASSWORD=postgresPW -e POSTGRES_DB=postgresDB -d apache/age
    Docker variables Description
    --name Assign a name to the container
    -p Publish a container’s port(s) to the host
    -e Set environment variables
    -d Run container in background and print container ID
  • To Get the running log of the docker container created - docker logs --follow myPostgresDb

  • To Get into postgreSQL Shell (There are two ways this can be done) -

    • First get into docker shell using - docker exec -it myPostgresDb bash
      Then get into postgreSQL shell using - psql -U postgresUser postgresDB

    OR

    • Alternatively postgres shell can also be assessed directly (without getting into the docker shell) - psql -U postgresUser -d postgresDB -p 5455 -h localhost and put in postgresPW when prompted for password.
  • After logging into postgreSQL shell follow the Post-Installation instruction to create a graph in the database.

Connect Apache Age-Viewer to PostgreSQL Database

Initial Connection Layout enter image description here To Connect to postgreSQL server running from Docker Container

  • Connect URL - localhost
  • Connect Port - 5455
  • Database Name - postgresDB
  • User Name - postgresUser
  • Password - postgresPW

The following field is same as used to make the docker container specified above as flags.

License

Apache AGE Viewer is licensed under the Apache License, Version 2.0. See LICENSE for the full license text.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].