InterviewSolution
Saved Bookmarks
| 1. |
Point out the wrong statement.(a) Avro data files are a compact, efficient binary format that provides interoperability with applications written in other programming languages(b) By default, data is compressed while importing(c) Delimited text also readily supports further manipulation by other tools, such as Hive(d) None of the mentioned |
|
Answer» The correct answer is (b) By default, data is compressed while importing Explanation: You can compress your data by using the deflate (gzip) algorithm with the -z or –compress argument, or specify any Hadoop compression codec using the –compression-codec argument. |
|