Questions tagged [apache-age]

Use this tag for programming, integration and configuration questions related to using Apache AGE in your software project. Apache AGE is a extension to PostgreSQL which provides graph database capabilities.

Apache AGE is an extension to PostgreSQL providing graph database capabilities.

A core objective of Apache AGE, from their overview, is:

"to create single storage that can handle both relational and graph model data so that users can use standard ANSI SQL along with openCypher, the Graph query language."


Resources:

420 questions
-1
votes
10 answers

Permission denied when running make command to install PostgreSQL extension

I am trying to install the Age extension for PostgreSQL-13 by following the instructions in the README file. When I navigate to the extension directory /Users/moiz/Apache_age/postgresql-13.0/age and run the command sudo make USE_PGXS=1…
-1
votes
8 answers

make: pg_config: Not a directory make: *** No rule to make target 'installcheck'

I installed postgres version 13 from source code using wget https://ftp.postgresql.org/pub/source/v13.5/postgresql-13.5.tar.gz && tar -xvf postgresql-13.5.tar.gz && rm -f postgresql-13.5.tar.gz ./configure --enable-debug --enable-cassert…
-1
votes
6 answers

How to properly install and switch between multiple PostgreSQL versions from the source code?

I am contributing to Apache AGE, an extension of PostgreSQL, and would like to maintain PostgreSQL 11, 12, and 13 installed to easily switch between them to test/debug the extension's functionality. I have PostgreSQL 12 installed from the source…
Carla
  • 326
  • 1
  • 7
-1
votes
1 answer

How to migrate from a relational database to a graph database using apache AGE.?

I have a simple relational database that has two tables: employees and projects. The employees table has columns for employee_id, name, department, and manager_id. The projects table has columns for project_id, name, and employee_id (the employee…
-1
votes
7 answers

Having to restart postgres server after every reboot

I have build postgres from source and have started it correctly. But every time I reboot my system and write psql, it gives the following error: And so I have to start it like this: bin/pg_ctl -D demo -l logfile start And then it works until I…
han
  • 74
  • 7
-1
votes
6 answers

How and where data is actually stored in Apache AGE?

As Apache AGE is an extension to PostgreSQL. I am curious about how and where the data of vertices (nodes) and edges are stored in Apache AGE. Does it use PostgreSQL for this? If yes, then how.
-1
votes
15 answers

Getting error initdb: error: cannot be run as root when initializing db on postgresSQL

I am trying to install ApacheAGE and for this I am following the instruction in the following article but I have installed postgres 12 instead of 11. The installation was successful but when I tried to initialize DB using the command sudo…
-1
votes
3 answers

Problems running the "psql" command to start postgres

To run Apache AGE, I built postgres 12 from source with the --debug flag enabled and followed the instructions given. Upon it being succesfully built (in ubuntu on wsl2), I tried running it with the psql command, but it kept giving an error. I tried…
tokamak32
  • 27
  • 7
-1
votes
2 answers

Could not access file "$libdir/age": No such file or directory in Windows

I'm trying to make apache age windows installer in order to run age in windows without using WSL2. To compile the source code on windows machine I'm using msys2 as it can be use to build native windows software. The make install command is…
Sarthak
  • 380
  • 7
-1
votes
4 answers

Unable to locate package postgresql-server-dev-11

I need to install postgres server 11 on ubuntu linux. because it is recommended during the installation of postgres-11 and apache-age from source code: i used this command in ubuntu linux sudo apt install postgresql-server-dev-11 but it gives…
-1
votes
2 answers

PostgreSQL error: could not connect to server: Connection refused

I'm facing this error when I try to start my psql server: psql: error: could not connect to server: Connection refused Is the server running locally and accepting connections on Unix domain socket "/tmp/.s.PGSQL.5432"? The…
-1
votes
1 answer

Creating a C-language function with variable number of arguments for Apache AGE extension in PostgreSQL

I am trying to create a custom C-language function for an Apache AGE extension in PostgreSQL, but I'm not sure how to handle a variable number of arguments of different types. Ideally, I would like to call this function using the syntax SELECT…
Marco Souza
  • 296
  • 7
-1
votes
2 answers

Searching Command History in PostgreSQL Server

I was wondering if there is a more efficient way than scrolling up every command history to find what I need, such as searching for specific characters in a command when writing in the PostgreSQL server. I am running iTerm in macOS and I know this…
Ken W.
  • 397
  • 1
  • 13
-1
votes
4 answers

Error while installing Apache AGE using make install

I was installing Apache AGE using this guide https://age.apache.org/age-manual/master/intro/setup.html and have used sudo apt install postgresql-12 to install postgresql, but doing make install in the age git directory is fetching me the following…
-1
votes
1 answer

How to add nested property when creating vertex in apache-age?

I want to add nested property when creating node in apache-age like nested dictionary in python.