Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Dumping the beeline output to a file, by default it is giving comma seperated file. I would like to add the delimiter as "|"(PIPE) instead of comma(,)

avatar
New Contributor
 
1 ACCEPTED SOLUTION

avatar
Guru

Use

--outputformat=dsv 

This output format is configurable, but the default is a pipe so the above should be sufficient for your needs.

If you want to use something else as a delim, add

--delimiterForDSV=DELIMITER

For more details, see: https://cwiki.apache.org/confluence/display/Hive/HiveServer2+Clients#HiveServer2Clients-Separated-Va...

(If this is what you are looking for, let me know by accepting the answer. Else, let me know the gaps in the answer).

View solution in original post

1 REPLY 1

avatar
Guru

Use

--outputformat=dsv 

This output format is configurable, but the default is a pipe so the above should be sufficient for your needs.

If you want to use something else as a delim, add

--delimiterForDSV=DELIMITER

For more details, see: https://cwiki.apache.org/confluence/display/Hive/HiveServer2+Clients#HiveServer2Clients-Separated-Va...

(If this is what you are looking for, let me know by accepting the answer. Else, let me know the gaps in the answer).