You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After looking through your readme file it looks like the version of arrow is pretty out of date. Do you know if this will work with the newer versions of Arrow and AWS SDK? Do you happen to have an install script somewhere for installing dependencies? I'm trying to get this loaded up in a Postgres v14.6 Alpine Linux Docker image to do some testing with it. I'd appreciate any advice you have about what versions work and don't work.
The text was updated successfully, but these errors were encountered:
I recently took some notes for ubuntu 22.04, some deb dependencies might be missing, since not tested in a clean environment note apache-arrow-7.0.1 and aws-sdk-cpp 1.9.263 and -DCMAKE_CXX_FLAGS=-Wno-error=deprecated-declaration for openssl 3
git clone https://github.com/aws/aws-sdk-cpp.git
cd aws-sdk-cpp/
git checkout 1.9.263
git submodule update --init --recursive
mkdir build
cd build
cmake -DBUILD_ONLY="s3;core;config;sts;cognito-identity;transfer;identity-management" -DCMAKE_CXX_FLAGS=-Wno-error=deprecated-declarations ..
make
sudo make install
git clone https://github.com/apache/arrow.git
cd arrow
git checkout apache-arrow-7.0.1
cd cpp
mkdir build
cd build
cmake -DARROW_PARQUET=ON -DARROW_S3=ON -DARROW_WITH_SNAPPY=ON ..
make
sudo make install
git clone https://github.com/pgspider/parquet_s3_fdw.git
cd parquet_s3_fdw
git checkout v1.0.0
sudo apt-get install postgresql-server-dev-15
make USE_PGXS=1 install
After looking through your readme file it looks like the version of arrow is pretty out of date. Do you know if this will work with the newer versions of Arrow and AWS SDK? Do you happen to have an install script somewhere for installing dependencies? I'm trying to get this loaded up in a Postgres v14.6 Alpine Linux Docker image to do some testing with it. I'd appreciate any advice you have about what versions work and don't work.
The text was updated successfully, but these errors were encountered: