Routine Load
The Routine Load feature provides users with a way to automatically load data from a specified data source.
This document describes the implementation principles, usage, and best practices of this feature.
Glossary
- FE: Frontend, the front-end node of Doris. Responsible for metadata management and request access.
- BE: Backend, the backend node of Doris. Responsible for query execution and data storage.
- RoutineLoadJob: A routine load job submitted by the user.
- JobScheduler: A routine load job scheduler for scheduling and dividing a RoutineLoadJob into multiple Tasks.
- Task: RoutineLoadJob is divided by JobScheduler according to the rules.
- TaskScheduler: Task Scheduler. Used to schedule the execution of a Task.
Principle
+---------+
| Client |
+----+----+
|
+-----------------------------+
| FE | |
| +-----------v------------+ |
| | | |
| | Routine Load Job | |
| | | |
| +---+--------+--------+--+ |
| | | | |
| +---v--+ +---v--+ +---v--+ |
| | task | | task | | task | |
| +--+---+ +---+--+ +---+--+ |
| | | | |
+-----------------------------+
| | |
v v v
+---+--+ +--+---+ ++-----+
| BE | | BE | | BE |
+------+ +------+ +------+
As shown above, the client submits a routine load job to FE.
FE splits an load job into several Tasks via JobScheduler. Each Task is responsible for loading a specified portion of the data. The Task is assigned by the TaskScheduler to the specified BE.
On the BE, a Task is treated as a normal load task and loaded via the Stream Load load mechanism. After the load is complete, report to FE.
The JobScheduler in the FE continues to generate subsequent new Tasks based on the reported results, or retry the failed Task.
The entire routine load job completes the uninterrupted load of data by continuously generating new Tasks.
Kafka Routine load
Currently we only support routine load from the Kafka system. This section details Kafka’s routine use and best practices.
Usage restrictions
- Support unauthenticated Kafka access and Kafka clusters certified by SSL.
- The supported message format is csv text format. Each message is a line, and the end of the line does not contain a ** line break.
- Only Kafka 0.10.0.0 or above is supported.
Create a routine load task
The detailed syntax for creating a routine load task can be connected to Doris and execute HELP ROUTINE LOAD;
to see the syntax help. Here is a detailed description of the precautions when creating a job.
columns_mapping
columns_mapping
is mainly used to specify the column structure of the table structure and message, as well as the conversion of some columns. If not specified, Doris will default to the columns in the message and the columns of the table structure in a one-to-one correspondence. Although under normal circumstances, if the source data is exactly one-to-one, normal data load can be performed without specifying. However, we still strongly recommend that users ** explicitly specify column mappings**. This way, when the table structure changes (such as adding a nullable column), or the source file changes (such as adding a column), the load task can continue. Otherwise, after the above changes occur, the load will report an error because the column mapping relationship is no longer one-to-one.In
columns_mapping
we can also use some built-in functions for column conversion. But you need to pay attention to the actual column type corresponding to the function parameters. for example:Suppose the user needs to load a table containing only a column of
k1
with a column type ofint
. And you need to convert the null value in the source file to 0. This feature can be implemented with theifnull
function. The correct way to use is as follows:COLUMNS (xx, k1=ifnull(xx, "3"))
Note that we use
"3"
instead of3
, althoughk1
is of typeint
. Because the column type in the source data isvarchar
for the load task, thexx
virtual column is also of typevarchar
. So we need to use"3"
to match the match, otherwise theifnull
function can’t find the function signature with the parameter(varchar, int)
, and an error will occur.As another example, suppose the user needs to load a table containing only a column of
k1
with a column type ofint
. And you need to process the corresponding column in the source file: convert the negative number to a positive number and the positive number to 100. This function can be implemented with thecase when
function. The correct wording should be as follows:COLUMNS (xx, case when xx < 0 than cast(-xx as varchar) else cast((xx + '100') as varchar) end)
Note that we need to convert all the parameters in
case when
to varchar in order to get the desired result.where_predicates
The type of the column in
where_predicates
is already the actual column type, so there is no need to cast to the varchar type ascolumns_mapping
. Write according to the actual column type.desired_concurrent_number
desired_concurrent_number
is used to specify the degree of concurrency expected for a routine job. That is, a job, at most how many tasks are executing at the same time. For Kafka load, the current actual concurrency is calculated as follows:Min(partition num, desired_concurrent_number, alive_backend_num, Config.max_routine_load_task_concurrrent_num)
Where
Config.max_routine_load_task_concurrrent_num
is a default maximum concurrency limit for the system. This is a FE configuration that can be adjusted by changing the configuration. The default is 5.Where partition num refers to the number of partitions for the Kafka topic subscribed to.
alive_backend_num
is the current number of normal BE nodes.max_batch_interval/max_batch_rows/max_batch_size
These three parameters are used to control the execution time of a single task. If any of the thresholds is reached, the task ends. Where
max_batch_rows
is used to record the number of rows of data read from Kafka.max_batch_size
is used to record the amount of data read from Kafka in bytes. The current consumption rate for a task is approximately 5-10MB/s.So assume a row of data 500B, the user wants to be a task every 100MB or 10 seconds. The expected processing time for 100MB is 10-20 seconds, and the corresponding number of rows is about 200000 rows. Then a reasonable configuration is:
"max_batch_interval" = "10",
"max_batch_rows" = "200000",
"max_batch_size" = "104857600"
The parameters in the above example are also the default parameters for these configurations.
max_error_number
max_error_number
is used to control the error rate. When the error rate is too high, the job will automatically pause. Because the entire job is stream-oriented, and because of the borderless nature of the data stream, we can’t calculate the error rate with an error ratio like other load tasks. So here is a new way of calculating to calculate the proportion of errors in the data stream.We have set up a sampling window. The size of the window is
max_batch_rows * 10
. Within a sampling window, if the number of error lines exceedsmax_error_number
, the job is suspended. If it is not exceeded, the next window restarts counting the number of error lines.We assume that
max_batch_rows
is 200000 and the window size is 2000000. Letmax_error_number
be 20000, that is, the user expects an error behavior of 20000 for every 2000000 lines. That is, the error rate is 1%. But because not every batch of tasks consumes 200000 rows, the actual range of the window is [2000000, 2200000], which is 10% statistical error.The error line does not include rows that are filtered out by the where condition. But include rows that do not have a partition in the corresponding Doris table.
data_source_properties
The specific Kakfa partition can be specified in
data_source_properties
. If not specified, all partitions of the subscribed topic are consumed by default.Note that when partition is explicitly specified, the load job will no longer dynamically detect changes to Kafka partition. If not specified, the partitions that need to be consumed are dynamically adjusted based on changes in the kafka partition.
strict_mode
Routine load load can turn on strict mode mode. The way to open it is to add
"strict_mode" = "true"
to job_properties. The default strict mode is off.The strict mode mode means strict filtering of column type conversions during the load process. The strict filtering strategy is as follows:
For column type conversion, if strict mode is true, the wrong data will be filtered. The error data here refers to the fact that the original data is not null, and the result is a null value after participating in the column type conversion.
When a loaded column is generated by a function transformation, strict mode has no effect on it.
For a column type loaded with a range limit, if the original data can pass the type conversion normally, but cannot pass the range limit, strict mode will not affect it. For example, if the type is decimal(1,0) and the original data is 10, it is eligible for type conversion but not for column declarations. This data strict has no effect on it.
merge_type The type of data merging supports three types: APPEND, DELETE, and MERGE. APPEND is the default value, which means that all this batch of data needs to be appended to the existing data. DELETE means to delete all rows with the same key as this batch of data. MERGE semantics Need to be used in conjunction with the delete condition, which means that the data that meets the delete condition is processed according to DELETE semantics and the rest is processed according to APPEND semantics
strict mode and load relationship of source data
Here is an example of a column type of TinyInt.
Note: When a column in a table allows a null value to be loaded
source data | source data example | string to int | strict_mode | result |
---|---|---|---|---|
null | \N | N/A | true or false | NULL |
not null | aaa or 2000 | NULL | true | invalid data(filtered) |
not null | aaa | NULL | false | NULL |
not null | 1 | 1 | true or false | correct data |
Here the column type is Decimal(1,0)
Note: When a column in a table allows a null value to be loaded
source data | source data example | string to int | strict_mode | result |
---|---|---|---|---|
null | \N | N/A | true or false | NULL |
not null | aaa | NULL | true | invalid data(filtered) |
not null | aaa | NULL | false | NULL |
not null | 1 or 10 | 1 | true or false | correct data |
Note: 10 Although it is a value that is out of range, because its type meets the requirements of decimal, strict mode has no effect on it. 10 will eventually be filtered in other ETL processing flows. But it will not be filtered by strict mode.
Accessing SSL-certified Kafka clusters
Accessing the SSL-certified Kafka cluster requires the user to provide a certificate file (ca.pem) for authenticating the Kafka Broker public key. If the Kafka cluster has both client authentication enabled, you will also need to provide the client’s public key (client.pem), key file (client.key), and key password. The files needed here need to be uploaded to Doris via the CREAE FILE
command, ** and the catalog name is kafka
**. See HELP CREATE FILE;
for specific help on the CREATE FILE
command. Here is an example:
Upload file
CREATE FILE "ca.pem" PROPERTIES("url" = "https://example_url/kafka-key/ca.pem", "catalog" = "kafka");
CREATE FILE "client.key" PROPERTIES("url" = "https://example_urlkafka-key/client.key", "catalog" = "kafka");
CREATE FILE "client.pem" PROPERTIES("url" = "https://example_url/kafka-key/client.pem", "catalog" = "kafka");
2. Create a routine load job
CREATE ROUTINE LOAD db1.job1 on tbl1
PROPERTIES
(
"desired_concurrent_number"="1"
)
FROM KAFKA
(
"kafka_broker_list"= "broker1:9091,broker2:9091",
"kafka_topic" = "my_topic",
"property.security.protocol" = "ssl",
"property.ssl.ca.location" = "FILE:ca.pem",
"property.ssl.certificate.location" = "FILE:client.pem",
"property.ssl.key.location" = "FILE:client.key",
"property.ssl.key.password" = "abcdefg"
);
```
Doris accesses Kafka clusters via Kafka’s C++ API
librdkafka
. The parameters supported bylibrdkafka
can be found.
https://github.com/edenhill/librdkafka/blob/master/CONFIGURATION.md
Viewing the status of the load job
Specific commands and examples for viewing the status of the job can be viewed with the HELP SHOW ROUTINE LOAD;
command.
Specific commands and examples for viewing the Task status can be viewed with the HELP SHOW ROUTINE LOAD TASK;
command.
You can only view tasks that are currently running, and tasks that have ended and are not started cannot be viewed.
Alter job
Users can modify jobs that have been created. Specific instructions can be viewed through the HELP ALTER ROUTINE LOAD;
command. Or refer to ALTER ROUTINE LOAD.
Job Control
The user can control the stop, pause and restart of the job by the three commands STOP/PAUSE/RESUME
. You can view help and examples with the three commands HELP STOP ROUTINE LOAD;
, HELP PAUSE ROUTINE LOAD;
and HELP RESUME ROUTINE LOAD;
.
other instructions
The relationship between a routine load job and an ALTER TABLE operation
- Routine load does not block SCHEMA CHANGE and ROLLUP operations. Note, however, that if the column mappings are not matched after SCHEMA CHANGE is completed, the job’s erroneous data will spike and eventually cause the job to pause. It is recommended to reduce this type of problem by explicitly specifying column mappings in routine load jobs and by adding Nullable columns or columns with Default values.
- Deleting a Partition of a table may cause the loaded data to fail to find the corresponding Partition and the job will be paused.
Relationship between routine load jobs and other load jobs (LOAD, DELETE, INSERT)
- Routine load does not conflict with other LOAD jobs and INSERT operations.
- When performing a DELETE operation, the corresponding table partition cannot have any load tasks being executed. Therefore, before performing the DELETE operation, you may need to pause the routine load job and wait for the delivered task to complete before you can execute DELETE.
Relationship between routine load jobs and DROP DATABASE/TABLE operations
When the corresponding database or table is deleted, the job will automatically CANCEL.
The relationship between the kafka type routine load job and kafka topic
When the user creates a routine load declaration, the
kafka_topic
does not exist in the kafka cluster.- If the broker of the user kafka cluster has
auto.create.topics.enable = true
set,kafka_topic
will be automatically created first, and the number of partitions created automatically will be in the kafka cluster** of the user side. The broker is configured withnum.partitions
. The routine job will continue to read the data of the topic continuously. If the broker of the user kafka cluster has
auto.create.topics.enable = false
set, topic will not be created automatically, and the routine will be paused before any data is read, with the statusPAUSED
.So, if the user wants to be automatically created by the routine when the kafka topic does not exist, just set the broker in the kafka cluster** of the user’s side to set auto.create.topics.enable = true` .
- If the broker of the user kafka cluster has
- Problems that may occur in the some environment
In some environments, there are isolation measures for network segment and domain name resolution. So should pay attention to:
1. The broker list specified in the routine load task must be accessible on the doris environment.
2. If `advertised.listeners` is configured in kafka, The addresses in `advertised.listeners` need to be accessible on the doris environment.
Related parameters
Some system configuration parameters can affect the use of routine loads.
max_routine_load_task_concurrent_num
The FE configuration item, which defaults to 5, can be modified at runtime. This parameter limits the maximum number of subtask concurrency for a routine load job. It is recommended to maintain the default value. If the setting is too large, it may cause too many concurrent tasks and occupy cluster resources.
max_routine_load_task_num_per_be
The FE configuration item, which defaults to 5, can be modified at runtime. This parameter limits the number of subtasks that can be executed concurrently by each BE node. It is recommended to maintain the default value. If the setting is too large, it may cause too many concurrent tasks and occupy cluster resources.
max_routine_load_job_num
The FE configuration item, which defaults to 100, can be modified at runtime. This parameter limits the total number of routine load jobs, including NEED_SCHEDULED, RUNNING, PAUSE. After the overtime, you cannot submit a new assignment.
max_consumer_num_per_group
BE configuration item, the default is 3. This parameter indicates that up to several consumers are generated in a subtask for data consumption. For a Kafka data source, a consumer may consume one or more kafka partitions. Suppose a task needs to consume 6 kafka partitions, it will generate 3 consumers, and each consumer consumes 2 partitions. If there are only 2 partitions, only 2 consumers will be generated, and each consumer will consume 1 partition.
push_write_mbytes_per_sec
BE configuration item. The default is 10, which is 10MB/s. This parameter is to load common parameters, not limited to routine load jobs. This parameter limits the speed at which loaded data is written to disk. For high-performance storage devices such as SSDs, this speed limit can be appropriately increased.
max_tolerable_backend_down_num FE configuration item, the default is 0. Under certain conditions, Doris can reschedule PAUSED tasks, that becomes RUNNING?This parameter is 0, which means that rescheduling is allowed only when all BE nodes are in alive state.
period_of_auto_resume_min FE configuration item, the default is 5 mins. Doris reschedules will only try at most 3 times in the 5 minute period. If all 3 times fail, the current task will be locked, and auto-scheduling will not be performed. However, manual intervention can be performed. ```