Netezza Query Post-run Action

The Netezza Query Post-run action plugin is available in the Hub.

Runs a Netezza query at the end of the pipeline run. Can be configured to run only on success, only on failure, or always at the end of the run.

The action is used whenever you need to run a query at the end of a pipeline run. For example, you may have a pipeline that imports data from a database table to HDFS files. At the end of the run, you may want to run a query that deletes the data that was read from the table.

Configuration

Property

Macro Enabled?

Description

Property

Macro Enabled?

Description

Run Condition

Yes

Optional. When to run the action. Must be 'completion', 'success', or 'failure'. Defaults to 'success'. If set to 'completion', the action will be executed regardless of whether the pipeline run succeeded or failed. If set to 'success', the action will only be executed if the pipeline run succeeded. If set to 'failure', the action will only be executed if the pipeline run failed.

Default is success.

Driver Name

Yes

Required. Name of the JDBC driver to use.

Default is netezza.

Host

Yes

Required. Host that Netezza is running on.

Default is localhost.

Port

Yes

Required. Port that Netezza is listening to.

Default is 50000.

Database

Yes

Required. Netezza database name.

Query

Yes

Required. Query to run.

Username

Yes

Optional. User identity for connecting to the specified database.

Password

Yes

Optional. Password to use to connect to the specified database.

Connection Arguments

Yes

A list of arbitrary string key/value pairs as connection arguments. These arguments will be passed to the JDBC driver as connection arguments for JDBC drivers that may need additional configurations.

Example

Suppose you want to delete all records from Netezza table "userEvents" of database "prod" running on localhost, port 5480, without authentication using driver "netezza" if the pipeline completes successfully. Ensure that the driver for Netezza is installed. You can also driver name for some specific driver, otherwise "netezza" will be used, and then configure the plugin with:

Property

Value

Property

Value

Run Condition

success

Driver Name

netezza

Host

localhost

Port

5480

Database

prod

Query

delete * from userEvents



Created in 2020 by Google Inc.