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