達人!
誰でも答えることができます:Partitionerクラスの定義されたパラメーターnumPartitions(このパラメーターの値)はどこにありますか?
達人!
誰でも答えることができます:Partitionerクラスの定義されたパラメーターnumPartitions(このパラメーターの値)はどこにありますか?
Map Reduce ジョブに定義されたレデューサーの数です。
Driver クラスでは、ジョブに必要なレデューサーの数について言及します。そのカウントは numPartion カウントと呼ばれます。お気に入り:
job.setNumReduceTasks(4);
ということですか?パーティション クラス の numPartition。そこで検索を使用しました。
* @param numPartitions the total number of partitions. (as integer)
* [...] The total number of partitions
* is the same as the number of reduce tasks for the job.