无法在 Postgres 上创建 oracle_fdw 扩展

Unable to create oracle_fdw extension on Postgres

我在 PostgreSQL 服务器上按照说明 here to install Oracle foreign data wrapper, oracle_fdw 进行操作。

Oracle 版本: Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64 位生产,运行 on Red Hat Linux 7.2

PostgreSQL 版本: x86_64-unknown-linux-gnu 上的 PostgreSQL 9.4.4,由 gcc (Debian 4.7.2-5) 4.7.2 编译,64 位,运行 在 Debian 7 上(喘息)。

我能够安装 sqlplus 并使用 sqlplus 成功地从 PostgreSQL 服务器连接到 Oracle 服务器,因此连接没有问题。

但是当我尝试创建扩展时,出现以下错误:

postgres=# create extension oracle_fdw;
server closed the connection unexpectedly
    This probably means the server terminated abnormally
    before or while processing the request.
The connection to the server was lost. Attempting reset: Failed.

然后我从 https://github.com/dalibo/pg_qualstats/issues/1 中获取线索,并在 postgresql.conf 中将 oracle_fdw 添加到 shared_preload_libraries,如下所示:

shared_preload_libraries = 'oracle_fdw'

但现在我无法重新启动 Postgres:

# service postgresql restart
[....] Restarting PostgreSQL 9.4 database server: main[....] The PostgreSQL server failed to start. Please check the log output: t=2016-09-15 11:05:42 PDT d= h= p=23300 a=FATAL: XX000: invalid cache ID[FAILt=2016-09-15 11:05:42 PDT d= h= p=23300 a=LOCATION: SearchSysCacheList, syscache.c:1219 ... failed!
 failed!

查看 /var/log/postgresql/postgresql-9.4-main.log 我只看到这两行:

t=2016-09-15 11:05:42 PDT d= h= p=23300 a=FATAL:  XX000: invalid cache ID: 41
t=2016-09-15 11:05:42 PDT d= h= p=23300 a=LOCATION:  SearchSysCacheList, syscache.c:1219

从 shared_preload_libraries 中删除 oracle_fdw 允许重新启动 postgres,因此这是导致重新启动失败的原因。所以我从 shared_preload_libraries 中删除了 oracle_fdw 并在 postgresql.conf:

中保持这样
shared_preload_libraries = ''

然后我可以重新启动 Postgres。


以下是完成的具体步骤:

OS PostgreSQL 服务器版本

# cat /etc/os-release 
PRETTY_NAME="Debian GNU/Linux 7 (wheezy)"
NAME="Debian GNU/Linux"
VERSION_ID="7"
VERSION="7 (wheezy)"
ID=debian
ANSI_COLOR="1;31"
HOME_URL="http://www.debian.org/"
SUPPORT_URL="http://www.debian.org/support/"
BUG_REPORT_URL="http://bugs.debian.org/"
root@app-4:/# cat /etc/debian_version
7.8
root@app-4:/# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 7.8 (wheezy)
Release:    7.8
Codename:   wheezy

安装 Oracle Instant Client

使用此处给出的说明安装: https://help.ubuntu.com/community/Oracle%20Instant%20Client

我从 http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html 下载了以下 rpm 文件:

并使用以下命令将它们安装在 PostgreSQL 服务器上:

# apt-get install alien
# alien -i oracle-instantclient-basic-10.2.0.3-1.x86_64.rpm
# alien -i oracle-instantclient-devel-10.2.0.3-1.x86_64.rpm
# alien -i oracle-instantclient-sqlplus-10.2.0.3-1.x86_64.rpm

正在确认安装:

# dpkg --list | grep -i oracle
ii  oracle-instantclient-basic         10.2.0.3-2                    amd64        Instant Client for Oracle Database 11g
ii  oracle-instantclient-devel         10.2.0.3-2                    amd64        Development headers for Instant Client.
ii  oracle-instantclient-sqlplus       10.2.0.3-2                    amd64        SQL*Plus for Instant Client.

正在使用 sqlplus 连接到 Oracle 服务器

# su - postgres
postgres@app-4:~$ sqlplus <ORACLE_USER>/<ORACLE_PASS>@//<ORACLE_HOST>:<ORACLE_PORT>/<SID>

SQL*Plus: Release 10.2.0.3.0 - Production on Fri Sep 16 09:55:02 2016

Copyright (c) 1982, 2006, Oracle.  All Rights Reserved.


Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options

SQL> select count(*) from <TEST_TABLE>;

  COUNT(*)
----------
    937530

SQL> 

所以这很好用。

正在安装oracle_fdw

已下载 oracle_fdw 版本 1.4.0 即文件 oracle_fdw-1.4.0.zip 来自 http://pgxn.org/dist/oracle_fdw/

然后解压安装如下:

root@app-4:/home/arun/oracle_fdw-1.4.0# ls
CHANGELOG  LICENSE   META.json             oracle_fdw--1.1.sql  oracle_fdw.control  oracle_fdw.o   oracle_gis.c  oracle_utils.c  README.oracle_fdw  TODO
expected   Makefile  oracle_fdw--1.0--1.1.sql  oracle_fdw.c     oracle_fdw.h    oracle_fdw.so  oracle_gis.o  oracle_utils.o  sql
root@app-4:/home/arun/oracle_fdw-1.4.0# make
...
root@app-4:/home/arun/oracle_fdw-1.4.0# make install
/bin/mkdir -p '/usr/lib/postgresql/9.4/lib'
/bin/mkdir -p '/usr/share/postgresql/9.4/extension'
/bin/mkdir -p '/usr/share/postgresql/9.4/extension'
/bin/mkdir -p '/usr/share/doc/postgresql-doc-9.4/extension'
/usr/bin/install -c -m 755  oracle_fdw.so '/usr/lib/postgresql/9.4/lib/oracle_fdw.so'
/usr/bin/install -c -m 644 oracle_fdw.control '/usr/share/postgresql/9.4/extension/'
/usr/bin/install -c -m 644 oracle_fdw--1.1.sql oracle_fdw--1.0--1.1.sql '/usr/share/postgresql/9.4/extension/'
/usr/bin/install -c -m 644 README.oracle_fdw '/usr/share/doc/postgresql-doc-9.4/extension/'

正在 Postgres 中创建扩展

root@app-4:/# su - postgres
postgres@app-4:~$ psql
psql (9.4.4)
Type "help" for help.

postgres=# create extension oracle_fdw;
server closed the connection unexpectedly
    This probably means the server terminated abnormally
    before or while processing the request.
The connection to the server was lost. Attempting reset: Failed.
!> \q

堆栈跟踪

我按照 Laurenz Albe 在他的回答中推荐的那样安装了 GNU 调试器 (gdb) 并获得了以下堆栈跟踪(目前没有调试符号):

Continuing.

Program received signal SIGSEGV, Segmentation fault.
0x0000000000000000 in ?? ()
#0  0x0000000000000000 in ?? ()
#1  0x00007ff657dfcc99 in DirectFunctionCall1Coll ()
#2  0x00007ff657de19a9 in ?? ()
#3  0x00007ff657de3037 in SearchCatCacheList ()
#4  0x00007ff4c5fcce7d in _PG_init () at oracle_fdw.c:648
#5  0x00007ff657dfb717 in ?? ()
#6  0x00007ff657dfc051 in load_external_function ()
#7  0x00007ff657b6b486 in fmgr_c_validator ()
#8  0x00007ff657dfdeba in OidFunctionCall1Coll ()
#9  0x00007ff657b6aedc in ProcedureCreate ()
#10 0x00007ff657bcf645 in CreateFunction ()
#11 0x00007ff657d14e73 in ?? ()
#12 0x00007ff657d140c7 in standard_ProcessUtility ()
#13 0x00007ff657bc89ed in ?? ()
#14 0x00007ff657bc98de in CreateExtension ()
#15 0x00007ff657d154c1 in ?? ()
#16 0x00007ff657d140c7 in standard_ProcessUtility ()
#17 0x00007ff657d11243 in ?? ()
#18 0x00007ff657d11e96 in ?? ()
#19 0x00007ff657d12b3d in PortalRun ()
#20 0x00007ff657d0fb1a in PostgresMain ()
#21 0x00007ff657acbdad in ?? ()
#22 0x00007ff657caf351 in PostmasterMain ()
#23 0x00007ff657acccba in main ()
Continuing.

Program terminated with signal SIGSEGV, Segmentation fault.
The program no longer exists.

更新:我能够在 debian 8(8.6,jessie)的 Postgres 9.4.9 运行 上安装扩展。我使用 Oracle 即时客户端版本 12.1.0.2.0-1 和 oracle_fdw 版本 1.5.

你真的应该为此打开一个 Github 问题,这是报告错误的正确位置。

回答以下问题会有所帮助:

  • 您使用的 oracle_fdw 是哪个版本?

  • 您构建它的具体步骤是什么?你是在你所在的系统上构建它的运行吗?

  • 崩溃的 stack trace 看起来如何(带有调试符号)?

两条一般性评论:

  • 您应该按照 README 构建 oracle_fdw 而不是其他网站。

  • 将其添加到 shared_preload_libraries 显然是错误的。

为什么要对 Oracle 12.1.0.2 数据库使用 oracle 10.2.0.3 instant?我建议使用最新版本的即时客户端。

"SQL*Plus: Release 10.2.0.3.0 - Production on Fri Sep 16 09:55:02 2016"

当您使用基于 debian 的系统时,不要使用即时客户端 rpms 并将它们转换为 deb 包,使用 zip 版本并相应地设置您的环境。

我看看能不能抽出时间来测试一下你的设置

干杯, 丹尼尔