hadoop - What does the following fields: 'totalSize' and 'rawDataSize' mean in DESCRIBE EXTENDED query output in hive? -


if 1 runs describe extended command on hive table result presents totalsize , rawdatasize values near end of output.

what these fields mean?

ex:

hive > describe extended <tablename>  output results:  table(tablename:tablenamexxxxx, dbname:xxxxxx, ..........       ....................... numrows=116429472, totalsize=3835205544, rawdatasize=35040221600}) 

rawdatasize size of original data set, totalsize amount of storage takes. applicable orc file format, compresses data totalsize lesser rawdatasize.


Comments

Popular posts from this blog

how to insert data php javascript mysql with multiple array session 2 -

c++ - How to test/verify that zero-initialization takes place -

node.js - Webpack/TypeScript Raising Errors When node_modules is Excluded -