Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

include apache age #3735

Open
kindlychung opened this issue Sep 30, 2023 · 2 comments
Open

include apache age #3735

kindlychung opened this issue Sep 30, 2023 · 2 comments

Comments

@kindlychung
Copy link

Overview

Would be nice to include the apache age extension for graph database.

Apache AGE is an extension for PostgreSQL that enables users to leverage a graph database on top of the existing relational databases. AGE is an acronym for A Graph Extension and is inspired by Bitnine's AgensGraph, a multi-model database fork of PostgreSQL. The basic principle of the project is to create a single storage that handles both the relational and graph data model so that the users can use the standard ANSI SQL along with openCypher, one of the most popular graph query languages today.

Use Case

Useful for querying/analyzing data of graph nature.

Desired Behavior

CREATE EXTENSION age;
LOAD 'age';
SET search_path = ag_catalog, "$user", public;
SELECT create_graph('graph_name');
-- To create a single vertex, use the CREATE clause.
SELECT * 
FROM cypher('graph_name', $$
    CREATE (n)
$$) as (v agtype);

Environment

  • Platform: Kubernetes k3s
  • Platform Version: v1.27.5+k3s1
  • PGO Image Tag ubi8-15.4-0
  • Postgres Version 15
  • Storage: hostpath
  • Number of Postgres clusters: 1
@dsessler7
Copy link
Contributor

@kindlychung, thank you for the suggestion! I have added a story to our backlog to look into this.

@flypenguin
Copy link

any updates here? we're comparing possible operators just now and are most probably in need for a graph database. that would be a big "pro" here :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants