Compiling Babelfish from distribution tarballs

Compiling Babelfish from distribution tarballs

This document will walk you through the steps required to create a working Babelfish installation on an Ubuntu 20.04 Linux host. Please note that the steps may vary on other operating systems, but the overall process is roughly the same.

The installation steps that follow are for the release tar or zip file, which uses content from the following repositories:

Prerequisites

Hardware and Specs

The current installation instructions were tested using t4g.large, t4.large, and c6g.xlarge instances as hosts.

This installation has also been tested on ami-0fb653ca2d3203ac1 for amd64, and ami-02af65b2d1ebdfafc for arm64.

To compile Babelfish, you should have at least 4GB of available memory.

Required Software

Install the following dependencies:

sudo apt-get update && sudo apt install -y --no-install-recommends \
  build-essential flex libxml2-dev libxml2-utils \
  libxslt-dev libssl-dev libreadline-dev zlib1g-dev \
  libldap2-dev libpam0g-dev gettext uuid uuid-dev \
  cmake lld apt-utils libossp-uuid-dev gnulib bison \
  xsltproc icu-devtools libicu66 \
  libicu-dev gawk \
  curl openjdk-8-jre openssl \
  g++ libssl-dev python-dev libpq-dev \
  pkg-config libutfcpp-dev \
  gnupg unixodbc-dev net-tools unzip

If you would like to work with Kerberos authentication then additional dependency is required on libkrb5-dev package.

Many of the Babelfish prerequisites are part of a typical Linux distribution. You may find that the packages on your distribution use a similar (but not identical) name.

To build Babelfish, you will need access to a user with root privileges, so you can convey privileges with sudo. You’ll also need a non-root user to initialize the database; PostgreSQL does not allow a root user to own the data directory or start the server.

Set environment variables

Navigate into the extracted distribution folder and set the following environment variables:

export JOBS=4 # Adjust to number of cores
export BABELFISH_HOME=/opt/babelfish/4.0.0
export PG_CONFIG=${BABELFISH_HOME}/bin/pg_config
export PG_SRC=$(realpath $PWD)

Compile ANTLR 4

Unfortunately, there are no prebuilt C++ binaries for the Antlr 4.9.3 runtime version for Linux. You will need to compile and install ANTLR manually.

First, define the following variables in your environment:

export ANTLR4_VERSION=4.9.3
export ANTLR4_JAVA_BIN=/usr/bin/java
export ANTLR4_RUNTIME_LIBRARIES=/usr/include/antlr4-runtime
export ANTLR_EXECUTABLE=/usr/local/lib/antlr-${ANTLR4_VERSION}-complete.jar
export ANTLR_RUNTIME=~/antlr4

The Antlr 4.9.3 Runtime files are distributed with the Babelfish source code. Use the following commands to copy the files into place:

sudo cp ${PG_SRC}/contrib/babelfishpg_tsql/antlr/thirdparty/antlr/antlr-${ANTLR4_VERSION}-complete.jar /usr/local/lib

After copying the ANTLR .jar files into place, compile ANTLR:

cd ${HOME}

wget http://www.antlr.org/download/antlr4-cpp-runtime-${ANTLR4_VERSION}-source.zip
unzip -d ${ANTLR_RUNTIME} antlr4-cpp-runtime-${ANTLR4_VERSION}-source.zip

cd ${ANTLR_RUNTIME}
mkdir build && cd build 
cmake .. -D ANTLR_JAR_LOCATION=/usr/local/lib/antlr-${ANTLR4_VERSION}-complete.jar -DCMAKE_INSTALL_PREFIX=/usr/local -DWITH_DEMO=True
make -j $JOBS 
sudo make install

Build modified PostgreSQL for Babelfish

The version of PostgreSQL that is distributed with Babelfish includes hooks that allow Babelfish to implement behaviors. Babelfish will not work with PostgreSQL distributions from other sources. Use the following commands to configure the build environment and build the Babelfish PostgreSQL distribution:

cd ${PG_SRC}

./configure CFLAGS="-ggdb" \
  --prefix=${BABELFISH_HOME}/ \
  --enable-debug \
  --with-ldap \
  --with-libxml \
  --with-pam \
  --with-uuid=ossp \
  --enable-nls \
  --with-libxslt \
  --with-icu
          
make DESTDIR=${BABELFISH_HOME}/ -j $JOBS 2>error.txt
          
sudo make install

NOTE: To build Babelfish with Kerberos authentication support, use the option --with-gssapi during configuration.

WARNING: Using the --with-extra-version option during the configuration phase can break the sys.get_host_os() output; we do not recommend including it.

Build and install the extensions because uuid-ossp.so is a runtime dependency for Babelfish:

cd ${PG_SRC}/contrib && make -j ${JOBS} && sudo make install

Compile the ANTLR parser generator

Use the following commands to compile the ANTLR parser generator and copy the runtime to the PostgreSQL library location:

export cmake=$(which cmake)
          
sudo cp /usr/local/lib/libantlr4-runtime.so.${ANTLR4_VERSION} ${BABELFISH_HOME}/lib
           
cd ${PG_SRC}/contrib/babelfishpg_tsql/antlr 
cmake -Wno-dev .
make all

Compile the contrib modules and build Babelfish

Now, it is time to compile the contrib modules and build Babelfish. Use the command:

cd ${PG_SRC}/contrib
for ext in babelfishpg_common babelfishpg_money babelfishpg_tds babelfishpg_tsql 
do
    cd $ext
    make -j ${JOBS}
    sudo make PG_CONFIG=${PG_CONFIG} install
    cd ..
done

Setting up the PostgreSQL modified instance

The steps required to create a new cluster and start the service are very similar to the steps required by a community PostgreSQL installation:

sudo mkdir -p /var/lib/babelfish/4.0.0

sudo adduser postgres --home /var/lib/babelfish

Ensure that the related folders hold the permissions for the service user:

sudo chown -R postgres: /opt/babelfish/
sudo chown -R postgres: /var/lib/babelfish/

Switch to the postgres user (a non-superuser) and start the cluster:

sudo su - postgres
export BABELFISH_HOME=/opt/babelfish/4.0.0
export BABELFISH_DATA=/var/lib/babelfish/4.0.0/data

Initializing the Data directory

Initialize data with trustable connection for development

If you would like to create a local cluster for testing purposes, you can configure trust authentication when initializing the database to simplify authentication. The --auth-host=trust flag will create the cluster using trust authentication, and should not be included if you are creating an instance that will contain sensitive information:

${BABELFISH_HOME}/bin/initdb -D ${BABELFISH_DATA}/ -E "UTF8" --auth=trust --auth-host=trust --auth-local=trust
Initialize data with specific HBA configuration

For production or isolated environments, it is recommended to specify the allowed IP addresses that can access the system and a secure authentication method such as md5 in the pg_hba.conf. For other supported methods see Authentication Methods documentation.

${BABELFISH_HOME}/bin/initdb -D ${BABELFISH_DATA}/ -E "UTF8"

Once the data directory is initialized, edit the ${BABELFISH_DATA}/pg_hba.conf file following the vanilla Postgres HBA configuration.

Configuring PostgreSQL for Babelfish

The postgresql.conf configuration changes shown below are required before starting the service:

cat << EOF >> ${BABELFISH_DATA}/postgresql.conf

#------------------------------------------------------------------------------
# BABELFISH RELATED OPTIONS
# These are going to step over previous duplicated variables.
#------------------------------------------------------------------------------
listen_addresses = '*'
allow_system_table_mods = on
shared_preload_libraries = 'babelfishpg_tds'
babelfishpg_tds.listen_addresses = '*'
EOF

For more information about Babelfish variables, see Configuring Babelfish

Then, start the instance with the following command:

${BABELFISH_HOME}/bin/pg_ctl -D ${BABELFISH_DATA}/ -l logfile start

Enabling extensions in the target database

Create a user (babelfish_user) and the database (babelfish_db) into which the extensions will be installed:

${BABELFISH_HOME}/bin/psql -d postgres -U postgres -c "CREATE USER babelfish_user WITH SUPERUSER CREATEDB CREATEROLE PASSWORD '12345678' INHERIT;"
${BABELFISH_HOME}/bin/psql -d postgres -U postgres -c "DROP DATABASE IF EXISTS babelfish_db;"
${BABELFISH_HOME}/bin/psql -d postgres -U postgres -c "CREATE DATABASE babelfish_db OWNER babelfish_user;"

Connect to the babelfish_db database, and configure and install the extensions:

${BABELFISH_HOME}/bin/psql -d babelfish_db -U postgres -c "CREATE EXTENSION IF NOT EXISTS "babelfishpg_tds" CASCADE;"
${BABELFISH_HOME}/bin/psql -d babelfish_db -U postgres -c "GRANT ALL ON SCHEMA sys to babelfish_user;"
${BABELFISH_HOME}/bin/psql -d babelfish_db -U postgres -c "ALTER USER babelfish_user CREATEDB;"
${BABELFISH_HOME}/bin/psql -d babelfish_db -U postgres -c "ALTER SYSTEM SET babelfishpg_tsql.database_name = 'babelfish_db';"
${BABELFISH_HOME}/bin/psql -d babelfish_db -U postgres -c "SELECT pg_reload_conf();"

By default, the migration_mode is single-db. To deploy in multi-db mode, you need to modify the Babelfish configuration file before initializing the database:

${BABELFISH_HOME}/bin/psql -d babelfish_db -U postgres -c "ALTER DATABASE babelfish_db SET babelfishpg_tsql.migration_mode = 'multi-db';"

For more information about the migration_mode, see Single vs. multiple instances and Choosing a migration mode.

Finally, initialize the database by calling sys.initialize_babelfish:

${BABELFISH_HOME}/bin/psql -d babelfish_db -U postgres -c "CALL sys.initialize_babelfish('babelfish_user');"

Connecting to the Babelfish Database through TDS port

For testing, we’re going to use FreeTDS command-line client, available for both x86 and arm64 platforms:

  • Exit postgres user:
exit
  • Install the packages:
sudo apt install -y freetds-bin freetds-common
  • Connect with tsql:
$ tsql -H localhost -U babelfish_user -p 1433  -P 12345678 -D master
locale is "C.UTF-8"
locale charset is "UTF-8"
using default charset "UTF-8"
Setting master as default database in login packet
Changed database context to 'master'.
1> SELECT @@VERSION
2> GO
version
Babelfish for PostgreSQL with SQL Server Compatibility - 12.0.2000.8
...
Copyright (c) Amazon Web Services
PostgreSQL 16.1 Babelfish for PostgreSQL on x86_64-pc-linux-gnu
(1 row affected)

If you are testing from a remote server, add the -H option:

tsql -H localhost -U babelfish_user -p 1433  -P 12345678 -D master -H ${ip_address}
  • If you’re a sqlcmd user, the following command will access the database with a sqlcmd client:
sqlcmd -S localhost -U babelfish_user -P 12345678 

Note that mssql-tools does not support arm64 packages.

How to build the babelfishpg_tsql extension with linked servers enabled

  • To work with linked servers, you must install the tds_fdw extension. More information about building and installing the extension can be found at this link. The linked servers feature is supported using the FreeTDS library which is licensed under the GNU LGPL license. See COPYING_LIB.txt for details.
  • Build the babelfishpg_tsql extension as follows:
PG_CPPFLAGS='-I/usr/include -DENABLE_TDS_LIB' SHLIB_LINK='-lsybdb -L/usr/lib64' make
PG_CPPFLAGS='-I/usr/include -DENABLE_TDS_LIB' SHLIB_LINK='-lsybdb -L/usr/lib64' make install
  • Create rest of the Babelfish extensions as usual, and initialize Babelfish.
  • Create the tds_fdw extension in the Babelfish database:
