分散マップリデュースプログラミングシステムを使用するのに最も簡単なものは何ですか?
例えば。それぞれが多くの接続を持つ多くのユーザーを含む分散データストアで、接続の総数を数えたいと言います。
Map:
for all records of type "user"
do for each user
count number of connections
retrun connection_count_for_one_user
Reduce:
reduce (connection_count_for_one_user)
total_connections += connection_count_for_one_user
このようにプログラミングできるmapreduceシステムはありますか?