Loading Data with SQL
This topic describes several ways to load data to HEAVY.AI using SQL commands.
If there is a potential for duplicate entries, and you want to avoid loading duplicate rows, see How can I avoid creating duplicate rows? on the Troubleshooting page.
If a source file uses a reserved word, HEAVY.AI automatically adds an underscore at the end of the reserved word. For example,
year
is converted toyear_
.
COPY FROM
CSV/TSV Import
Use the following syntax for CSV and TSV files:
<file pattern>
must be local on the server. The file pattern can contain wildcards if you want to load multiple files. In addition to CSV, TSV, and TXT files, you can import compressed files in TAR, ZIP, 7-ZIP, RAR, GZIP, BZIP2, or TGZ format.
COPY FROM
appends data from the source into the target table. It does not truncate the table or overwrite existing data.
You can import client-side files (\copy
command in heavysql
) but it is significantly slower. For large files, HEAVY.AI recommends that you first scp
the file to the server, and then issue the COPY command.
HEAVYAI supports Latin-1 ASCII format and UTF-8. If you want to load data with another encoding (for example, UTF-16), convert the data to UTF-8 before loading it to HEAVY.AI.
Available properties in the optional WITH clause are described in the following table.
Parameter | Description | Default Value |
| A single-character string for the delimiter between input values contained within an array. |
|
| A two-character string consisting of the start and end characters surrounding an array. |
|
| Size of the input file buffer, in bytes. |
|
| A single-character string for the delimiter between input fields; most commonly:
Other delimiters include Note: OmniSci does not use file extensions to determine the delimiter. |
|
| A single-character string for escaping quotes. |
|
| Import geo data. Deprecated and scheduled for removal in a future release. |
|
| Either |
|
| A single-character string for terminating each line. |
|
| In OmniSci, POINT fields require longitude before latitude. Use this parameter based on the order of longitude and latitude in your source data. |
|
| Number of records that the COPY statement allows to be rejected before terminating the COPY command. Records can be rejected for a number of reasons, including invalid content in a field, or an incorrect number of columns. The details of the rejected records are reported in the ERROR log. COPY returns a message identifying how many records are rejected. The records that are not rejected are inserted into the table, even if the COPY stops because the Note: If you run the COPY command from OmniSci Immerse, the COPY command does not return messages to Immerse once the SQL is verified. Immerse does not show messages about data loading, or about data-quality issues that result in |
|
| A string pattern indicating that a field is NULL. | An empty string, |
| Import data in Parquet format. Parquet files can be compressed using Snappy. Other archives such as .gz or .zip must be unarchived before you import the data. Deprecated and scheduled for removal in a future release. |
|
| Indicates that the input file is plain text so that it bypasses the | CSV, TSV, and TXT are handled as plain text. |
| A single-character string for quoting a field. |
|
| Either |
|
| When importing into GEOMETRY(*, 4326) columns, specifies the SRID of the incoming geometries, all of which are transformed on the fly. For example, to import from a file that contains EPSG:2263 (NAD83 / New York Long Island) geometries, run the COPY command and include WITH (source_srid=2263). Data targeted at non-4326 geometry columns is not affected. | 0 |
| Type can be one of the following:
|
|
| Number of threads for performing the data import. | Number of CPU cores on the system |
| Indicate whether to trim side spaces (' |
|
By default, the CSV parser assumes one row per line. To import a file with multiple lines in a single field, specify threads = 1
in the WITH
clause.
Examples
Geo Import
You can use COPY FROM
to import geo files. You can create the table based on the source file and then load the data:
You can also append data to an existing, predefined table:
Use the following syntax, depending on the file source.
Local server |
|
Web site |
|
Amazon S3 |
|
If you are using
COPY FROM
to load to an existing table, the field type must match the metadata of the source file. If it does not,COPY FROM
throws an error and does not load the data.COPY FROM
appends data from the source into the target table. It does not truncate the table or overwrite existing data.Supported
DATE
formats when usingCOPY FROM
includemm/dd/yyyy
,dd-mmm-yy
,yyyy-mm-dd
, anddd/mmm/yyyy
.COPY FROM
fails for records with latitude or longitude values that have more than 4 decimal places.
The following WITH
options are available for geo file imports from all sources.
| Enable or disable automatic render group assignment for polygon imports; can be |
|
| Coordinate type used; must be |
|
| Coordinates encoding; can be |
|
| Coordinates spatial reference; must be |
|
| Explodes MULTIPOLYGON, MULTILINESTRING, or MULTIPOINT geo data into multiple rows in a POLYGON, LINESTRING, or POINT column, with all other columns duplicated. When importing from a WKT CSV with a MULTIPOLYGON column, the table must have been manually created with a POLYGON column. When importing from a geo file, the table is automatically created with the correct type of column. When the input column contains a mixture of MULTI and single geo, the MULTI geo are exploded, but the singles are imported normally. For example, a column containing five two-polygon MULTIPOLYGON rows and five POLYGON rows imports as a POLYGON column of fifteen rows. |
|
Currently, a manually created geo table can have only one geo column. If it has more than one, import is not performed.
Any GDAL-supported file type can be imported. If it is not supported, GDAL throws an error.
An ESRI file geodatabase can have multiple layers, and importing it results in the creation of one table for each layer in the file. This behavior differs from that of importing shapefiles, GeoJSON, or KML files, which results in a single table. For more information, see Importing an ESRI File Geodatabase.
The first compatible file in the bundle is loaded; subfolders are traversed until a compatible file is found. The rest of the contents in the bundle are ignored. If the bundle contains multiple filesets, unpack the file manually and specify it for import.
For more information about importing specific geo file formats, see Importing Geospatial Files.
CSV files containing WKT strings are not considered geo files and should not be parsed with the source_type='geo'
option. When importing WKT strings from CSV files, you must create the table first. The geo column type and encoding are specified as part of the DDL. For example, for a polygon with no encoding, try the following:
Raster Import
You can use COPY FROM
to import raster files supported by GDAL as one row per pixel, where a pixel may consist of one or more data bands, with optional corresponding pixel or world-space coordinate columns. This allows the data to be rendered as a point/symbol cloud that approximates a 2D image.
Use the same syntax that you would for geo files, depending on the file source.
The following WITH
options are available for raster file imports from all sources.
Parameter | Description | Default Value |
---|---|---|
| Allows specification of one or more band names to selectively import; useful in the context of large raster files where not all the bands are relevant.
Bands are imported in the order provided, regardless of order in the file.
You can rename bands using | An empty string, indicating to import all bands from all datasets found in the file. |
| Specifies the processing for floating-point coordinate values:
|
|
| Specifies the required type for the additional pixel coordinate columns:
|
|
Illegal combinations of raster_point_type
and raster_point_transform
are rejected. For example, world
transform can only be performed on raster files that have a geospatial coordinate system in their metadata, and cannot be performed if <type>
is an integer format (which cannot represent world-space coordinate values).
Any GDAL-supported file type can be imported. If it is not supported, GDAL throws an error.
HDF5 and possibly other GDAL drivers may not be thread-safe, so use WITH (threads=1)
when importing.
Archive file import (.zip, .tar, .tar.gz) is not currently supported for raster files.
Band and Column Names
The following raster file formats contain the metadata required to derive sensible names for the bands, which are then used for their corresponding columns:
GRIB2 - geospatial/meteorological format
OME TIFF - an OpenMicroscopy format
The band names from the file are sanitized (illegal characters and spaces removed) and de-duplicated (addition of a suffix in cases where the same band name is repeated within the file or across datasets).
For other formats, the columns are named band_1_1
, band_1_2
, and so on.
The sanitized and de-duplicated names must be used for the raster_import_bands
option.
Band and Column Data Types
Raster files can have bands in the following data types:
Signed or unsigned 8-, 16-, or 32-bit integer
32- or 64-bit floating point
Complex number formats (not supported)
Signed data is stored in the directly corresponding column type, as follows:
int8
-> TINYINT
int16
-> SMALLINT
int32
-> INT
float32
-> FLOAT
float64
-> DOUBLE
Unsigned integer column types are not currently supported, so any data of those types is converted to the next size up signed column type:
uint8
-> SMALLINT
uint16
-> INT
uint32
-> BIGINT
Column types cannot currently be overridden.
ODBC Import
ODBC import is currently a beta feature.
You can use COPY FROM
to import data from a Relational Database Management System (RDMS) or data warehouse using the Open Database Connectivity (ODBC) interface.
The following WITH options are available for ODBC import.
| Data source name (DSN) configured in the odbc.ini file. Only one of |
| A set of semicolon-separated key=value pairs that define the connection parameters for an RDMS. For example:
Only one of |
| Comma-separated list of column names that provide a unique ordering for the result set returned by the specified SQL SELECT statement. |
| Username on the RDMS. Applies only when |
| Password credential for the RDMS. This option only applies when |
| A set of semicolon separated “key=value” pairs, which define the access credential parameters for an RDMS. For example:
Applies only when |
Examples
Using a data source name:
Using a connection string:
For information about using ODBC HeavyConnect, see ODBC Data Wrapper Reference.
Globbing, Filtering, and Sorting Parquet and CSV Files
These examples assume the following folder and file structure:
Globbing
Local Parquet/CSV files can now be globbed by specifying either a path name with a wildcard or a folder name.
Globbing a folder recursively returns all files under the specified folder. For example,
COPY table_1 FROM ".../subdir";
returns file_3
, file_4
, file_5
.
Globbing with a wildcard returns any file paths matching the expanded file path. So
COPY table_1 FROM ".../subdir/file*";
returns file_3
, file_4
.
Does not apply to S3 cases, because file paths specified for S3 always use prefix matching.
Filtering
Use file filtering to filter out unwanted files that have been globbed. To use filtering, specify the REGEX_PATH_FILTER
option. Files not matching this pattern are not included on import. Consistent across local and S3 use cases.
The following regex expression:
COPY table_1 from ".../" WITH (REGEX_PATH_FILTER=".*file_[4-5]");
returns file_4
, file_5
.
Sorting
Use the FILE_SORT_ORDER_BY
option to specify the order in which files are imported.
FILE_SORT_ORDER_BY Options
pathname
(default)date_modified
regex
*regex_date
*regex_number
*
*FILE_SORT_REGEX option required
Using FILE_SORT_ORDER_BY
COPY table_1 from ".../" WITH (FILE_SORT_ORDER_BY="date_modified");
Using FILE_SORT_ORDER_BY with FILE_SORT_REGEX
Regex sort keys are formed by the concatenation of all capture groups from the FILE_SORT_REGEX
expression. Regex sort keys are strings but can be converted to dates or FLOAT64 with the appropriate FILE_SORT_ORDER_BY
option. File paths that do not match the provided capture groups or that cannot be converted to the appropriate date or FLOAT64 are treated as NULLs and sorted to the front in a deterministic order.
Multiple Capture Groups:
FILE_SORT_REGEX=".*/data_(.*)_(.*)_"
/root/dir/unmatchedFile
→ <NULL>
/root/dir/data_andrew_54321_
→ andrew54321
/root/dir2/data_brian_Josef_
→ brianJosef
Dates:
FILE_SORT_REGEX=".*data_(.*)
/root/data_222
→ <NULL> (invalid date conversion)
/root/data_2020-12-31
→ 2020-12-31
/root/dir/data_2021-01-01
→ 2021-01-01
Import:
COPY table_1 from ".../" WITH (FILE_SORT_ORDER_BY="regex", FILE_SORT_REGEX=".*file_(.)");
Geo and Raster File Globbing
Limited filename globbing is supported for both geo and raster import. For example, to import a sequence of same-format GeoTIFF files into a single table, you can run the following:
COPY table FROM '/path/path/something_*.tiff' WITH (source_type='raster_file')
The files are imported in alphanumeric sort order, per regular glob rules, and all appended to the same table. This may fail if the files are not all of the same format (band count, names, and types).
For non-geo/raster files (CSV and Parquet), you can provide just the path to the directory OR a wildcard; for example:
/path/to/directory/
/path/to/directory
/path/to/directory/*
For geo/raster files, a wildcard is required, as shown in the last example.
SQLImporter
SQLImporter is a Java utility run at the command line. It runs a SELECT statement on another database through JDBC and loads the result set into HeavyDB.
Usage
Flags
HEAVY.AI recommends that you use a service account with read-only permissions when accessing data from a remote database.
In release 4.6 and higher, the user ID (-u
) and password (-p
) flags are required. If your password includes a special character, you must escape the character using a backslash (\).
If the table does not exist in HeavyDB, SQLImporter
creates it. If the target table in HeavyDB does not match the SELECT statement metadata, SQLImporter
fails.
If the truncate flag is used, SQLImporter
truncates the table in HeavyDB before transferring the data. If the truncate flag is not used, SQLImporter
appends the results of the SQL statement to the target table in HeavyDB.
The -i
argument provides a path to an initialization file. Each line of the file is sent as a SQL statement to the remote database. You can use -i
to set additional custom parameters before the data is loaded.
The SQLImporter
string is case-sensitive. Incorrect case returns the following:
Error: Could not find or load main class com.mapd.utility.SQLimporter
PostgreSQL/PostGIS Support
You can migrate geo data types from a PostgreSQL database. The following table shows the correlation between PostgreSQL/PostGIS geo types and HEAVY.AI geo types.
point | point |
lseg | linestring |
linestring | linestring |
polygon | polygon |
multipolygon | multipolygon |
Other PostgreSQL types, including circle, box, and path, are not supported.
HeavyDB Example
By default, 100,000 records are selected from HeavyDB. To select a larger number of records, use the LIMIT statement.
Hive Example
Google Big Query Example
PostgreSQL Example
SQLServer Example
MySQL Example
StreamInsert
Stream data into HeavyDB by attaching the StreamInsert program to the end of a data stream. The data stream can be another program printing to standard out, a Kafka endpoint, or any other real-time stream output. You can specify the appropriate batch size, according to the expected stream rates and your insert frequency. The target table must exist before you attempt to stream data into the table.
Setting | Default | Description | |
| n/a | Name of the target table in OmniSci | |
| n/a | Name of the target database in OmniSci | |
| n/a | User name | |
| n/a | User password | |
| n/a | Name of OmniSci host | |
| comma (,) | Field delimiter, in single quotes | |
| newline (\n) | Line delimiter, in single quotes | |
| 10000 | Number of records in a batch | |
| 10 | Number of attempts before job fails | |
| 5 | Wait time in seconds after server connection failure | |
| n/a | String that represents null values | |
| 6274 | Port number for OmniSciDB on localhost | |
`-t | --transform` | n/a | Regex transformation |
| False | Print error messages | |
| False | Print description of transform. | |
| n/a | List options |
For more information on creating regex transformation statements, see RegEx Replace.
Example
Importing AWS S3 Files
You can use the SQL COPY FROM
statement to import files stored on Amazon Web Services Simple Storage Service (AWS S3) into an HEAVY.AI table, in much the same way you would with local files. In the WITH
clause, specify the S3 credentials and region information of the bucket accessed.
Access key and secret key, or session token if using temporary credentials, and region are required. For information about AWS S3 credentials, see https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys.
HEAVY.AI does not support the use of asterisks (*) in URL strings to import items. To import multiple files, pass in an S3 path instead of a file name, and COPY FROM
imports all items in that path and any subpath.
Custom S3 Endpoints
HEAVY.AI supports custom S3 endpoints, which allows you to import data from S3-compatible services, such as Google Cloud Storage.
To use custom S3 endpoints, add s3_endpoint
to the WITH
clause of a COPY FROM
statement; for example, to set the S3 endpoint to point to Google Cloud Services:
For information about interoperability and setup for Google Cloud Services, see Cloud Storage Interoperability.
You can also configure custom S3 endpoints by passing the s3_endpoint
field to Thrift import_table
.
Examples
The following examples show failed and successful attempts to copy the table trips from AWS S3.
The following example imports all the files in the trip.compressed
directory.
trips Table
The table trips
is created with the following statement:
Using Server Privileges to Access AWS S3
You can configure HEAVY.AI server to provide AWS credentials, which allows S3 Queries to be run without specifying AWS credentials. S3 Regions are not configured by the server, and will need to be passed in either as a client side environment variable or as an option with the request.
Example Commands
\detect
:$ export AWS_REGION=us-west-1
heavysql > \detect <s3-bucket-uri
import_table
:$ ./Heavyai-remote -h localhost:6274 import_table "'<session-id>'" "<table-name>" '<s3-bucket-uri>' 'TCopyParams(s3_region="'us-west-1'")'
COPY FROM
:heavysql > COPY <table-name> FROM <s3-bucket-uri> WITH(s3_region='us-west-1');
Configuring AWS Credentials
Enable server privileges in the server configuration file
heavy.conf
allow-s3-server-privileges = true
For bare metal installations set the following environment variables and restart the HeavyDB service:
AWS_ACCESS_KEY_ID=xxx AWS_SECRET_ACCESS_KEY=xxx AWS_SESSION_TOKEN=xxx
(required only for AWS STS credentials)For HeavyDB docker images, start a new container mounted with the configuration file using the option:
-v <dirname-containing-heavy.conf>:/var/lib/heavyai
and set the following environment options:-e AWS_ACCESS_KEY_ID=xxx -e AWS_SECRET_ACCESS_KEY=xxx -e AWS_SESSION_TOKEN=xxx
(required only for AWS STS credentials)
KafkaImporter
You can ingest data from an existing Kafka producer to an existing table in HEAVY.AI using KafkaImporter
on the command line:
KafkaImporter
requires a functioning Kafka cluster. See the Kafka website and the Confluent schema registry documentation.
KafkaImporter Options
Setting | Default | Description | |
| n/a | Name of the target table in OmniSci | |
| n/a | Name of the target database in OmniSci | |
| n/a | User name | |
| n/a | User password | |
| localhost | Name of OmniSci host | |
| 6274 | Port number for OmniSciDB on localhost | |
| n/a | Use HTTP transport | |
| n/a | Use HTTPS transport | |
| n/a | Do not verify validity of SSL certificate | |
| n/a | Path to the trusted server certificate; initiates an encrypted connection | |
| comma (,) | Field delimiter, in single quotes | |
| newline (\n) | Line delimiter, in single quotes | |
| 10000 | Number of records in a batch | |
| 10 | Number of attempts before job fails | |
| 5 | Wait time in seconds after server connection failure | |
| n/a | String that represents null values | |
| false | Whether the source contains quoted fields | |
`-t | --transform` | n/a | Regex transformation |
| false | Print error messages | |
| false | Print description of transform | |
| n/a | List options | |
| n/a | Kafka group ID | |
| n/a | The Kafka topic to be ingested | |
| localhost:9092 | One or more brokers |
KafkaImporter Logging Options
KafkaImporter Logging Options | ||
Setting | Default | Description |
| mapd_log | Logging directory; can be relative to data directory or absolute |
| n/a | Log filename relative to logging directory; has format KafkaImporter.{SEVERITY}.%Y%m%d-%H%M%S.log |
| n/a | Symlink to active log; has format KafkaImporter.{SEVERITY} |
| INFO | Log-to-file severity level: INFO, WARNING, ERROR, or FATAL |
| ERROR | Log-to-console severity level: INFO, WARNING, ERROR, or FATAL |
| n/a | Log channel debug info |
| n/a | Flush logging buffer to file after each message |
| 100 | Maximum number of log files to keep |
| 20,971,520 | Minimum number of bytes available on the device before oldest log files are deleted |
| 1 | Start new log files at midnight |
| 10485760 | Maximum file size, in bytes, before new log files are created |
Configure KafkaImporter
to use your target table. KafkaImporter
listens to a pre-defined Kafka topic associated with your table. You must create the table before using the KafkaImporter
utility. For example, you might have a table named customer_site_visit_events
that listens to a topic named customer_site_visit_events_topic
.
The data format must be a record-level format supported by HEAVY.AI.
KafkaImporter
listens to the topic, validates records against the target schema, and ingests topic batches of your designated size to the target table. Rejected records use the existing reject reporting mechanism. You can start, shut down, and configure KafkaImporter
independent of the HeavyDB engine. If KafkaImporter is running and the database shuts down, KafkaImporter shuts down as well. Reads from the topic are nondestructive.
KafkaImporter
is not responsible for event ordering; a streaming platform outside HEAVY.AI (for example, Spark streaming, flink) should handle the stream processing. HEAVY.AI ingests the end-state stream of post-processed events.
KafkaImporter
does not handle dynamic schema creation on first ingest, but must be configured with a specific target table (and its schema) as the basis. There is a 1:1 correspondence between target table and topic.
StreamImporter
StreamImporter is an updated version of the StreamInsert utility used for streaming reads from delimited files into HeavyDB. StreamImporter uses a binary columnar load path, providing improved performance compared to StreamInsert.
You can ingest data from a data stream to an existing table in HEAVY.AI using StreamImporter
on the command line.
StreamImporter Options
Setting | Default | Description | |
| n/a | Name of the target table in OmniSci | |
| n/a | Name of the target database in OmniSci | |
| n/a | User name | |
| n/a | User password | |
| n/a | Name of OmniSci host | |
| 6274 | Port number for OmniSciDB on localhost | |
| n/a | Use HTTP transport | |
| n/a | Use HTTPS transport | |
| n/a | Do not verify validity of SSL certificate | |
| n/a | Path to the trusted server certificate; initiates an encrypted connection | |
| comma (,) | Field delimiter, in single quotes | |
| n/a | String that represents null values | |
| newline (\n) | Line delimiter, in single quotes | |
|
| Either | |
| 10000 | Number of records in a batch | |
| 10 | Number of attempts before job fails | |
| 5 | Wait time in seconds after server connection failure | |
`-t | --transform` | n/a | Regex transformation |
| false | Print error messages | |
| false | Print description of transform | |
| n/a | List options |
StreamImporter Logging Options
Setting | Default | Description |
| mapd_log | Logging directory; can be relative to data directory or absolute |
| n/a | Log filename relative to logging directory; has format StreamImporter.{SEVERITY}.%Y%m%d-%H%M%S.log |
| n/a | Symlink to active log; has format StreamImporter.{SEVERITY} |
| INFO | Log-to-file severity level: INFO, WARNING, ERROR, or FATAL |
| ERROR | Log-to-console severity level: INFO, WARNING, ERROR, or FATAL |
| n/a | Log channel debug info |
| n/a | Flush logging buffer to file after each message |
| 100 | Maximum number of log files to keep |
| 20,971,520 | Minimum number of bytes available on the device before oldest log files are deleted |
| 1 | Start new log files at midnight |
| 10485760 | Maximum file size, in bytes, before new log files are created |
Configure StreamImporter
to use your target table. StreamImporter
listens to a pre-defined data stream associated with your table. You must create the table before using the StreamImporter
utility.
The data format must be a record-level format supported by HEAVY.AI.
StreamImporter
listens to the stream, validates records against the target schema, and ingests batches of your designated size to the target table. Rejected records use the existing reject reporting mechanism. You can start, shut down, and configure StreamImporter
independent of the HeavyDB engine. If StreamImporter is running but the database shuts down, StreamImporter shuts down as well. Reads from the stream are non-destructive.
StreamImporter
is not responsible for event ordering - a first class streaming platform outside HEAVY.AI (for example, Spark streaming, flink) should handle the stream processing. HEAVY.AI ingests the end-state stream of post-processed events.
StreamImporter
does not handle dynamic schema creation on first ingest, but must be configured with a specific target table (and its schema) as the basis.
There is a 1:1 correspondence between target table and a stream record.
Importing Data from HDFS with Sqoop
You can consume a CSV or Parquet file residing in HDFS (Hadoop Distributed File System) into HeavyDB.
Copy the HEAVY.AI JDBC driver into the Apache Sqoop library, normally found at /usr/lib/sqoop/lib/.
Example
The following is a straightforward import command. For more information on options and parameters for using Apache Sqoop, see the user guide at sqoop.apache.org.
The --connect
parameter is the address of a valid JDBC port on your HEAVY.AI instance.
Troubleshooting: Avoiding Duplicate Rows
To detect duplication prior to loading data into HeavyDB, you can perform the following steps. For this example, the files are labeled A,B,C...Z.
Load file A into table
MYTABLE
.Run the following query.
There should be no rows returned; if rows are returned, your first A file is not unique.
Load file B into table
TEMPTABLE
.Run the following query.
There should be no rows returned if file B is unique. Fix B if the information is not unique using details from the selection.
Load the fixed B file into
MYFILE
.Drop table
TEMPTABLE
.Repeat steps 3-6 for the rest of the set for each file prior to loading the data to the real
MYTABLE
instance.
Last updated