
Ultimate access to all questions.
When defining external tables using formats like CSV, JSON, TEXT, or BINARY, any query on these tables caches the data and its location for performance reasons. This means that within a given Spark session, any new files that arrive after the initial query will not be available. How can we overcome this limitation?
A
UNCACHE TABLE table_name
B
BROADCAST TABLE table_name
C
REFRESH TABLE table_name
D
CACHE TABLE table_name
E
CLEAR CACH table_name