• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Java UpdateMode类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中com.cloudera.sqoop.SqoopOptions.UpdateMode的典型用法代码示例。如果您正苦于以下问题:Java UpdateMode类的具体用法?Java UpdateMode怎么用?Java UpdateMode使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



UpdateMode类属于com.cloudera.sqoop.SqoopOptions包,在下文中一共展示了UpdateMode类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: exportTable

import com.cloudera.sqoop.SqoopOptions.UpdateMode; //导入依赖的package包/类
private void exportTable(SqoopOptions options, String tableName)
    throws ExportException, IOException {
  String jarFile = null;

  // Generate the ORM code for the tables.
  jarFile = codeGenerator.generateORM(options, tableName);

  ExportJobContext context = new ExportJobContext(tableName, jarFile,
      options);
  if (options.getUpdateKeyCol() != null) {
    if (options.getUpdateMode() == UpdateMode.UpdateOnly) {
      // UPDATE-based export.
      manager.updateTable(context);
    } else {
      // Mixed update/insert export
      manager.upsertTable(context);
    }
  } else if (options.getCall() != null) {
    // Stored procedure-based export.
      manager.callTable(context);
  } else {
    // INSERT-based export.
    manager.exportTable(context);
  }
}
 
开发者ID:aliyun,项目名称:aliyun-maxcompute-data-collectors,代码行数:26,代码来源:ExportTool.java


示例2: exportTable

import com.cloudera.sqoop.SqoopOptions.UpdateMode; //导入依赖的package包/类
private void exportTable(SqoopOptions options, String tableName)
    throws ExportException, IOException {
  String jarFile = null;

  // Generate the ORM code for the tables.
  jarFile = codeGenerator.generateORM(options, tableName);

  ExportJobContext context = new ExportJobContext(tableName, jarFile,
      options);
  if (options.getUpdateKeyCol() != null) {
    if (options.getUpdateMode() == UpdateMode.UpdateOnly) {
      // UPDATE-based export.
      manager.updateTable(context);
    } else {
      // Mixed update/insert export
      manager.upsertTable(context);
    }
  } else {
    // INSERT-based export.
    manager.exportTable(context);
  }
}
 
开发者ID:infinidb,项目名称:sqoop,代码行数:23,代码来源:ExportTool.java


示例3: applyNewUpdateOptions

import com.cloudera.sqoop.SqoopOptions.UpdateMode; //导入依赖的package包/类
private void applyNewUpdateOptions(CommandLine in, SqoopOptions out)
    throws InvalidOptionsException {
  if (in.hasOption(UPDATE_MODE_ARG)) {
    String updateTypeStr = in.getOptionValue(UPDATE_MODE_ARG);
    if ("updateonly".equals(updateTypeStr)) {
      out.setUpdateMode(UpdateMode.UpdateOnly);
    } else if ("allowinsert".equals(updateTypeStr)) {
      out.setUpdateMode(UpdateMode.AllowInsert);
    } else {
      throw new InvalidOptionsException("Unknown new update mode: "
          + updateTypeStr + ". Use 'updateonly' or 'allowinsert'."
          + HELP_STR);
    }
  }
}
 
开发者ID:aliyun,项目名称:aliyun-maxcompute-data-collectors,代码行数:16,代码来源:ExportTool.java


示例4: getUpdateMode

import com.cloudera.sqoop.SqoopOptions.UpdateMode; //导入依赖的package包/类
/**
 * @return how to handle new rows found in update export.
 */
public UpdateMode getUpdateMode() {
  return updateMode;
}
 
开发者ID:aliyun,项目名称:aliyun-maxcompute-data-collectors,代码行数:7,代码来源:SqoopOptions.java


示例5: initDefaults

import com.cloudera.sqoop.SqoopOptions.UpdateMode; //导入依赖的package包/类
private void initDefaults(Configuration baseConfiguration) {
	// first, set the true defaults if nothing else happens.
	// default action is to run the full pipeline.
	this.hadoopMapRedHome = System.getenv("HADOOP_MAPRED_HOME");

	this.hiveHome = getHiveHomeDefault();
	this.hCatHome = getHCatHomeDefault();

	this.inputDelimiters = new DelimiterSet(
			DelimiterSet.NULL_CHAR, DelimiterSet.NULL_CHAR,
			DelimiterSet.NULL_CHAR, DelimiterSet.NULL_CHAR, false);
	this.outputDelimiters = new DelimiterSet();

	// Set this to cwd, but -Dsqoop.src.dir can override.
	this.codeOutputDir = System.getProperty("sqoop.src.dir", ".");

	String myTmpDir = System.getProperty("test.build.data", "/tmp/");
	if (!myTmpDir.endsWith(File.separator)) {
		myTmpDir = myTmpDir + File.separator;
	}

	this.tmpDir = myTmpDir;
	String localUsername = System.getProperty("user.name", "unknown");
	this.jarOutputDir = getNonceJarDir(tmpDir + "sqoop-" + localUsername
			+ "/compile");
	this.jarDirIsAuto = true;
	this.layout = FileLayout.TextFile;

	this.areOutputDelimsManuallySet = false;
	this.areInputDelimsManuallySet = false;

	this.numMappers = DEFAULT_NUM_MAPPERS;
	this.useCompression = false;
	this.compressionCodec = null;
	this.directSplitSize = 0;

	this.maxInlineLobSize = LargeObjectLoader.DEFAULT_MAX_LOB_LENGTH;

	// Don't set a default value for fetchsize. This allows a JDBCManager to
	// provide a database-specific default, if no value is provided by the
	// user.
	this.fetchSize = null;

	if (null == baseConfiguration) {
		this.conf = new Configuration();
	} else {
		this.conf = baseConfiguration;
	}

	this.extraArgs = null;

	this.dbOutColumns = null;

	this.incrementalMode = IncrementalMode.None;

	this.updateMode = UpdateMode.UpdateOnly;

	// Creating instances for user specific mapping
	this.mapColumnHive = new Properties();
	this.mapColumnJava = new Properties();

	// We do not want to be verbose too much if not explicitly needed
	this.verbose = false;
	this.isValidationEnabled = false; // validation is disabled by default
	this.validatorClass = RowCountValidator.class;
	this.validationThresholdClass = AbsoluteValidationThreshold.class;
	this.validationFailureHandlerClass = AbortOnFailureHandler.class;
}
 
开发者ID:unicredit,项目名称:zSqoop,代码行数:69,代码来源:SqoopOptions.java


示例6: getUpdateMode

import com.cloudera.sqoop.SqoopOptions.UpdateMode; //导入依赖的package包/类
/**
 * @return how to handle new rows found in update export.
 */
public UpdateMode getUpdateMode() {
	return updateMode;
}
 
开发者ID:unicredit,项目名称:zSqoop,代码行数:7,代码来源:SqoopOptions.java


示例7: initDefaults

import com.cloudera.sqoop.SqoopOptions.UpdateMode; //导入依赖的package包/类
private void initDefaults(Configuration baseConfiguration) {
  // first, set the true defaults if nothing else happens.
  // default action is to run the full pipeline.
  this.hadoopHome = System.getenv("HADOOP_HOME");

  // Set this with $HIVE_HOME, but -Dhive.home can override.
  this.hiveHome = System.getenv("HIVE_HOME");
  this.hiveHome = System.getProperty("hive.home", this.hiveHome);

  this.inputDelimiters = new DelimiterSet(
      DelimiterSet.NULL_CHAR, DelimiterSet.NULL_CHAR,
      DelimiterSet.NULL_CHAR, DelimiterSet.NULL_CHAR, false);
  this.outputDelimiters = new DelimiterSet();

  // Set this to cwd, but -Dsqoop.src.dir can override.
  this.codeOutputDir = System.getProperty("sqoop.src.dir", ".");

  String myTmpDir = System.getProperty("test.build.data", "/tmp/");
  if (!myTmpDir.endsWith(File.separator)) {
    myTmpDir = myTmpDir + File.separator;
  }

  this.tmpDir = myTmpDir;
  String localUsername = System.getProperty("user.name", "unknown");
  this.jarOutputDir = getNonceJarDir(tmpDir + "sqoop-" + localUsername
      + "/compile");
  this.jarDirIsAuto = true;
  this.layout = FileLayout.TextFile;

  this.areDelimsManuallySet = false;

  this.numMappers = DEFAULT_NUM_MAPPERS;
  this.useCompression = false;
  this.compressionCodec = null;
  this.directSplitSize = 0;

  this.maxInlineLobSize = LargeObjectLoader.DEFAULT_MAX_LOB_LENGTH;

  // Don't set a default value for fetchsize. This allows a JDBCManager to
  // provide a database-specific default, if no value is provided by the
  // user.
  this.fetchSize = null;

  if (null == baseConfiguration) {
    this.conf = new Configuration();
  } else {
    this.conf = baseConfiguration;
  }

  this.extraArgs = null;

  this.dbOutColumns = null;

  this.incrementalMode = IncrementalMode.None;

  this.updateMode = UpdateMode.UpdateOnly;

  // Creating instances for user specific mapping
  this.mapColumnHive = new Properties();
  this.mapColumnJava = new Properties();

  // We do not want to be verbose too much if not explicitly needed
  this.verbose = false;
}
 
开发者ID:infinidb,项目名称:sqoop,代码行数:65,代码来源:SqoopOptions.java


示例8: setUpdateMode

import com.cloudera.sqoop.SqoopOptions.UpdateMode; //导入依赖的package包/类
/**
 * Set "UpdateOnly" to silently ignore new rows during update export.
 * Set "AllowInsert" to insert new rows during update export.
 */
public void setUpdateMode(UpdateMode mode) {
  this.updateMode = mode;
}
 
开发者ID:aliyun,项目名称:aliyun-maxcompute-data-collectors,代码行数:8,代码来源:SqoopOptions.java


示例9: setUpdateMode

import com.cloudera.sqoop.SqoopOptions.UpdateMode; //导入依赖的package包/类
/**
 * Set "UpdateOnly" to silently ignore new rows during update export.
 * Set "AllowInsert" to insert new rows during update export.
 */
public void setUpdateMode(UpdateMode mode) {
	this.updateMode = mode;
}
 
开发者ID:unicredit,项目名称:zSqoop,代码行数:8,代码来源:SqoopOptions.java



注:本文中的com.cloudera.sqoop.SqoopOptions.UpdateMode类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java ChineseLexiconAndWordSegmenter类代码示例发布时间:2022-05-16
下一篇:
Java VariableVariable2类代码示例发布时间:2022-05-16
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap