Converting a gcp-hive table to pandas dataframe

Viewed 26

I am trying to convert a gcp-hive table of 10000 rows to pandas dataframe. But after conversion it is showing only 1000 rows in my pandas dataframe. There is a field with some text data in table, and it contains different language texts. And I am seeing only english in my dataframe and remaining nulls. Could anyone help me understand the reduction in size of dataframe?

   text = %hive_dataproc select * from <table_name>;

is the code I am using for converting table to dataframe

0 Answers
Related