org.apache.hadoop.hive.ql.metadata.Table.setOwner()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(3.6k)|赞(0)|评价(0)|浏览(137)

本文整理了Java中org.apache.hadoop.hive.ql.metadata.Table.setOwner()方法的一些代码示例,展示了Table.setOwner()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table.setOwner()方法的具体详情如下:
包路径:org.apache.hadoop.hive.ql.metadata.Table
类名称:Table
方法名:setOwner

Table.setOwner介绍

暂无

代码示例

代码示例来源:origin: apache/incubator-gobblin

  1. private Table getTargetTable(Table originTable, Path targetLocation) throws IOException {
  2. try {
  3. Table targetTable = originTable.copy();
  4. targetTable.setDbName(this.targetDatabase);
  5. targetTable.setDataLocation(targetLocation);
  6. /*
  7. * Need to set the table owner as the flow executor
  8. */
  9. targetTable.setOwner(UserGroupInformation.getCurrentUser().getShortUserName());
  10. targetTable.getTTable().putToParameters(HiveDataset.REGISTERER, GOBBLIN_DISTCP);
  11. targetTable.getTTable().putToParameters(HiveDataset.REGISTRATION_GENERATION_TIME_MILLIS,
  12. Long.toString(this.startTime));
  13. targetTable.getTTable().unsetCreateTime();
  14. HiveAvroCopyEntityHelper.updateTableAttributesIfAvro(targetTable, this);
  15. return targetTable;
  16. } catch (HiveException he) {
  17. throw new IOException(he);
  18. }
  19. }

代码示例来源:origin: apache/hive

  1. } else if (alterTbl.getOp() == AlterTableDesc.AlterTableTypes.OWNER) {
  2. if (alterTbl.getOwnerPrincipal() != null) {
  3. tbl.setOwner(alterTbl.getOwnerPrincipal().getName());
  4. tbl.setOwnerType(alterTbl.getOwnerPrincipal().getType());

代码示例来源:origin: apache/hive

  1. tbl.setOwner(SessionState.getUserFromAuthenticator());

代码示例来源:origin: apache/drill

  1. tbl.setOwner(SessionState.getUserFromAuthenticator());

代码示例来源:origin: apache/hive

  1. tbl.setOwner("pchakka");
  2. tbl.setRetention(10);

代码示例来源:origin: org.apache.hadoop.hive/hive-exec

  1. private int setGenericTableAttributes(Table tbl) {
  2. try {
  3. tbl.setOwner(conf.getUser());
  4. } catch (IOException e) {
  5. console.printError("Unable to get current user: " + e.getMessage(),
  6. stringifyException(e));
  7. return 1;
  8. }
  9. // set create time
  10. tbl.setCreateTime((int) (System.currentTimeMillis() / 1000));
  11. return 0;
  12. }

代码示例来源:origin: com.linkedin.gobblin/gobblin-data-management

  1. private Table getTargetTable(Table originTable, Path targetLocation) throws IOException {
  2. try {
  3. Table targetTable = originTable.copy();
  4. targetTable.setDbName(this.targetDatabase);
  5. targetTable.setDataLocation(targetLocation);
  6. /*
  7. * Need to set the table owner as the flow executor
  8. */
  9. targetTable.setOwner(UserGroupInformation.getCurrentUser().getShortUserName());
  10. targetTable.getTTable().putToParameters(HiveDataset.REGISTERER, GOBBLIN_DISTCP);
  11. targetTable.getTTable().putToParameters(HiveDataset.REGISTRATION_GENERATION_TIME_MILLIS,
  12. Long.toString(this.startTime));
  13. targetTable.getTTable().unsetCreateTime();
  14. HiveAvroCopyEntityHelper.updateTableAttributesIfAvro(targetTable, this);
  15. return targetTable;
  16. } catch (HiveException he) {
  17. throw new IOException(he);
  18. }
  19. }

代码示例来源:origin: org.apache.gobblin/gobblin-data-management

  1. private Table getTargetTable(Table originTable, Path targetLocation) throws IOException {
  2. try {
  3. Table targetTable = originTable.copy();
  4. targetTable.setDbName(this.targetDatabase);
  5. targetTable.setDataLocation(targetLocation);
  6. /*
  7. * Need to set the table owner as the flow executor
  8. */
  9. targetTable.setOwner(UserGroupInformation.getCurrentUser().getShortUserName());
  10. targetTable.getTTable().putToParameters(HiveDataset.REGISTERER, GOBBLIN_DISTCP);
  11. targetTable.getTTable().putToParameters(HiveDataset.REGISTRATION_GENERATION_TIME_MILLIS,
  12. Long.toString(this.startTime));
  13. targetTable.getTTable().unsetCreateTime();
  14. HiveAvroCopyEntityHelper.updateTableAttributesIfAvro(targetTable, this);
  15. return targetTable;
  16. } catch (HiveException he) {
  17. throw new IOException(he);
  18. }
  19. }

代码示例来源:origin: airbnb/reair

  1. "test_output_table");
  2. outputTable.setCreateTime(0);
  3. outputTable.setOwner("table.owner");

代码示例来源:origin: com.facebook.presto.hive/hive-apache

  1. tbl.setOwner(SessionState.getUserFromAuthenticator());

相关文章

Table类方法