BePPPower commented on issue #22429:
URL: https://github.com/apache/doris/issues/22429#issuecomment-1663219108
You can merge these FileGroup because they import the same partition. like
this
```
load label demo
(DATA INFILE('hdfs://xxx/xxx/path1/*', 'hdfs://xxx/xxx/path2/*',
'hdfs://xxx/xxx/path3/*')
INTO TABLE test
PARTITION (p2023)
FORMAT AS 'orc'
(col1, col2, col3, col4) set (col1=col1, col2=col2, col3=col3, col4=col4)
)
WITH BROKER hdfs_broker();
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]