40 KiB
id | title | sidebar_label |
---|---|---|
reference | SQL-based ingestion reference | Reference |
This page describes SQL-based batch ingestion using the
druid-multi-stage-query
extension, new in Druid 24.0. Refer to the ingestion methods table to determine which ingestion method is right for you.
SQL reference
This topic is a reference guide for the multi-stage query architecture in Apache Druid. For examples of real-world usage, refer to the Examples page.
INSERT
and REPLACE
load data into a Druid datasource from either an external input source, or from another
datasource. When loading from an external datasource, you typically must provide the kind of input source,
the data format, and the schema (signature) of the input file. Druid provides table functions to allow you to
specify the external file. There are two kinds. EXTERN
works with the JSON-serialized specs for the three
items, using the same JSON you would use in native ingest. A set of other, input-source-specific functions
use SQL syntax to specify the format and the input schema. There is one function for each input source. The
input-source-specific functions allow you to use SQL query parameters to specify the set of files (or URIs),
making it easy to reuse the same SQL statement for each ingest: just specify the set of files to use each time.
EXTERN
Function
Use the EXTERN
function to read external data. The function has two variations.
Function variation 1, with the input schema expressed as JSON:
SELECT
<column>
FROM TABLE(
EXTERN(
'<Druid input source>',
'<Druid input format>',
'<row signature>'
)
)
EXTERN
consists of the following parts:
- Any Druid input source as a JSON-encoded string.
- Any Druid input format as a JSON-encoded string.
- A row signature, as a JSON-encoded array of column descriptors. Each column descriptor must have a
name
and atype
. The type can bestring
,long
,double
, orfloat
. This row signature is used to map the external data into the SQL layer.
Variation 2, with the input schema expressed in SQL using an EXTEND
clause. (See the next
section for more detail on EXTEND
). This format also uses named arguments to make the
SQL a bit easier to read:
SELECT
<column>
FROM TABLE(
EXTERN(
inputSource => '<Druid input source>',
inputFormat => '<Druid input format>'
) (<columns>)
)
The input source and format are as above. The columns are expressed as in a SQL CREATE TABLE
.
Example: (timestamp VARCHAR, metricType VARCHAR, value BIGINT)
. The optional EXTEND
keyword
can precede the column list: EXTEND (timestamp VARCHAR...)
.
For more information, see Read external data with EXTERN.
HTTP
, INLINE
, LOCALFILES
and S3
Functions
While EXTERN
allows you to specify an external table using JSON, other table functions allow you
describe the external table using SQL syntax. Each function works for one specific kind of input
source. You provide properties using SQL named arguments. The row signature is given using the
Druid SQL EXTEND
keyword using SQL syntax and types.
The set of table functions and formats is preliminary in this release.
Function format:
SELECT
<column>
FROM TABLE(
http(
userName => 'bob',
password => 'secret',
uris => ARRAY['http:example.com/foo.csv', 'http:example.com/bar.csv'],
format => 'csv'
)
) EXTEND (x VARCHAR, y VARCHAR, z BIGINT)
For each function, you provide:
- The function name indicates the kind of input source:
http
,inline
orlocalfiles
. - The function arguments correspond to a subset of the JSON fields for that input source.
- A
format
argument to indicate the desired input format. - Additional arguments required for the selected format type.
Note that the EXTEND
keyword is optional. The following is equally valid (and perhaps
more convenient):
SELECT
<column>
FROM TABLE(
http(
userName => 'bob',
password => 'secret',
uris => ARRAY['http:example.com/foo.csv', 'http:example.com/bar.csv'],
format => 'csv'
)
) (x VARCHAR, y VARCHAR, z BIGINT)
Function Arguments
These table functions are intended for use with the SQL by-name argument syntax as shown above. Because the functions include all parameters for all formats, using positional calls is both cumbersome and error-prone.
Function argument names are generally the same as the JSON field names, except
as noted below. Each argument has a SQL type which matches the JSON type. For
arguments that take a string list in JSON, use the SQL ARRAY[...]
syntax in
SQL as shown in the above example.
Array parameters are good candidates for use in parameterized queries. That is:
SELECT
<column>
FROM TABLE(
http(
userName => 'bob',
password => 'secret',
uris => ?,
format => 'csv'
)
) (x VARCHAR, y VARCHAR, z BIGINT)
Provide the list of URIs (in this case) as a query parameter in each ingest. Doing so is simpler than writing a script to insert the array into the SQL text.
HTTP
Function
The HTTP
table function represents the
HTTP input source
to read from an HTTP server. The function accepts the following arguments:
userName
(VARCHAR
) - Same as JSONhttpAuthenticationUsername
.password
(VARCHAR
) - Same ashttpAuthenticationPassword
when used with the default option.passwordEnvVar
(VARCHAR
) - Same as the HTTPhttpAuthenticationPassword
when used with the"type": "environment"
option.uris
(ARRAY
ofVARCHAR
)
INLINE
Function
The INLINE
table function represents the
Inline input source
which provides data directly in the table function. Parameter:
data
(ARRAY
ofVARCHAR
) - Data lines, without a trailing newline, as an array.
Example:
SELECT ...
FROM TABLE(
inline(
data => ARRAY[
'a,b',
'c,d'],
format => 'csv'
)
) (x VARCHAR, y VARCHAR)
LOCALFILES
Function
The LOCALFILES
table function represents the
Local input source which reads
files from the file system of the node running Druid. This is most useful for single-node
installations. The function accepts the following parameters:
baseDir
filter
files
When the local files input source is used directly in an extern
function, or ingestion spec, you
can provide either baseDir
and filter
or files
but not both. This function, however, allows
you to provide any of the following combinations:
baseDir
- Matches all files in the given directory. (Assumes the filter is*
.)baseDir
andfilter
- Match files in the given directory using the filter.baseDir
andfiles
- A set of files relative tobaseDir
.files
- The files should be absolute paths, else they will be computed relative to Druid's working directory (usually the Druid install directory.)
Examples:
To read All files in /tmp, which must be CSV files:
SELECT ...
FROM TABLE(
localfiles(
baseDir => '/tmp',
format => 'csv')
) (x VARCHAR, y VARCHAR)
Some additional variations (omitting the common bits):
-- CSV files in /tmp
localfiles(baseDir => '/tmp',
filter => '*.csv',
format => 'csv')
-- /tmp/a.csv and /tmp/b.csv
localfiles(baseDir => '/tmp',
files => ARRAY['a.csv', 'b.csv'],
format => 'csv')
-- /tmp/a.csv and /tmp/b.csv
localfiles(files => ARRAY['/tmp/a.csv', '/tmp/b.csv'],
format => 'csv')
S3
Function
The S3
table function represents the
S3 input source which reads
files from an S3 bucket. The function accepts the following parameters to specify the
objects to read:
uris
(ARRAY
ofVARCHAR
)prefix
(VARCHAR
) - Corresponds to the JSONprefixes
property, but allows a single prefix.bucket
(VARCHAR
) - Corresponds to thebucket
field of theobjects
JSON field. SQL does not have syntax for an array of objects. Instead, this function takes a single bucket, and one or more objects within that bucket.paths
(ARRAY
ofVARCHAR
) - Corresponds to thepath
fields of theobject
JSON field. All paths are within the singlebucket
parameter.
The S3 input source accepts one of the following patterns:
uris
- A list of fully-qualified object URIs.prefixes
- A list of fully-qualified "folder" prefixes.bucket
andpaths
- A list of objects relative to the given bucket path.
The S3
function also accepts the following security parameters:
accessKeyId
(VARCHAR
)secretAccessKey
(VARCHAR
)assumeRoleArn
(VARCHAR
)
The S3
table function does not support either the clientConfig
or proxyConfig
JSON properties.
If you need the full power of the S3 input source, then consider the use of the extern
function, which accepts the full S3 input source serialized as JSON. Alternatively,
create a catalog external table that has the full set of properties, leaving just the
uris
or paths
to be provided at query time.
Examples, each of which correspond to an example on the S3 input source page. The examples omit the format and schema; however you must remember to provide those in an actual query.
SELECT ...
FROM TABLE(S3(
uris => ARRAY['s3://foo/bar/file.json', 's3://bar/foo/file2.json'],
format => 'csv'))
) (x VARCHAR, y VARCHAR)
Additional variations, omitting the common bits:
S3(prefixes => ARRAY['s3://foo/bar/', 's3://bar/foo/']))
-- Not an exact match for the JSON example: the S3 function allows
-- only one bucket.
S3(bucket => 's3://foo`,
paths => ARRAY['bar/file1.json', 'foo/file2.json'])
S3(uris => ARRAY['s3://foo/bar/file.json', 's3://bar/foo/file2.json'],
accessKeyId => 'KLJ78979SDFdS2',
secretAccessKey => 'KLS89s98sKJHKJKJH8721lljkd')
S3(uris => ARRAY['s3://foo/bar/file.json', 's3://bar/foo/file2.json'],
accessKeyId => 'KLJ78979SDFdS2',
secretAccessKey => 'KLS89s98sKJHKJKJH8721lljkd',
assumeRoleArn => 'arn:aws:iam::2981002874992:role/role-s3')
Input Format
Each of the table functions above requires that you specify a format using the format
parameter which accepts a value the same as the format names used for EXTERN
and described
for each input source.
CSV Format
The csv
format selects the CSV input format.
Parameters:
listDelimiter
(VARCHAR
)skipHeaderRows
(BOOLEAN
)
Example for a CSV format with a list delimiter and where we want to skip the first input row:
SELECT ...
FROM TABLE(
inline(
data => ARRAY[
'skip me',
'a;foo,b',
'c;bar,d'],
format => 'csv',
listDelimiter => ';',
skipHeaderRows => 1
)
) (x VARCHAR, y VARCHAR)
Delimited Text Format
The tsv
format selects the TSV (Delimited) input format.
Parameters:
delimiter
(VARCHAR
)listDelimiter
(VARCHAR
)skipHeaderRows
(BOOLEAN
)
Example for a pipe-separated format with a list delimiter and where we want to skip the first input row:
SELECT ...
FROM TABLE(
inline(
data => ARRAY[
'skip me',
'a;foo|b',
'c;bar|d'],
format => 'tsv',
listDelimiter => ';',
skipHeaderRows => 1,
delimiter => '|'
)
) (x VARCHAR, y VARCHAR)
JSON Format
The json
format selects the
JSON input format.
The JSON format accepts no additional parameters.
Example:
SELECT ...
FROM TABLE(
inline(
data => ARRAY['{"x": "foo", "y": "bar"}'],
format => 'json')
) (x VARCHAR, y VARCHAR)
Parameters
Starting with the Druid 26.0 release, you can use query parameters with MSQ queries. You may find
that you periodically ingest a new set of files into Druid. Often, the bulk of the query is identical
for each ingestion: only the list of files (or URIs or objects) changes. For example, for the S3
input source, you will likely ingest from the same bucket and security setup in
each query; only the specific objects will change. Consider using a query parameter
to pass the object names:
INSERT INTO ...
SELECT ...
FROM TABLE(S3(bucket => 's3://foo`,
accessKeyId => ?,
paths => ?,
format => JSON))
(a VARCHAR, b BIGINT, ...)
This same technique can be used with the uris
or prefixes
parameters instead.
Function arguments that take an array parameter require an array function in your JSON request. For example:
{
"query" : "INSERT INTO ...
SELECT ...
FROM TABLE(S3(bucket => 's3://foo`,
accessKeyId => ?,
paths => ?,
format => JSON))
(a VARCHAR, b BIGINT, ...)",
"parameters": [
{ "type": "VARCHAR", "value": "ABCD-EF01"},
{ "type": "VARCHAR", "value": [
"foo.csv", "bar.csv"
] }
]
}
The type in the above example is the type of each element. It must be VARCHAR
for all the array
parameters for functions described on this page.
INSERT
Use the INSERT
statement to insert data.
Unlike standard SQL, INSERT
loads data into the target table according to column name, not positionally. If necessary,
use AS
in your SELECT
column list to assign the correct names. Do not rely on their positions within the SELECT
clause.
Statement format:
INSERT INTO <table name>
< SELECT query >
PARTITIONED BY <time frame>
[ CLUSTERED BY <column list> ]
INSERT consists of the following parts:
- Optional context parameters.
- An
INSERT INTO <dataSource>
clause at the start of your query, such asINSERT INTO your-table
. - A clause for the data you want to insert, such as
SELECT ... FROM ...
. You can useEXTERN
to reference external tables usingFROM TABLE(EXTERN(...))
. - A PARTITIONED BY clause, such as
PARTITIONED BY DAY
. - An optional CLUSTERED BY clause.
For more information, see Load data with INSERT.
REPLACE
You can use the REPLACE
function to replace all or some of the data.
Unlike standard SQL, REPLACE
loads data into the target table according to column name, not positionally. If necessary,
use AS
in your SELECT
column list to assign the correct names. Do not rely on their positions within the SELECT
clause.
REPLACE
all data
Function format to replace all data:
REPLACE INTO <target table>
OVERWRITE ALL
< SELECT query >
PARTITIONED BY <time granularity>
[ CLUSTERED BY <column list> ]
REPLACE
specific time ranges
Function format to replace specific time ranges:
REPLACE INTO <target table>
OVERWRITE WHERE __time >= TIMESTAMP '<lower bound>' AND __time < TIMESTAMP '<upper bound>'
< SELECT query >
PARTITIONED BY <time granularity>
[ CLUSTERED BY <column list> ]
REPLACE
consists of the following parts:
- Optional context parameters.
- A
REPLACE INTO <dataSource>
clause at the start of your query, such asREPLACE INTO "your-table".
- An OVERWRITE clause after the datasource, either OVERWRITE ALL or OVERWRITE WHERE:
- OVERWRITE ALL replaces the entire existing datasource with the results of the query.
- OVERWRITE WHERE drops the time segments that match the condition you set. Conditions are based on the
__time
column and use the format__time [< > = <= >=] TIMESTAMP
. Use them with AND, OR, and NOT between them, inclusive of the timestamps specified. No other expressions or functions are valid in OVERWRITE.
- A clause for the actual data you want to use for the replacement.
- A PARTITIONED BY clause, such as
PARTITIONED BY DAY
. - An optional CLUSTERED BY clause.
For more information, see Overwrite data with REPLACE.
PARTITIONED BY
The PARTITIONED BY <time granularity>
clause is required for INSERT and REPLACE. See
Partitioning for details.
The following granularity arguments are accepted:
- Time unit keywords:
HOUR
,DAY
,MONTH
, orYEAR
. Equivalent toFLOOR(__time TO TimeUnit)
. - Time units as ISO 8601 period strings: :
'PT1H'
, 'P1D
, etc. (Druid 26.0 and later.) TIME_FLOOR(__time, 'granularity_string')
, where granularity_string is one of the ISO 8601 periods listed below. The first argument must be__time
.FLOOR(__time TO TimeUnit)
, whereTimeUnit
is any unit supported by the FLOOR function. The first argument must be__time
.ALL
orALL TIME
, which effectively disables time partitioning by placing all data in a single time chunk. To use LIMIT or OFFSET at the outer level of yourINSERT
orREPLACE
query, you must setPARTITIONED BY
toALL
orALL TIME
.
Earlier versions required the TIME_FLOOR
notation to specify a granularity other than the keywords.
In the current version, the string constant provides a simpler equivalent solution.
The following ISO 8601 periods are supported for TIME_FLOOR
and the string constant:
- PT1S
- PT1M
- PT5M
- PT10M
- PT15M
- PT30M
- PT1H
- PT6H
- P1D
- P1W
- P1M
- P3M
- P1Y
For more information about partitioning, see Partitioning.
CLUSTERED BY
The CLUSTERED BY <column list>
clause is optional for INSERT and REPLACE. It accepts a list of
column names or expressions.
For more information about clustering, see Clustering.
Context parameters
In addition to the Druid SQL context parameters, the multi-stage query task engine accepts certain context parameters that are specific to it.
Use context parameters alongside your queries to customize the behavior of the query. If you're using the API, include the context parameters in the query context when you submit a query:
{
"query": "SELECT 1 + 1",
"context": {
"<key>": "<value>",
"maxNumTasks": 3
}
}
If you're using the web console, you can specify the context parameters through various UI options.
The following table lists the context parameters for the MSQ task engine:
Parameter | Description | Default value |
---|---|---|
maxNumTasks |
SELECT, INSERT, REPLACE The maximum total number of tasks to launch, including the controller task. The lowest possible value for this setting is 2: one controller and one worker. All tasks must be able to launch simultaneously. If they cannot, the query returns a TaskStartTimeout error code after approximately 10 minutes.May also be provided as numTasks . If both are present, maxNumTasks takes priority. |
2 |
taskAssignment |
SELECT, INSERT, REPLACE Determines how many tasks to use. Possible values include:
|
max |
finalizeAggregations |
SELECT, INSERT, REPLACE Determines the type of aggregation to return. If true, Druid finalizes the results of complex aggregations that directly appear in query results. If false, Druid returns the aggregation's intermediate type rather than finalized type. This parameter is useful during ingestion, where it enables storing sketches directly in Druid tables. For more information about aggregations, see SQL aggregation functions. |
true |
rowsInMemory |
INSERT or REPLACE Maximum number of rows to store in memory at once before flushing to disk during the segment generation process. Ignored for non-INSERT queries. In most cases, use the default value. You may need to override the default if you run into one of the known issues around memory usage. |
100,000 |
segmentSortOrder |
INSERT or REPLACE Normally, Druid sorts rows in individual segments using __time first, followed by the CLUSTERED BY clause. When you set segmentSortOrder , Druid sorts rows in segments using this column list first, followed by the CLUSTERED BY order.You provide the column list as comma-separated values or as a JSON array in string form. If your query includes __time , then this list must begin with __time . For example, consider an INSERT query that uses CLUSTERED BY country and has segmentSortOrder set to __time,city . Within each time chunk, Druid assigns rows to segments based on country , and then within each of those segments, Druid sorts those rows by __time first, then city , then country . |
empty list |
maxParseExceptions |
SELECT, INSERT, REPLACE Maximum number of parse exceptions that are ignored while executing the query before it stops with TooManyWarningsFault . To ignore all the parse exceptions, set the value to -1. |
0 |
rowsPerSegment |
INSERT or REPLACE The number of rows per segment to target. The actual number of rows per segment may be somewhat higher or lower than this number. In most cases, use the default. For general information about sizing rows per segment, see Segment Size Optimization. |
3,000,000 |
indexSpec |
INSERT or REPLACE An indexSpec to use when generating segments. May be a JSON string or object. See Front coding for details on configuring an indexSpec with front coding. |
See indexSpec . |
clusterStatisticsMergeMode |
Whether to use parallel or sequential mode for merging of the worker sketches. Can be PARALLEL , SEQUENTIAL or AUTO . See Sketch Merging Mode for more information. |
PARALLEL |
durableShuffleStorage |
SELECT, INSERT, REPLACE Whether to use durable storage for shuffle mesh. To use this feature, configure the durable storage at the server level using druid.msq.intermediate.storage.enable=true ). If these properties are not configured, any query with the context variable durableShuffleStorage=true fails with a configuration error. |
false |
faultTolerance |
SELECT, INSERT, REPLACE Whether to turn on fault tolerance mode or not. Failed workers are retried based on Limits. Cannot be used when durableShuffleStorage is explicitly set to false. |
false |
composedIntermediateSuperSorterStorageEnabled |
SELECT, INSERT, REPLACE Whether to enable automatic fallback to durable storage from local storage for sorting's intermediate data. Requires to setup intermediateSuperSorterStorageMaxLocalBytes limit for local storage and durable shuffle storage feature as well. |
false |
intermediateSuperSorterStorageMaxLocalBytes |
SELECT, INSERT, REPLACE Whether to enable a byte limit on local storage for sorting's intermediate data. If that limit is crossed, the task fails with ResourceLimitExceededException . |
9223372036854775807 |
maxInputBytesPerWorker |
Should be used in conjunction with taskAssignment auto mode. When dividing the input of a stage among the workers, this parameter determines the maximum size in bytes that are given to a single worker before the next worker is chosen. This parameter is only used as a guideline during input slicing, and does not guarantee that a the input cannot be larger. For example, we have 3 files. 3, 7, 12 GB each. then we would end up using 2 worker: worker 1 -> 3, 7 and worker 2 -> 12. This value is used for all stages in a query. |
10737418240 |
Sketch Merging Mode
This section details the advantages and performance of various Cluster By Statistics Merge Modes.
If a query requires key statistics to generate partition boundaries, key statistics are gathered by the workers while
reading rows from the datasource. These statistics must be transferred to the controller to be merged together.
clusterStatisticsMergeMode
configures the way in which this happens.
PARALLEL
mode fetches the key statistics for all time chunks from all workers together and the controller then downsamples
the sketch if it does not fit in memory. This is faster than SEQUENTIAL
mode as there is less over head in fetching sketches
for all time chunks together. This is good for small sketches which won't be down sampled even if merged together or if
accuracy in segment sizing for the ingestion is not very important.
SEQUENTIAL
mode fetches the sketches in ascending order of time and generates the partition boundaries for one time
chunk at a time. This gives more working memory to the controller for merging sketches, which results in less
down sampling and thus, more accuracy. There is, however, a time overhead on fetching sketches in sequential order. This is
good for cases where accuracy is important.
AUTO
mode tries to find the best approach based on number of workers. If there are more
than 100 workers, SEQUENTIAL
is chosen, otherwise, PARALLEL
is chosen.
Durable Storage
This section enumerates the advantages and performance implications of enabling durable storage while executing MSQ tasks.
To prevent durable storage from getting filled up with temporary files in case the tasks fail to clean them up, a periodic cleaner can be scheduled to clean the directories corresponding to which there isn't a controller task running. It utilizes the storage connector to work upon the durable storage. The durable storage location should only be utilized to store the output for cluster's MSQ tasks. If the location contains other files or directories, then they will get cleaned up as well. Following table lists the properties that can be set to control the behavior of the durable storage of the cluster.
Parameter | Default | Description |
---|---|---|
druid.msq.intermediate.storage.enable |
true | Whether to enable durable storage for the cluster |
druid.msq.intermediate.storage.cleaner.enabled |
false | Whether durable storage cleaner should be enabled for the cluster. This should be set on the overlord |
druid.msq.intermediate.storage.cleaner.delaySeconds |
86400 | The delay (in seconds) after the last run post which the durable storage cleaner would clean the outputs. This should be set on the overlord |
Limits
Knowing the limits for the MSQ task engine can help you troubleshoot any errors that you encounter. Many of the errors occur as a result of reaching a limit.
The following table lists query limits:
Limit | Value | Error if exceeded |
---|---|---|
Size of an individual row written to a frame. Row size when written to a frame may differ from the original row size. | 1 MB | RowTooLarge |
Number of segment-granular time chunks encountered during ingestion. | 5,000 | TooManyBuckets |
Number of input files/segments per worker. | 10,000 | TooManyInputFiles |
Number of output partitions for any one stage. Number of segments generated during ingestion. | 25,000 | TooManyPartitions |
Number of output columns for any one stage. | 2,000 | TooManyColumns |
Number of cluster by columns that can appear in a stage | 1,500 | TooManyClusteredByColumns |
Number of workers for any one stage. | Hard limit is 1,000. Memory-dependent soft limit may be lower. | TooManyWorkers |
Maximum memory occupied by broadcasted tables. | 30% of each processor memory bundle. | BroadcastTablesTooLarge |
Maximum relaunch attempts per worker. Initial run is not a relaunch. The worker will be spawned 1 + workerRelaunchLimit times before the job fails. |
2 | TooManyAttemptsForWorker |
Maximum relaunch attempts for a job across all workers. | 100 | TooManyAttemptsForJob |
Error codes
The following table describes error codes you may encounter in the multiStageQuery.payload.status.errorReport.error.errorCode
field:
Code | Meaning | Additional fields |
---|---|---|
BroadcastTablesTooLarge |
The size of the broadcast tables used in the right hand side of the join exceeded the memory reserved for them in a worker task. Try increasing the peon memory or reducing the size of the broadcast tables. |
maxBroadcastTablesSize : Memory reserved for the broadcast tables, measured in bytes. |
Canceled |
The query was canceled. Common reasons for cancellation:
|
|
CannotParseExternalData |
A worker task could not parse data from an external datasource. | errorMessage : More details on why parsing failed. |
ColumnNameRestricted |
The query uses a restricted column name. | columnName : The restricted column name. |
ColumnTypeNotSupported |
The column type is not supported. This can be because:
|
columnName : The column name with an unsupported type.columnType : The unknown column type. |
InsertCannotAllocateSegment |
The controller task could not allocate a new segment ID due to conflict with existing segments or pending segments. Common reasons for such conflicts:
|
dataSource interval : The interval for the attempted new segment allocation. |
InsertCannotBeEmpty |
An INSERT or REPLACE query did not generate any output rows in a situation where output rows are required for success. This can happen for INSERT or REPLACE queries with PARTITIONED BY set to something other than ALL or ALL TIME . |
dataSource |
InsertCannotOrderByDescending |
An INSERT query contained a CLUSTERED BY expression in descending order. Druid's segment generation code only supports ascending order. |
columnName |
InsertCannotReplaceExistingSegment |
A REPLACE query cannot proceed because an existing segment partially overlaps those bounds, and the portion within the bounds is not fully overshadowed by query results. There are two ways to address this without modifying your query:
|
segmentId : The existing segment |
InsertLockPreempted |
An INSERT or REPLACE query was canceled by a higher-priority ingestion job, such as a real-time ingestion task. | |
InsertTimeNull |
An INSERT or REPLACE query encountered a null timestamp in the __time field.This can happen due to using an expression like TIME_PARSE(timestamp) AS __time with a timestamp that cannot be parsed. (TIME_PARSE returns null when it cannot parse a timestamp.) In this case, try parsing your timestamps using a different function or pattern.If your timestamps may genuinely be null, consider using COALESCE to provide a default value. One option is CURRENT_TIMESTAMP, which represents the start time of the job. |
|
InsertTimeOutOfBounds |
A REPLACE query generated a timestamp outside the bounds of the TIMESTAMP parameter for your OVERWRITE WHERE clause. To avoid this error, verify that the you specified is valid. |
interval : time chunk interval corresponding to the out-of-bounds timestamp |
InvalidNullByte |
A string column included a null byte. Null bytes in strings are not permitted. | column : The column that included the null byte |
QueryNotSupported |
QueryKit could not translate the provided native query to a multi-stage query. This can happen if the query uses features that aren't supported, like GROUPING SETS. |
|
RowTooLarge |
The query tried to process a row that was too large to write to a single frame. See the Limits table for specific limits on frame size. Note that the effective maximum row size is smaller than the maximum frame size due to alignment considerations during frame writing. | maxFrameSize : The limit on the frame size. |
TaskStartTimeout |
Unable to launch all the worker tasks in time. There might be insufficient available slots to start all the worker tasks simultaneously. Try splitting up the query into smaller chunks with lesser maxNumTasks number. Another option is to increase capacity. |
numTasks : The number of tasks attempted to launch. |
TooManyAttemptsForJob |
Total relaunch attempt count across all workers exceeded max relaunch attempt limit. See the Limits table for the specific limit. | maxRelaunchCount : Max number of relaunches across all the workers defined in the Limits section. currentRelaunchCount : current relaunch counter for the job across all workers. taskId : Latest task id which failed rootErrorMessage : Error message of the latest failed task. |
TooManyAttemptsForWorker |
Worker exceeded maximum relaunch attempt count as defined in the Limits section. | maxPerWorkerRelaunchCount : Max number of relaunches allowed per worker as defined in the Limits section. workerNumber : the worker number for which the task failed taskId : Latest task id which failed rootErrorMessage : Error message of the latest failed task. |
TooManyBuckets |
Exceeded the maximum number of partition buckets for a stage (5,000 partition buckets). < br />Partition buckets are created for each PARTITIONED BY time chunk for INSERT and REPLACE queries. The most common reason for this error is that your PARTITIONED BY is too narrow relative to your data. |
maxBuckets : The limit on partition buckets. |
TooManyInputFiles |
Exceeded the maximum number of input files or segments per worker (10,000 files or segments). If you encounter this limit, consider adding more workers, or breaking up your query into smaller queries that process fewer files or segments per query. |
numInputFiles : The total number of input files/segments for the stage.maxInputFiles : The maximum number of input files/segments per worker per stage.minNumWorker : The minimum number of workers required for a successful run. |
TooManyPartitions |
Exceeded the maximum number of partitions for a stage (25,000 partitions). This can occur with INSERT or REPLACE statements that generate large numbers of segments, since each segment is associated with a partition. If you encounter this limit, consider breaking up your INSERT or REPLACE statement into smaller statements that process less data per statement. |
maxPartitions : The limit on partitions which was exceeded |
TooManyClusteredByColumns |
Exceeded the maximum number of clustering columns for a stage (1,500 columns). This can occur with CLUSTERED BY , ORDER BY , or GROUP BY with a large number of columns. |
numColumns : The number of columns requested.maxColumns : The limit on columns which was exceeded.stage : The stage number exceeding the limit |
TooManyColumns |
Exceeded the maximum number of columns for a stage (2,000 columns). | numColumns : The number of columns requested.maxColumns : The limit on columns which was exceeded. |
TooManyWarnings |
Exceeded the maximum allowed number of warnings of a particular type. | rootErrorCode : The error code corresponding to the exception that exceeded the required limit. maxWarnings : Maximum number of warnings that are allowed for the corresponding rootErrorCode . |
TooManyWorkers |
Exceeded the maximum number of simultaneously-running workers. See the Limits table for more details. | workers : The number of simultaneously running workers that exceeded a hard or soft limit. This may be larger than the number of workers in any one stage if multiple stages are running simultaneously. maxWorkers : The hard or soft limit on workers that was exceeded. If this is lower than the hard limit (1,000 workers), then you can increase the limit by adding more memory to each task. |
NotEnoughMemory |
Insufficient memory to launch a stage. | serverMemory : The amount of memory available to a single process.serverWorkers : The number of workers running in a single process.serverThreads : The number of threads in a single process. |
WorkerFailed |
A worker task failed unexpectedly. | errorMsg workerTaskId : The ID of the worker task. |
WorkerRpcFailed |
A remote procedure call to a worker task failed and could not recover. | workerTaskId : the id of the worker task |
UnknownError |
All other errors. | message |