Assuming I have these two tables:
External:
create external table emp_feedback (
emp_id int,
emp_name string
)
LOCATION '/user/hive/warehouse/mydb.db/contacts';
Internal:
create table emp_feedback (
emp_id int,
emp_name string
)
LOAD DATA INPATH 'file_location_of_csv' INTO TABLE emp_feedback;
- When I say:
LOCATION '/user/hive/warehouse/mydb.db/contacts';
for the external table does that mean that the data for that table is found in the directory '/user/hive/warehouse/mydb.db/contacts';
? So that directory has to exist in HDFS before hand?
- Can I use
LOAD DATA INPATH...
for an external
table or is that only used for internal
tables. And vice versa can I use Location...
for an internal table?
load data inpath command is use to load data into hive table. 'LOCAL' signifies that the input file is on the local file system. If 'LOCAL' is omitted then it looks for the file in HDFS.
load data inpath '/path/file.csv' into mytable;
load data local inpath '/Local path/file.csv' into mytable;
This command will remove content at source directory and create a internal table
LOCATION keyword allow to points to any HDFS location for its storage, rather than being stored in a folder specified by the configuration property hive.metastore.warehouse.dir.
In other words, with specified LOCATION '/your path/', Hive does not use a default location for this table. This comes in handy if you already have data generated.
Remember, LOCATION can be specify on EXTERNAL tables only. For regular tables, default location will be used.
Create external table and copy the data into table. Now data won't be moved from source. You can drop external table but still source data is available.
When you drop an external table, it only drops the meta data of HIVE table. Data still exists at HDFS file location.
To summarize, load data inpath tell hive where to look for input files and LOCATION keyword tells hive where to save output files on HDFS.