i have following table
create table stocks
(exchange string,symbol string,date string,open float)
partitioned by (exch string,sym string)
clustered by (date) into 5 buckets
row format delimited fields terminated by ',';
my question is:- how the data is stored in HDFS? would it be 5 buckets(sub directories) inside both the partitions(total 10 buckets) or will it be 5 sub directories inside the partition?
I tried creating this program in Hive, but was not success-full.