From browsing the web - I understand that DELETE & UPDATE Clauses are not supported on Impala/Hive. I'm trying to find a workaround for this case. I tried to perform it with a INSERT OVERWRITE clause with no success :\
I have a partitioned table that contains: user_id, day, month, year (Partition on day,month,year).
Say i have 1 row for each date (each date is represented by those 3 partition columns) and i want to delete the row of 2016-05-01
If i used MySQL i would write:
DELETE FROM tblname
WHERE year = 2016 and month = 5 and day = 1
How do i perform it on Hive/Impala?
Thank you !