在我的hadoop项目中,我通过“ job.setNumReduceTasks(0)”将reduce任务的数量设置为0,作业跟踪器页面中仍然存在reduce任务。

时间:2019-06-21 09:22:06

标签: hadoop

我写了一个仅地图的hadoop项目,但是仍然有一个reduce任务开始了。

    var sqlStmt = "Select * From MytableSource Where MytableId = @MytableId";
                var sqlConn = new SQLiteConnection( this.ConnectionString );
                using ( sqlConn )
                {
                    sqlConn.Open();
                    var fullEnt = sqlConn.Query<MytableSource>(sqlStmt, new SQLiteParameter("@MytableId" , mytableinstance.MytableId )).FirstOrDefault();
                    this.MytableSourceCurrent = fullEnt;

                }

reduce任务要花费很多时间,那么如何禁用它呢?

0 个答案:

没有答案