hudi-bot opened a new issue, #15519:
URL: https://github.com/apache/hudi/issues/15519
Flink batch is written to hudi. When the number of slots is less than
write.tasks, it cannot be written.
sql:
{code:java}
flink configuration:
configuration.setString( "taskmanager.numberOfTaskSlots", "2");
configuration.setString("execution.runtime-mode", "BATCH");
CREATE CATALOG myhudi WITH(
'type' = 'hudi',
'default-database' = 'default',
'catalog.path' = '/user/hdpu/warehouse',
'mode' = 'hms',
'hive.conf.dir' = 'hdfs:///user/hdpu/streamx/conf_data/hive_conf'
);
create table if not exists myhudi.test_hudi3.hudi_datagen_incre_c1
(id bigint not null, name string,ts3 timestamp(3)
,PRIMARY KEY (`id`) NOT ENFORCED
)
with('write.tasks' = 4)
;
show create table myhudi.test_hudi3.hudi_datagen_incre_c1;
insert into myhudi.test_hudi3.hudi_datagen_incre_c1
values
(1, 'cc12' ,CURRENT_TIMESTAMP);{code}
!image-2022-10-27-10-24-14-374.png!
!image-2022-10-27-10-29-17-593.png!
## JIRA info
- Link: https://issues.apache.org/jira/browse/HUDI-5100
- Type: Improvement
- Attachment(s):
- 27/Oct/22
02:24;waywtdcc;image-2022-10-27-10-24-14-374.png;https://issues.apache.org/jira/secure/attachment/13051466/image-2022-10-27-10-24-14-374.png
- 27/Oct/22
02:29;waywtdcc;image-2022-10-27-10-29-17-593.png;https://issues.apache.org/jira/secure/attachment/13051468/image-2022-10-27-10-29-17-593.png
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]