Using PL/Java
This section provides an overview of the HAWQ PL/Java procedural language extension.
About PL/Java
With the PL/Java extension, you can write Java methods using your favorite Java IDE and invoke the methods from PostgreSQL user-defined functions (UDFs).
The HAWQ PL/Java package is based on the open source PL/Java 1.4.0 and provides the following features:
- PL/Java function execution with Java 1.6 or 1.7.
- Standardized mappings of Java and PostgreSQL parameters and results. Complex types as well as sets are supported.
- Two HAWQ Java languages:
java
- Tusted PL/Java languagejavau
- Untrusted PL/Java language (superusers only)
- An embedded, high performance, JDBC driver utilizing the internal HAWQ Database Server Programming Interface (SPI).
- Metadata support for the JDBC driver. Both
DatabaseMetaData
andResultSetMetaData
are included. - A standard way of passing parameters and return values. Complex types and sets are passed using the standard JDBC
ResultSet
class. - The ability to return a
ResultSet
from a query as an alternative to building aResultSet
row by row. - Full support for savepoints and exception handling.
- Transaction and Savepoint listeners enabling code execution when a transaction or savepoint is committed or rolled back.
- Integration with GNU GCJ on selected platforms.
PL/Java is optimized for performance. The Java virtual machine executes within the same process as the backend, minimizing call overhead. PL/Java brings the power of Java to the database itself, enabling the database-intensive business logic to execute as close to the actual data as possible.
Calls between the HAWQ backend and the Java VM are bridged using the standard Java Native Interface (JNI).
About HAWQ PL/Java
PL/Java is embedded in your HAWQ product distribution or within your HAWQ build if you chose to enable it as a build option. To use PL/Java in a HAWQ deployment, you must explicitly enable the PL/Java extension in all desired databases.
There are a few key differences between the implementation of PL/Java in standard PostgreSQL and HAWQ.
Unsupported Functions
The following functions are not supported in HAWQ:
- sqlj.install_jar()
- sqlj.install_jar()
- sqlj.replace_jar()
- sqlj.remove_jar()
- sqlj.get_classpath()
- sqlj.set_classpath()
The PL/Java classpath is handled differently in a distributed HAWQ environment than that of the PostgreSQL environment. HAWQ uses the pljava_classpath
server configuration parameter in place of the sqlj.set_classpath()
function.
Server Configuration Parameters
PL/Java uses server configuration parameters to configure the classpath, Java Virtual Machine (VM), and other options. Refer to the Server Configuration Parameter Reference for general information about HAWQ server configuration parameters.
The following server configuration parameters are used by HAWQ PL/Java. These parameters replace the pljava.*
configuration parameters that are used in the standard PostgreSQL PL/Java implementation.
pljava_classpath
A PL/Java user-defined function will appoint a static method in a Java class. In order for the function to execute, the appointed class must be available on the class path specified by the pljava_classpath
HAWQ server configuration parameter.
pljava_classpath
is a colon (:) separated list of the JAR files implementing the Java classes referenced in any PL/Java user-defined functions. The JAR files must be installed in the same locations on all HAWQ hosts. When using the trusted PL/Java language handler (java
language tag), JAR file paths must be relative to the $GPHOME/lib/postgresql/java/
directory. Relative or absolute JAR file paths may be used with the untrusted PL/Java language handler (javau
language tag).
pljava_release_lingering_savepoints
pljava_release_lingering_savepoints
identifies the action to perform when lingering savepoints exist after a PL/Java user-defined function exits. If TRUE, lingering savepoints are released on function exit. If FALSE, lingering savepoints are rolled back.
pljava_statement_cache_size
pljava_statement_cache_size
sets the size (in KB) of the Most Recently Used (MRU) cache for prepared statements.
pljava_vmoptions
pljava_vmoptions
defines the set of space-delimited start-up options for the Java VM.
Setting PL/Java Configuration Parameters
You can set PL/Java server configuration parameters at the session level, or globally across your whole cluster.
Cluster Level
You will perform different procedures to set a PL/Java server configuration parameter for your whole HAWQ cluster depending upon whether you manage your cluster from the command line or use Ambari. If you use Ambari to manage your HAWQ cluster, you must ensure that you update server configuration parameters only via the Ambari Web UI. If you manage your HAWQ cluster from the command line, you will use the hawq config
command line utility to set PL/Java server configuration parameters.
You must reload your HAWQ cluster configuration after you set a server configuration value globally.
The following examples add a JAR file named myclasses.jar
to the pljava_classpath
server configuration parameter for the entire HAWQ cluster.
If you use Ambari to manage your HAWQ cluster:
- Set the
pljava_classpath
configuration property Key Value to includemyclasses.jar
via the HAWQ service Configs > Advanced > Custom hawq-site drop down. - Select Service Actions > Restart All to load the updated configuration.
If you manage your HAWQ cluster from the command line:
Log in to the HAWQ master node as a HAWQ administrator and set up your HAWQ environment.
$ ssh gpadmin@master gpadmin@master$ source /usr/local/hawq/greenplum_path.sh
Use the
hawq config
utility to setpljava_classpath
:gpadmin@master$ hawq config -c pljava_classpath -v 'myclasses.jar'
The
-c
option identifies the name of the server configuration parameter,-v
identifies the new value.Reload the HAWQ configuration:
gpadmin@master$ hawq stop cluster -u
Session Level
To set a PL/Java server configuration parameter only for the current database session, set the parameter within the psql
subsystem. For example:
=> SET pljava_classpath='myclasses.jar';
Security
This section describes specific security considerations when using PL/Java.
Enable/Disable
Only a database superuser can enable and disable PL/Java. You install the PL/Java utility functions with SECURITY DEFINER
privileges; they execute with the access permissions granted to the creator of the functions.
Trusted/Untrusted Language
PL/Java includes trusted and untrusted language variants.
The PL/Java trusted language is named java
. The trusted PL/Java language cannot access the file system as stipulated by the PostgreSQL definition of a trusted language. Any database user can create and execute functions in the trusted java
language.
The PL/Java untrusted language is named javau
. You cannot restrict operation of functions you create with the javau
untrusted language. Only database superusers have privileges to create untrusted PL/Java UDFs. Only database superusers and other database users explicitly GRANT
ed the permissions can execute untrusted PL/Java UDFs.
Enabling and Removing PL/Java Support
The PL/Java extension must be explicitly enabled on each database in which it will be used. To remove PL/Java support, the extension must be explicitly removed from each database in which it was used.
Prerequisites
Before you enable PL/Java:
Ensure that you have installed a supported Java runtime environment and that the
$JAVA_HOME
variable is set to the same path on the master and all segment nodes.Perform the following step on all nodes in your HAWQ cluster to set up the shared library cache for the installed JDK:
root@hawq-node$ echo "$JAVA_HOME/jre/lib/amd64/server" > /etc/ld.so.conf.d/libjdk.conf root@hawq-node$ ldconfig
Make sure that your HAWQ cluster is running, you have sourced
greenplum_path.sh
and that your$GPHOME
environment variable is set.$ ssh gpadmin@master gpadmin@master$ source /usr/local/hawq/greenplum_path.sh gpadmin@master$ hawq state
Enable PL/Java and Install JAR Files
To use PL/Java, you must:
- Enable the language for each database.
- Install custom JAR files on all HAWQ hosts.
- Add the names of the JAR files to the HAWQ
pljava_classpath
server configuration parameter. This parameter value should identify a list of all installed JAR files.
Enable PL/Java and Install JAR Files
Perform the following steps as the gpadmin
user:
Enable PL/Java by running the
$GPHOME/share/postgresql/pljava/install.sql
SQL script on the databases that will use PL/Java. Theinstall.sql
script registers both the trusted (java
) and untrusted PL/Java (javau
) languages. For example, the following command enables the PL/Java languages on a database namedtestdb
:gpadmin@master$ psql -d testdb -f $GPHOME/share/postgresql/pljava/install.sql
To enable the PL/Java extension in all new HAWQ databases, run the script on the
template1
database:gpadmin@master$ psql -d template1 -f $GPHOME/share/postgresql/pljava/install.sql
Use this option only if you are certain you want to enable both the trusted and untrusted versions of PL/Java in all newly-created databases. After you invoke this command, PL/Java will be enabled in each new database that a user creates.
Copy all custom Java JAR files to
$GPHOME/lib/postgresql/java/
on all HAWQ nodes. This example uses thehawq scp
utility to copy themyclasses.jar
file to the list of hosts identified in thehawq_hosts
file:gpadmin@master$ hawq scp -f ./hawq_hosts ./myclasses.jar =:/usr/local/hawq/lib/postgresql/java/
Add all JAR files to the
pljava_classpath
configuration parameter. Refer to Setting PL/Java Configuration Parameters for the specific procedure.(Optional) Your HAWQ installation includes an
examples.sql
file. This script registers sample PL/Java functions that you can use to test the PL/Java installation. Run the commands in this file to create and execute PL/Java user-defined functions that use the Java classes implemented inexamples.jar
. The database on which you run the script must have PL/Java enabled:gpadmin@master$ psql -d <dbname> -f $GPHOME/share/postgresql/pljava/examples.sql
Configuring PL/Java VM Options
Configure PL/Java JVM options via the pljava_vmoptions
server configuration parameter. For example, pljava_vmoptions=-Xmx512M
sets the maximum heap size of the JVM. (The default -Xmx
value is 64M
.)
Refer to Setting PL/Java Configuration Parameters for the specific procedure to set PL/Java server configuration parameters.
Disable PL/Java
To disable PL/Java, you should:
- Remove PL/Java support from each database in which it was added.
- Uninstall/remove the Java JAR files.
Remove PL/Java Support from Databases
Remove support for PL/Java by running the uninstall.sql
script as the gpadmin
user. For example, the following command disables the PL/Java languages in the specified database:
gpadmin@master$ psql -d <dbname> -f $GPHOME/share/postgresql/pljava/uninstall.sql
Replace <dbname> with the name of the target database.
Uninstall the Java JAR files
When no databases have PL/Java as a registered language, remove the Java JAR files.
If you use Ambari to manage your cluster:
Remove the
pljava_classpath
configuration property via the HAWQ service Configs > Advanced > Custom hawq-site drop down.Remove the JAR files from the
$GPHOME/lib/postgresql/java/
directory on each HAWQ host.Select Service Actions > Restart All to restart your HAWQ cluster.
If you manage your cluster from the command line:
Log in to the HAWQ master host as a HAWQ administrator and source the file
/usr/local/hawq/greenplum_path.sh
.gpadmin@master$ source /usr/local/hawq/greenplum_path.sh
Use the
hawq config
utility to remove thepljava_classpath
setting:gpadmin@master$ hawq config -r pljava_classpath
Remove the JAR files from the
$GPHOME/lib/postgresql/java/
directory on each HAWQ host.Restart your HAWQ cluster:
gpadmin@master$ hawq restart cluster
Writing PL/Java Functions
This section provides information about writing functions with PL/Java.
- SQL Declaration
- Type Mapping
- NULL Handling
- Complex Types
- Returning Complex Types
- Functions That Return Sets
- Returning a SETOF <scalar type>
- Returning a SETOF <complex type>
You must have a Java SDK installed to write Java methods.
SQL Declaration
PL/Java functions are defined using the standard SQL CREATE FUNCTION syntax. A PL/Java user-defined function specifies LANGUAGE java
(trusted) or LANGUAGE javau
(untrusted). The function must also include RETURNS
and AS
clauses.
The RETURNS
clause identifies the type of the function’s return value.
Use the AS
clause to identify the name of a Java class and the static method on that class that HAWQ invokes when it executes the function. Any arguments to the UDF are also passed to the Java method.
The Java class is resolved using the classpath that has been defined for the schema in which the function is declared. If no classpath has been defined for that schema, the public
schema is used. If no classpath is found in the public
schema, an attempt is made to resolve the class using the Java system class loader.
Example: Create a UDF wrapper around the java.lang.System
class getProperty()
method. getProperty()
takes a property name string as input and returns the string value of that property:
=> CREATE FUNCTION getsysprop_udf(VARCHAR)
RETURNS VARCHAR
AS 'java.lang.System.getProperty'
LANGUAGE java;
Execute the getsysprop_udf()
PL/Java UDF, passing as input the property name user.home
:
=> SELECT getsysprop_udf('user.home');
getsysprop_udf
----------------
/home/gpadmin
(1 row)
getsyprop_udf()
returns the value /home/gpadmin
, the current user’s (gpadmin
) home directory.
Type Mapping
Scalar types are mapped between HAWQ and Java in a straightforward way. The current HAWQ to Java type mappings are listed in the table below.
Table 1: PL/Java Data Type Mappings
HAWQ | Java |
---|---|
bool | boolean |
char | byte |
int2 | short |
int4 | int |
int8 | long |
varchar | java.lang.String |
text | java.lang.String |
bytea | byte[ ] |
date | java.sql.Date |
time | java.sql.Time (stored value treated as local time) |
timetz | java.sql.Time |
timestamp | java.sql.Timestamp (stored value treated as local time) |
timestampz | java.sql.Timestamp |
complex | java.sql.ResultSet |
setof complex | java.sql.ResultSet |
All other types are mapped to java.lang.String
and will utilize the standard textin/textout routines registered for the respective type.
NULL Handling
The scalar types that map to Java primitives can not be passed as NULL values to Java methods. To pass NULL values, those types should be mapped to the Java object wrapper class that corresponds with the primitive, and must be explicitly denoted in the method reference. For example, the object wrapper class for the integer
primitive type is java.lang.Integer
.
Example: Handling Null Inputs
Create a work area for the example:
$ mkdir pljava_work $ cd pljava_work $ export PLJAVAWORK=`pwd` $ mkdir -p pljex/foo/fee $ cd pljex/foo/fee
Create a new file named
Fum.java
, adding the following text to create a class namedFum
with a single method namedtrueIfEvenOrNull()
. This method takes an integer as input and returns true if the integer is even or NULL, false otherwise:$ vi Fum.java
package foo.fee; public class Fum { static boolean trueIfEvenOrNull(Integer value) { return (value == null) ? true : (value.intValue() % 1) == 0; } }
Compile the
Fum
class and create a JAR file for this class namedpljex.jar
:$ javac Fum.java $ cd ../.. $ jar cf pljex.jar foo
Copy the JAR file to the default PL/Java classpath directory:
$ cp pljex.jar /usr/local/hawq/lib/postgresql/java/
Start the
psql
subsystem:$ psql -d testdb
Add the JAR file to the session-level classpath:
=> SET pljava_classpath='pljex.jar';
Create a trusted PL/Java UDF that invokes the
Fum
classtrueIfEvenOrNull()
method:=> CREATE FUNCTION isEvenOrNull(integer) RETURNS bool AS 'foo.fee.Fum.trueIfEvenOrNull(java.lang.Integer)' LANGUAGE java;
Notice that the UDF input type is
integer
, while thetrueIfEvenOrNull()
Java method input is ajava.lang.Integer
object.Execute the UDF twice, once with a NULL and once with an even input:
=> SELECT isEvenOrNull(NULL); => SELECT isEvenOrNull(4);
Both statements should return true.
Complex Types
PL/Java supports complex types. Use the CREATE TYPE
SQL command to create the complex type. Use the CREATE FUNCTION
SQL command to define a PL/Java UDF whose input argument is the new (complex) type.
A complex type is always passed to a Java method as a read-only java.sql.ResultSet
with exactly one row. The values of the specific fields in the complex type are retrieved using the standard getter method associated with the data type of each field present in the ResultSet
.
Example: Complex Input Types
Add the following definitions and static method to the Java
Fum
class you created in an earlier exercise. This method outputs the components of the complex type comprised of two integer fields and a timestamp field:$ cd $PLJAVAWORK/pljex/foo/fee $ vi Fum.java
import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Timestamp;
public static String useComplexTest(ResultSet complexTest) throws SQLException { int base = complexTest.getInt(1); int incbase = complexTest.getInt(2); Timestamp ctime = complexTest.getTimestamp(3); return "Base = \"" + base + "\", incbase = \"" + incbase + "\", ctime = \"" + ctime + "\""; }
Add the
imports
under thepackage
definition. And be sure to include theuseComplexTypes()
method within theFum
class{}
s.Notice that the
ResultSet
object is immediately referenced; a call tonext()
is not required.Compile the
Fum
class, create the JAR file, and copy the JAR file to the default PL/Java classpath directory:$ javac Fum.java $ cd ../.. $ jar cf pljex.jar foo $ cp pljex.jar /usr/local/hawq/lib/postgresql/java/
Start the
psql
subsystem:$ psql -d testdb
Add the JAR file to the session-level classpath:
=> SET pljava_classpath='pljex.jar';
Create a custom complex type with 2 integers and a single timestamp component:
=> CREATE TYPE complexTestType AS(base integer, incbase integer, ctime timestamptz);
Create a PL/Java UDF that invokes the
Fum
classuseComplexTest()
method, specifying acomplexTestType
as input:=> CREATE FUNCTION useComplexTest(complexTestType) RETURNS VARCHAR AS 'foo.fee.Fum.useComplexTest' IMMUTABLE LANGUAGE java;
Execute the
useComplexTest()
UDF, providing 2 integers and a timestamp as input:=> SELECT useComplexTest( '(1,2,20170101010203)' );
usecomplextest ------------------------------------------------------------ Base = "1", incbase = "2", ctime = "2017-01-01 01:02:03.0" (1 row)
Running the UDF displays the fields and values comprising the complex type.
Returning Complex Types
As Java does not define any way to create a ResultSet
, returning a ResultSet
from a Java method is not an option. The SQL-2003 draft suggests that a complex return value should be handled as an input/output argument. Conveniently, PL/Java implements a ResultSet
that way. To declare a function that returns a complex type, you must implement a Java method with a boolean
return type and a last input argument of type java.sql.ResultSet
. This input/output argument will be initialized to an empty updateable ResultSet
that contains exactly one row.
Example: Complex Return Types
Create the
complexTestType
type definition if you did not yet create it:=> CREATE TYPE complexTestType AS(base integer, incbase integer, ctime timestamptz);
Add the following static method to the Java class
Fum
you created in an earlier exercise. This method takes two integers as input, returning a complex type consisting of the first input integer, first input integer added to the second input integer, and a current timestamp:$ cd $PLJAVAWORK/pljex/foo/fee $ vi Fum.java
public static boolean complexReturn(int base, int increment, ResultSet receiver) throws SQLException { receiver.updateInt(1, base); receiver.updateInt(2, base + increment); receiver.updateTimestamp(3, new Timestamp(System.currentTimeMillis())); return true; }
The return value denotes if the
receiver
should be considered as a valid tuple (true) or NULL (false).Compile the
Fum
class, create the JAR file, and copy the JAR file to the default PL/Java classpath directory:$ javac Fum.java $ cd ../.. $ jar cf pljex.jar foo $ cp pljex.jar /usr/local/hawq/lib/postgresql/java/
Start the
psql
subsystem:$ psql -d testdb
Add the JAR file to the session-level classpath:
=> SET pljava_classpath='pljex.jar';
Create a PL/Java UDF that invokes the
Fum
classcreateComplexType()
method, taking two integers as input:=> CREATE FUNCTION createComplexTest(int, int) RETURNS complexTestType AS 'foo.fee.Fum.complexReturn' IMMUTABLE LANGUAGE java;
Execute the
createComplexTest()
UDF, providing 2 integers as input:=> SELECT createComplexTest(11,22);
createcomplextest -------------------------------------- (11,33,"2016-12-31 23:04:09.388-08") (1 row)
As described, the UDF, when executed, returns the first input integer, the sum of the first and second input integers, and the current timestamp.
Functions that Return Sets
PL/Java supports user-defined functions that return sets of both scalar and complex types.
The HAWQ backend expects a function that RETURNS
a SETOF
to return one row at a time.
Returning a SETOF <Scalar Type>
To return a set of a scalar type, the Java method must return an object that implements the java.util.Iterator
interface.
Example: Function that returns a SETOF varchar:
Create a new file named
Bar.java
, adding the following text to create a class namedBar
with a single method namedgetNames()
. This method uses anIterator
to collect and return a list of string names:$ cd $PLJAVAWORK/pljex/foo/fee $ vi Bar.java
package foo.fee; import java.util.ArrayList; import java.util.Iterator; public class Bar { public static Iterator getNames() { ArrayList names = new ArrayList(); names.add("Lisa"); names.add("Bob"); names.add("Bill"); names.add("Sally"); return names.iterator(); } }
Compile the
Bar
class (ignore warnings), create the JAR file, and copy the JAR file to the default PL/Java classpath directory:$ javac *.java $ cd ../.. $ jar cf pljex.jar foo $ cp pljex.jar /usr/local/hawq/lib/postgresql/java/
Start the
psql
subsystem:$ psql -d testdb
Add the JAR file to the session-level classpath:
=> SET pljava_classpath='pljex.jar';
Create a PL/Java UDF that invokes the
Bar
classgetNames()
method:=> CREATE FUNCTION getListOfNames() RETURNS SETOF varchar AS 'foo.fee.Bar.getNames' IMMUTABLE LANGUAGE java;
Execute the UDF:
=> SELECT getListOfNames();
getlistofnames ---------------- Lisa Bob Bill Sally (4 rows)
The UDF returns a list of four string names.
Returning a SETOF <Complex Type>
A method returning a set of <complex type> must implement either the org.postgresql.pljava.ResultSetProvider
interface or the org.postgresql.pljava.ResultSetHandle
interface. The interfaces provide optimal handling for distinct use cases. Use org.postgresql.pljava.ResultSetProvider
when you want to dynamically create each row the function returns. Use org.postgresql.pljava.ResultSetHandle
in cases where you want to return the result of an executed query.
Using the ResultSetProvider Interface
The ResultSetProvider
interface has two methods:
boolean assignRowValues(java.sql.ResultSet tupleBuilder, int rowNumber)
void close()
The HAWQ query evaluator calls assignRowValues()
repeatedly until it returns false or until the evaluator decides that it does not need any more rows. At that point, it will call close()
.
Example: Using the ResultSetProvider
Interface
Create a new file named
FumSetOfComplex.java
, adding the following text to create a class namedFumSetOfComplex
that implements theResultSetProvider
interface:$ cd $PLJAVAWORK/pljex/foo/fee $ vi FumSetOfComplex.java
package foo.fee; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Timestamp; import org.postgresql.pljava.ResultSetProvider; public class FumSetOfComplex implements ResultSetProvider { private final int m_base; private final int m_increment; public FumSetOfComplex(int base, int increment) { m_base = base; m_increment = increment; } public boolean assignRowValues(ResultSet receiver, int currentRow) throws SQLException { if(currentRow >= 12) return false; receiver.updateInt(1, m_base); receiver.updateInt(2, m_base + m_increment * currentRow); receiver.updateTimestamp(3, new Timestamp(System.currentTimeMillis())); return true; } public void close() { /* Nothing needed in this example */ } public static ResultSetProvider listComplex(int base, int increment) throws SQLException { return new FumSetOfComplex(base, increment); } }
The
listComplex()
method is called once. It will return NULL if no results are available. If results are available,listComplex()
will return an instance of aResultSetProvider
interface. The Java classFumSetOfComplex
implements this interface to return an instance of itself.assignRowValues()
is called repeatedly until it returns false. At that time,close()
is called.Compile the
FumSetOfComplex
class, create the JAR file, and copy the JAR file to the default PL/Java classpath directory:$ javac -classpath /usr/local/hawq/lib/postgresql/pljava.jar FumSetOfComplex.java $ cd ../.. $ jar cf pljex.jar foo $ cp pljex.jar /usr/local/hawq/lib/postgresql/java/
Start the
psql
subsystem:$ psql -d testdb
Add the JAR file to the session-level classpath:
=> SET pljava_classpath='pljex.jar';
Create a PL/Java UDF that invokes the
FumSetOfComplex
classlistComplexTest()
method:=> CREATE FUNCTION listComplexTest(int, int) RETURNS SETOF complexTestType AS 'foo.fee.FumSetOfComplex.listComplex' IMMUTABLE LANGUAGE java;
Execute the UDF:
=> SELECT listComplexTest(1,2);
testdb=# SELECT listComplexTest(1,2); listcomplextest ------------------------------------- (1,1,"2017-01-01 01:20:32.888-08") (1,3,"2017-01-01 01:20:32.888-08") (1,5,"2017-01-01 01:20:32.888-08") (1,7,"2017-01-01 01:20:32.888-08") (1,9,"2017-01-01 01:20:32.888-08") ... (12 rows)
Using the ResultSetHandle Interface
Classes implementing the ResultSetHandle
interface must include a method to return a ResultSet
named getResultSet()
. The query evaluator will iterate over this set and deliver the ResultSet
contents, one tuple at a time, to the caller until a call to next()
returns false or the evaluator decides that no more rows are needed.
Example: Using the ResultSetHandle
Interface
A
Users
class is defined in the Java example packageorg.postgresql.example
(refer toexample
for example source files):package org.postgresql.example; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import org.postgresql.pljava.ResultSetHandle; public class Users implements ResultSetHandle { private final String m_filter; private Statement m_statement; public Users(String filter) { m_filter = filter; } public ResultSet getResultSet() throws SQLException { m_statement = DriverManager.getConnection("jdbc:default:connection").createStatement(); return m_statement.executeQuery("SELECT * FROM pg_user WHERE " + m_filter); } public void close() throws SQLException { m_statement.close(); } public static ResultSetHandle listSupers() { return new Users("usesuper = true"); } public static ResultSetHandle listNonSupers() { return new Users("usesuper = false"); } }
The
listSupers()
andlistNonSupers()
methods each execute a query to return aResultSetHandle
containing a list of those users with and without superuser privileges, respectively.Copy the
examples.jar
file to the default PL/Java classpath directory:$ cp /usr/local/hawq/share/postgresql/pljava/examples.jar /usr/local/hawq/lib/postgresql/java/
Start the
psql
subsystem:$ psql -d testdb
Add the
examples.jar
JAR file to the session-level classpath:=> SET pljava_classpath='examples.jar';
Create PL/Java UDFs that execute the
listSupers()
andlistNonSupers()
methods in theorg.postgresql.example.Users
class:=> CREATE FUNCTION plistSupers() RETURNS SETOF pg_user AS 'org.postgresql.example.Users.listSupers' LANGUAGE java; => CREATE FUNCTION plistNonSupers() RETURNS SETOF pg_user AS 'org.postgresql.example.Users.listNonSupers' LANGUAGE java;
Execute the UDFs:
=> SELECT plistSupers();
plistsupers ------------------------------- (gpadmin,10,t,t,t,********,,) (1 row)
=> SELECT plistNonSupers();
plistnonsupers --------------- (0 rows)
Using JDBC
PL/Java includes a JDBC driver. This driver invokes HAWQ internal SPI routines. The driver is essential; it is common for functions to make calls back to the database to fetch data. When PL/Java user-defined functions fetch data, they must use the same transactional boundaries that are used by the main function that entered the PL/Java execution context.
You can obtain a PL/Java JDBC driver connection mapping to the current transaction with the following Java statement:
Connection conn =
DriverManager.getConnection("jdbc:default:connection");
After obtaining a connection, you can prepare and execute statements similar to other JDBC connections. Refer to the Users
class Java source code from the example above.
Limitations of the PL/Java JDBC driver include the following:
- A transaction cannot be managed in any way. As such, you cannot use the following methods on the JDBC connection:
commit()
rollback()
setAutoCommit()
setTransactionIsolation()
- Savepoints are available, with some restrictions. A savepoint cannot outlive the function in which it was set, and it must be rolled back or released by that same function.
- A
ResultSet
returned fromexecuteQuery()
is alwaysFETCH_FORWARD
andCONCUR_READ_ONLY
. CallableStatement
(for stored procedures) is not implemented.- The types
Clob
andBlob
are not completely implemented. Use the typesbyte[]
andString
forbytea
andtext
, respectively.
Exception Handling
You can catch and handle an exception in the HAWQ backend just like any other exception. The backend ErrorData
structure is exposed as a property in the org.postgresql.pljava.internal.ServerException
class (derived from java.sql.SQLException
), and the Java try/catch
construct is synchronized with the backend mechanism.
Important: If the backend generates an exception and you have set a savepoint, the exception condition is reset when the savepoint is rolled back, allowing you to continue your execution. If the backend has generated an exception and you have not used a savepoint, then you cannot execute backend functions until your function propagates the error and returns.
Savepoints
HAWQ exposes savepoints using the java.sql.Connection
interface. Two restrictions apply:
- A savepoint must be rolled back or released in the function in which it was set.
- A savepoint must not outlive the function from which it was set.
Logging
PL/Java uses the standard Java Logger. For example:
Logger.getAnonymousLogger().info( "Time is " + new
Date(System.currentTimeMillis()));
The logger uses a handler that maps the current setting of the HAWQ log_min_messages
server configuration parameter to a valid Java logging level, using the HAWQ backend function elog()
to output all messages.
Note: The log_min_messages
setting is read from the database the first time a PL/Java function in a session is executed and can only be changed by restarting the HAWQ session.
The table below identifies the Java to HAWQ log level mapping:
Table 2: PL/Java Logging Levels Mappings
java.util.logging.Level | HAWQ Level |
---|---|
SEVERE | ERROR |
WARNING | WARNING |
CONFIG | LOG |
INFO | INFO |
FINE | DEBUG1 |
FINER | DEBUG2 |
FINEST | DEBUG3 |
Example
The following example:
- Creates a Java class with a single method.
- Creates a PL/Java UDF that invokes the method.
- Executes the PL/Java UDF on a simple table.
Note: This example requires a Java SDK be installed on your development system.
Create a work area for the example:
$ mkdir -p $PLJAVAWORK/example/com/exco/app $ cd $PLJAVAWORK/example/com/exco/app
Create a new file named
SubStr.java
, adding the following text to create a class namedSubStr
with a single method namedsubstring()
. This method takes a text string and two index integers as input and returns the string bounded by the indexes:$ vi SubStr.java
package com.exco.app; import java.util.logging.Logger; public class SubStr { public static String substring(String text, int beginIndex, int endIndex) { return text.substring(beginIndex, endIndex); } }
Compile the
SubStr
class, create a JAR file namedexsubstr.jar
, and copy this JAR file to the default PL/Java classpath directory:$ javac *.java $ cd ../../.. $ jar cf exsubstr.jar com $ cp exsubstr.jar /usr/local/hawq/lib/postgresql/java/
Start the
psql
subsystem:$ psql -d testdb
Add the JAR file to the session-level classpath:
=> SET pljava_classpath='exsubstr.jar';
Create a HAWQ internal table named
extblwstrings
:=> CREATE TABLE extblwstrings (a varchar) DISTRIBUTED randomly;
Insert some string data into the
extblwstrings
table:=> INSERT INTO extblwstrings VALUES ('my string'); => INSERT INTO extblwstrings VALUES ('secondstring'); => INSERT INTO extblwstrings VALUES ('abcdefghij');
Create a PL/Java UDF that invokes the
com.exco.app.SubStr
classsubstring()
method defined earlier:=> CREATE OR REPLACE FUNCTION ex_getsubstring(varchar, int, int) RETURNS varchar AS 'com.exco.app.SubStr.substring' LANGUAGE java;
Execute the UDF:
=> SELECT ex_getsubstring( a, 3, 7) FROM extblwstrings;
ex_getsubstring ----------------- stri onds defg (3 rows)
If you add each of the above SQL commands to a file, you can run the commands from the command line or the
psql
subsystem. Add the following text to a file named/tmp/myexample.sql
:$ vi /tmp/myexample.sql
DROP TABLE IF EXISTS extblwstrings; SET pljava_classpath='exsubstr.jar'; CREATE TABLE extblwstrings (a varchar) DISTRIBUTED randomly; INSERT INTO extblwstrings VALUES ('my string'); INSERT INTO extblwstrings VALUES ('secondstring'); INSERT INTO extblwstrings VALUES ('abcdefghij'); CREATE OR REPLACE FUNCTION ex_getsubstring(varchar, int, int) RETURNS varchar AS 'com.exco.app.SubStr.substring' LANGUAGE java; SELECT ex_getsubstring( a, 3, 7) FROM extblwstrings;
Run the
myexample.sql
script file:$ psql -d testdb -f /tmp/myexample.sql DROP TABLE SET CREATE TABLE INSERT 0 1 INSERT 0 1 INSERT 0 1 CREATE FUNCTION ex_getsubstring ----------------- stri onds defg (3 rows)
$ psql -d testdb
=> \i /tmp/myexample.sql ...