Esempio n. 1
0
        /// <summary>
        /// Initializes the reduce-part of the job
        /// with the appropriate output settings
        /// </summary>
        /// <param name="job">The job</param>
        /// <param name="tableName">The table to insert data into</param>
        /// <param name="fieldCount">the number of fields in the table.</param>
        /// <exception cref="System.IO.IOException"/>
        public static void SetOutput(Job job, string tableName, int fieldCount)
        {
            DBConfiguration dbConf = SetOutput(job, tableName);

            dbConf.SetOutputFieldCount(fieldCount);
        }