This message was deleted.
# general
s
This message was deleted.
v
so you mean load a csv into Druid from local disk?
e
yes is it possible or do i just have the wikiticker file which can be loaded locally ?
v
you can load files locally, you can use the "Local disk" source in the data loader
the only caveat is that the file must be available to all Druid services (in the same path). This is true for every file if you have a single node cluster (meaning that all your druid services run on single machine like you laptop), if you have a multi-node cluster then Local file loading is a lot less useful
e
the issue is that i don't in which path should i put the file note that am working using docker
v
then your file has to be accessible within docker. I believe you make directories accessible in docker by adding
-v /path/to/local/directory:/path/inside/container
to you
docker run
so if you have a file
my_file.csv
that lives in
/home/user/data
then you could do
-v /home/user/data:/data
and then enter
/data
as the base directory and
my_file.csv
as the file filter in the console UI