Please make sure that the name of the partitions defined in the table definition matches the name of the partition in hdfs.
For example, in the example of creating a table, I see that you did not define any parries at all.
I think you want to do something like this (pay attention to using PARTITIONED BY):
create external table ExternalExample(tweetId BIGINT, username STRING, txt STRING,favc BIGINT,retweet STRING,retcount BIGINT,followerscount BIGINT) PARTITIONED BY (CreatedAt STRING, profileLocation STRING) COMMENT 'This is the Twitter streaming data' ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t' STORED AS TEXTFILE location '/user/hue/exttable/';
hdfs :
/user/hue/exttable/CreatedAt=<someString>/profileLocation=<someString>/your-data-file