Netezza Sink
The Netezza sink plugin is available in the Hub.
Writes records to a Netezza table. Each record will be written to a row in the table. For example, you periodically build a recommendation model for products on your online store. The model is stored in a FileSet and you want to export the contents of the FileSet to a Netezza table where it can be served to your users.
Column names are autodetected from input schema.
Configuration
Property | Macro Enabled? | Description |
---|---|---|
Reference Name | No | Required. Name used to uniquely identify this sink for lineage, annotating metadata, etc. |
Driver Name | No | 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 running on. Default is 5480. |
Database | Yes | Required. Netezza database name. |
Table Name | Yes | Required. Name of the table to export to. |
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 | Optional. 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 write output records to “users” table of Netezza database named “prod” that is running on “localhost”, port 5480, as “test” user with “testpwsd” password. Ensure that the driver for Netezza is installed. You can also provide driver name for some specific driver, otherwise “netezza” will be used, and then configure the plugin with:
Property | Value |
---|---|
Reference Name |
|
Driver Name |
|
Host |
|
Port |
|
Database |
|
Table Name |
|
Username |
|
Password |
|
Data Type Mapping
Netezza Data Type | CDAP Schema Data Type | Comment |
---|---|---|
BOOLEAN | boolean |
|
BYTEINT | int |
|
CHAR | string |
|
DATE | date |
|
NUMERIC, DECIMAL | decimal |
|
FLOAT(1-6) | float | Floating point number with precision of 6 or less |
FLOAT(7-16) | double | Floating point number with precision of 7 to 15 |
REAL | float | Equivalent to FLOAT(6) |
DOUBLE PRECISION | double |
|
INTEGER | int |
|
SMALLINT | int |
|
BIGINT | long |
|
NCHAR | string |
|
NVARCHAR | string |
|
TIME | time |
|
TIMETZ, TIME WITH TIME ZONE | string |
|
TIMESTAMP | timestamp |
|
VARCHAR | string |
|
INTERVAL | string |
|
VARBINARY | bytes |
|
ST_GEOMETRY | bytes |
|
Created in 2020 by Google Inc.