PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Compilazione PL/Proxy con PostgresPlus Advance Server 9.1

PostgresPlus Advance Server 9.1 (PPAS) è un prodotto EnterpriseDB, che viene fornito con funzionalità aziendali aggiuntive con la community PostgreSQL. La maggior parte dei moduli contrib (pgfoundry) può essere collegata a questo prodotto utilizzando Stackbuilder. Tuttavia, attualmente Pl/Proxy non è in bundle o scaricabile con Stack-builder. Quindi, ecco come puoi compilare il Pl/Proxy con PPAS 9.1.

1. Scarica Pl/Proxy.

wget http://pgfoundry.org/frs/download.php/3274/plproxy-2.4.tar.gz
tar -xvf plproxy-2.4.tar.gz
make PG_CONFIG=/opt/PostgresPlus/9.1AS/bin/pg_config
make intall PG_CONFIG=/opt/PostgresPlus/9.1AS/bin/pg_config

Note: Flex & Bison must be installed before compiling pl/proxy.

2. Dopo aver completato la configurazione, si ottengono due file, plproxy.so in $PGPATH/lib e plproxy–2.4.0.sql in $PGPATH/share/extention/location.
Esegui il file .sql che crea call_handler &language.

bash-4.1$ psql -p 5444 -U enterprisedb -d edb -f /opt/PostgresPlus/9.1AS/share/extension/plproxy--2.4.0.sql
CREATE FUNCTION
CREATE LANGUAGE
CREATE FUNCTION
CREATE FOREIGN DATA WRAPPER

Ora puoi vedere la lingua installata.

edb=# dL
List of languages
Name | Owner | Trusted
---------+--------------+---------
edbspl | enterprisedb | t
plpgsql | enterprisedb | t
plproxy | enterprisedb | f
(3 rows)

3. Testiamo il codice di esempio con pl/proxy.

create table users(username text,blog text);
insert into users values('Raghav','raghavt.blogspot.com');

CREATE or replace FUNCTION get_user_blog(i_username text)
RETURNS SETOF text AS $$
CONNECT 'dbname=edb';
SELECT blog FROM users WHERE username = $1;
$$ LANGUAGE plproxy;

edb=# select * from get_user_blog('Raghav');
get_user_blog
----------------------------------
raghavt.blogspot.com
(1 rows)

Tutto pronto per il test con pl/proxy su PPAS 9.1. Se vuoi sapere come impostare pl/proxy, segui i link sottostanti.
http://www.depesz.com/2011/12/02/the-secret-ingredient-in-the-webscale-sauce/
http://kaiv.wordpress.com/2007/07/27/postgresql-cluster-partitioning-with-plproxy-part-i/