/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package com.aliyun.odps.mapred.utils; import java.util.Arrays; import com.aliyun.odps.data.TableInfo; import com.aliyun.odps.data.VolumeInfo; import com.aliyun.odps.mapred.conf.JobConf; import com.google.gson.Gson; import com.google.gson.GsonBuilder; /** * 表达MapReduce任务输出数据的工具类 */ public class OutputUtils { private static final Gson gson = new GsonBuilder().create(); private final static String OUTPUT_DESC = "odps.mapred.output.desc"; private final static String VOLUME_OUTPUT_DESC = "odps.mapred.volume.output.desc"; /** * 添加表table到任务输出 * * @param table * 输出表 * @param conf * 作业配置 */ public static void addTable(TableInfo table, JobConf conf) { TableInfo[] tableInfos = getTables(conf); if (tableInfos == null) { tableInfos = new TableInfo[1]; } else { tableInfos = Arrays.copyOf(tableInfos, tableInfos.length + 1); } tableInfos[tableInfos.length - 1] = table; conf.set(OUTPUT_DESC, gson.toJson(tableInfos)); } /** * 获取任务输出表 * * @param conf * 作业配置 * @return 输出表,或null如果没有输出表 */ public static TableInfo[] getTables(JobConf conf) { String inputDesc = conf.get(OUTPUT_DESC); if (inputDesc != null && !inputDesc.isEmpty()) { return gson.fromJson(inputDesc, TableInfo[].class); } return null; } /** * 设定任务输出表 * * @param tables * 输出表数组 * @param conf * 作业配置 */ public static void setTables(TableInfo[] tables, JobConf conf) { if (tables != null && tables.length > 0) { conf.set(OUTPUT_DESC, gson.toJson(tables)); } else { conf.set(OUTPUT_DESC, ""); } } public static void addVolume(VolumeInfo volume, JobConf conf) { VolumeInfo[] volumeInfos = getVolumes(conf); if (volumeInfos == null) { volumeInfos = new VolumeInfo[1]; } else { volumeInfos = Arrays.copyOf(volumeInfos, volumeInfos.length + 1); } volumeInfos[volumeInfos.length - 1] = volume; conf.set(VOLUME_OUTPUT_DESC, gson.toJson(volumeInfos)); } public static void setVolumes(VolumeInfo[] volumes, JobConf conf) { if (volumes != null && volumes.length > 0) { conf.set(VOLUME_OUTPUT_DESC, gson.toJson(volumes)); } else { conf.set(VOLUME_OUTPUT_DESC, ""); } } public static VolumeInfo[] getVolumes(JobConf conf) { String volumeOutputDesc = conf.get(VOLUME_OUTPUT_DESC); if (volumeOutputDesc != null && !volumeOutputDesc.isEmpty()) { return gson.fromJson(volumeOutputDesc, VolumeInfo[].class); } else { return null; } } }