This message was deleted.
# general
s
This message was deleted.
j
Hi Siddharth, you can definitely load up the content on all of your CSVs into the same datasource (table) to be accessed as a single set of data ... is that what you were referring to?
c
Hi @Siddharth Gautam, you can ingest multiple csv files for one ingestion the
EXTERN
function: https://druid.apache.org/docs/latest/multi-stage-query/concepts.html#read-external-data-with-extern List the files as part of the
uris
For example, for S3:
Copy code
"uris": ["<s3://foo/bar/file.csv>", "<s3://bar/foo/file2.csv>"]
1