babelfish_db=> CREATE EXTENSION tds_fdw;
CREATE EXTENSION

How to build the babelfishpg_tsql extension with Support for Spatial Datatypes enabled

  • To work with Spatial Datatypes, you must install the PostGIS extension.
    Steps on how to get PostGIS working on open-source:
    wget http://postgis.net/stuff/postgis-3.4.0.tar.gz
    tar -xvzf postgis-3.4.0.tar.gz
    sudo yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
    sudo yum install gdal gdal-devel
    sudo yum install https://www.rpmfind.net/linux/epel/8/Everything/x86_64/Packages/g/geos-3.7.2-1.el8.x86_64.rpm
    sudo yum install https://www.rpmfind.net/linux/epel/8/Everything/x86_64/Packages/g/geos-devel-3.7.2-1.el8.x86_64.rpm
    wget https://download.osgeo.org/proj/proj-9.2.1.tar.gz
    tar -xvzf proj-9.2.1.tar.gz
    cd proj-9.2.1
    mkdir build
    cd build
    cmake -DCMAKE_INSTALL_LIBDIR="lib/x86_64-linux-gnu" -DCMAKE_INSTALL_PREFIX="/usr" ..
    cmake --build .
    sudo cmake --build . --target install
    cd ../../postgis-3.4.0
    ./configure
    make
    sudo make install
    
  • More information about building and installing the extension can be found at this link
  • Build the babelfishpg_common extension as follows:
    PG_CPPFLAGS='-I/usr/include -DENABLE_SPATIAL_TYPES' make -j 4
    PG_CPPFLAGS='-I/usr/include -DENABLE_SPATIAL_TYPES' make install
    
  • Build the babelfishpg_tsql extension as follows:
    PG_CPPFLAGS='-I/usr/include -DENABLE_SPATIAL_TYPES' make
    PG_CPPFLAGS='-I/usr/include -DENABLE_SPATIAL_TYPES' make install
    
  • Create rest of the Babelfish extensions as usual, and initialize Babelfish.

How to build and install the babelfishpg_unit extension and run unit tests (Optional)

Build the babelfishpg_unit module. Use the command:

cd ${PG_SRC}/contrib/babelfishpg_unit
make -j ${JOBS}
sudo make PG_CONFIG=${PG_CONFIG} install

After babelfishpg_unit is built successfully, connect through psql endpoint and install the extension:

${BABELFISH_HOME}/bin/psql -d babelfish_db -U postgres -c "CREATE EXTENSION IF NOT EXISTS "babelfishpg_unit";"

To run unit tests:

${BABELFISH_HOME}/bin/psql -d babelfish_db -U postgres -c "SELECT * FROM babelfishpg_unit.babelfishpg_unit_run_tests();"

How to build the babelfishpg_tsql extension with linked servers enabled

  • To work with linked servers, you must install the tds_fdw extension. More information about building and installing the extension can be found at this link. The linked servers feature is supported using the FreeTDS library which is licensed under the GNU LGPL license. See COPYING_LIB.txt for details.
  • Build the babelfishpg_tsql extension as follows:
PG_CPPFLAGS='-I/usr/include -DENABLE_TDS_LIB' SHLIB_LINK='-lsybdb -L/usr/lib64' make
PG_CPPFLAGS='-I/usr/include -DENABLE_TDS_LIB' SHLIB_LINK='-lsybdb -L/usr/lib64' make install
  • Create rest of the Babelfish extensions as usual, and initialize Babelfish.
  • Create the tds_fdw extension in the Babelfish database:
babelfish_db=> CREATE EXTENSION tds_fdw;
CREATE EXTENSION
  • 9
    点赞
  • 18
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

别来无恙blwy

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值