how to load large number of data into databend table #7159
-
when I load a text file as csv data into the databend table, I got the error like this: |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 10 replies
-
Hi, we need the following information to better help you:
And the following links may be helpful to you: https://databend.rs/doc/reference/sql/dml/dml-copy-into-table COPY INTO mytable
FROM 's3://mybucket/data.csv'
CONNECTION = (
ENDPOINT_URL = 'http://localhost:9000'
ACCESS_KEY_ID = '<your-access-key-ID>'
SECRET_ACCESS_KEY = '<your-secret-access-key>')
FILE_FORMAT = (type = 'CSV' field_delimiter = ',' record_delimiter = '\n' skip_header = 1) size_limit=10; |
Beta Was this translation helpful? Give feedback.
-
1,the load method I used is streaming_load. |
Beta Was this translation helpful? Give feedback.
-
Please provide some informathion about minio:
|
Beta Was this translation helpful? Give feedback.
Hi, we need the following information to better help you:
./databend/logs
)And the following links may be helpful to you: https://databend.rs/doc/reference/sql/dml/dml-copy-into-table