- Create a credential - holds HDFS account authentication information
- Create a data source - holds HDFS connection information; uses the credential for authentication
- Ingest the data - Load data from HDFS; uses the data source to identify the HDFS source
Create Credential
To store the access details for your data source, first create a credential with the CREATE CREDENTIAL command, and reference it in yourCREATE DATA SOURCE statement. This will allow you to
store the authentication details of your connection separately.
Create Data Source
Next, create a data source using the CREATE DATA SOURCE command in Kinetica. The data source defines how Kinetica connects to HDFS.Ingest Data
To initiate the ingest of data into a Kinetica table, use the LOAD INTO command. You can initiate a one-time batch load, or a continuous load using change-data-capture by using the optionSUBSCRIBE = TRUE.
Considerations
The following are some common options used when loading. For the full list of options, see LOAD INTO. For copy/paste examples of many of the options, see Loading Data.Wildcard Ingest
If you want to ingest multiple files inside of an HDFS directory, a “path prefix” can be specified, which will cause all files whose path begins with the given prefix to be included. When using an HDFS data source, the “path prefix” must be the name of an HDFS directory. For example, a “path prefix” of/data/ for FROM FILE PATHS would match all of the following:
/data/geo_0.csv/data/geo_1.csv/data/geo_2.csv
Error Handling
Kinetica has two different error handling modes for dealing with erroneous data. To halt ingestion after a bad record is found, use theABORT mode. To skip erroneous records and continue the ingest, use the
SKIP mode.
To inspect erroneous records, you may use the
BAD RECORD TABLE NAME option.
All bad records encountered will be stored there for review. The bad records
table is limited to 10,000 records by default and may be overridden using the
BAD RECORD TABLE LIMIT option.
Load Specific Columns
In some cases, you may only want to store certain columns from your source data. Use the FIELDS MAPPED BY NAME(…) option, which allows you to specify the desired fields to store in Kinetica.Load Specific Columns Example
DateTime Formatting
Use the COLUMN FORMATS option to format date and time fields into Kinetica Date, Time, and DateTime columns. Time formats are specified using a JSON formatted string. Non-placeholder characters must be wrapped in quotes, which must also be escaped (e.g.'{"dt": {"date": "\"(\"YYYY\")\" Mon, DD"}}'). Alternatively, you can use
the ? character as a wildcard character. Note that
Kinetica does not handle or store timezones and they will be discarded.
See the full list of supported
date and time format codes.