Description
Currently, the output (part-files) from CSV, TEXT and JSON data sources do not have file extensions such as .csv, .txt and .json (except for compression extensions such as .gz, .deflate and .bz4).
In addition, it looks Parquet has the extensions (in part-files) such as .gz.parquet or .snappy.parquet according to compression codecs whereas ORC does not have such extensions but it is just .orc.
So, in a simple view, currently the extensions are set as below:
TEXT, CSV and JSON - [.COMPRESSION_CODEC_NAME] Parquet - [.COMPRESSION_CODEC_NAME].parquet ORC - .orc
It would be great if we have a consistent naming for them