我使用直线连接从一台服务器到另一台服务器,并从Hive获取数据。
我使用的命令是:
beeline --outputformat=tsv2 --silent -e 'select * from t1 limit 3'
输出为:
a "{""col1"": ""123"" } "
b "{""col1"": ""234"" } "
c "{""col1"": ""567"" } "
我需要:
a {"col1": "123" }
b {"col1": "234" }
c {"col1": "567" }
我试过:
beeline --outputformat=tsv2 --silent -e 'set system:disable.quiting.for.sv=false; select * from t1 limit 3'
但这根本没有产出。
谢谢!
暂无答案!
目前还没有任何答案,快来回答吧!