0
我在我的Spark流應用程序中有一個RDD [twitter4j.Status](來自Spark API中的TwitterUtils),我想將其轉換爲此json,其中Id將是(status => status.getId()。toString)和Text將是(status => status.getText())將RDD [狀態]轉換爲特定的json的最有效方法
我嘗試了幾件事,但我對結果不滿意,並想知道是否有是一個非常有效的方法來做到這一點。
{
"Inputs": [{
"Id": "1",
"Text": "hello world"
},
{
"Id": "2",
"Text": "hello foo world"
},
{
"Id": "three",
"Text": "hello my world"
}]
}
「Efficient」在這裏是不明確的。你想爲人類或電腦節省時間嗎? –
:)對於計算機 –
「有幾件事,但我對結果不滿意」嗯,既然你不會告訴我們你已經試過了什麼,我們不知道該怎麼提出可能會讓你開心的事, –