MapReduce写法(Python)
streaming
Yarn
Hive
select word, count(*)
from (
select
explode (split (sentence, ' '))
as word
from article
) t
group by word
select word, count(*)
from (
select
explode (split (sentence, ' '))
as word
from article
) t
group by word