I imported a table from MySQL, which has 10 million rows in Hive and now performs some operations in Impala to test functionality and performance. Now I get an error argument of type 'NoneType' is not iterablewhen I issue the following request.
select count(id) from my_table_name;
Is there anything I need to do after importing the data to fix this? I intend to use Impala mainly for analytics, and therefore it includes many SUM and COUNT functions.
source
share