Why is juicefs data not deleted after deleting hive table using spark? #4165
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
zhijian-pro
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I used the following ddl to create the table:
CREATE TABLE IF NOT EXISTS test( name STRING, age INT ) PARTITIONED BY (partition_col INT) LOCATION 'jfs://bigjfs/test'
After inserting a batch of data in bulk, execute it via spark-sql
drop table test
I find that the data is not deleted.
Even if I set trash-days to 0 and run the gc command, the data is still not deleted.
Beta Was this translation helpful? Give feedback.
All reactions