org.apache.gobblin.source.workunit.Extract.setExtractId()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(4.1k)|赞(0)|评价(0)|浏览(132)

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

Extract.setExtractId介绍

[英]Set a (non-globally) unique ID for this Extract.
[中]为此提取设置(非全局)唯一ID。

代码示例

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

  1. /**
  2. * Returns a unique {@link Extract} instance.
  3. * Any two calls of this method from the same {@link ExtractFactory} instance guarantees to
  4. * return {@link Extract}s with different IDs.
  5. *
  6. * @param type {@link TableType}
  7. * @param namespace dot separated namespace path
  8. * @param table table name
  9. * @return a unique {@link Extract} instance
  10. */
  11. public synchronized Extract getUniqueExtract(TableType type, String namespace, String table) {
  12. Extract newExtract = new Extract(type, namespace, table);
  13. while (this.createdInstances.contains(newExtract)) {
  14. if (Strings.isNullOrEmpty(newExtract.getExtractId())) {
  15. newExtract.setExtractId(this.dtf.print(new DateTime()));
  16. } else {
  17. DateTime extractDateTime = this.dtf.parseDateTime(newExtract.getExtractId());
  18. newExtract.setExtractId(this.dtf.print(extractDateTime.plusSeconds(1)));
  19. }
  20. }
  21. this.createdInstances.add(newExtract);
  22. return newExtract;
  23. }
  24. }

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

  1. /**
  2. * Create a new properly populated {@link Extract} instance.
  3. *
  4. * <p>
  5. * This method should always return a new unique {@link Extract} instance.
  6. * </p>
  7. *
  8. * @param type {@link org.apache.gobblin.source.workunit.Extract.TableType}
  9. * @param namespace namespace of the table this extract belongs to
  10. * @param table name of the table this extract belongs to
  11. * @return a new unique {@link Extract} instance
  12. *
  13. * @Deprecated Use {@link org.apache.gobblin.source.extractor.extract.AbstractSource#createExtract(
  14. *org.apache.gobblin.source.workunit.Extract.TableType, String, String)}
  15. */
  16. @Deprecated
  17. public synchronized Extract createExtract(Extract.TableType type, String namespace, String table) {
  18. Extract extract = new Extract(this, type, namespace, table);
  19. while (EXTRACT_SET.contains(extract)) {
  20. if (Strings.isNullOrEmpty(extract.getExtractId())) {
  21. extract.setExtractId(DTF.print(new DateTime()));
  22. } else {
  23. DateTime extractDateTime = DTF.parseDateTime(extract.getExtractId());
  24. extract.setExtractId(DTF.print(extractDateTime.plusSeconds(1)));
  25. }
  26. }
  27. EXTRACT_SET.add(extract);
  28. return extract;
  29. }

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

  1. /**
  2. * Returns a unique {@link Extract} instance.
  3. * Any two calls of this method from the same {@link ExtractFactory} instance guarantees to
  4. * return {@link Extract}s with different IDs.
  5. *
  6. * @param type {@link TableType}
  7. * @param namespace dot separated namespace path
  8. * @param table table name
  9. * @return a unique {@link Extract} instance
  10. */
  11. public synchronized Extract getUniqueExtract(TableType type, String namespace, String table) {
  12. Extract newExtract = new Extract(type, namespace, table);
  13. while (this.createdInstances.contains(newExtract)) {
  14. if (Strings.isNullOrEmpty(newExtract.getExtractId())) {
  15. newExtract.setExtractId(this.dtf.print(new DateTime()));
  16. } else {
  17. DateTime extractDateTime = this.dtf.parseDateTime(newExtract.getExtractId());
  18. newExtract.setExtractId(this.dtf.print(extractDateTime.plusSeconds(1)));
  19. }
  20. }
  21. this.createdInstances.add(newExtract);
  22. return newExtract;
  23. }
  24. }

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

  1. /**
  2. * Create a new properly populated {@link Extract} instance.
  3. *
  4. * <p>
  5. * This method should always return a new unique {@link Extract} instance.
  6. * </p>
  7. *
  8. * @param type {@link org.apache.gobblin.source.workunit.Extract.TableType}
  9. * @param namespace namespace of the table this extract belongs to
  10. * @param table name of the table this extract belongs to
  11. * @return a new unique {@link Extract} instance
  12. *
  13. * @Deprecated Use {@link org.apache.gobblin.source.extractor.extract.AbstractSource#createExtract(
  14. *org.apache.gobblin.source.workunit.Extract.TableType, String, String)}
  15. */
  16. @Deprecated
  17. public synchronized Extract createExtract(Extract.TableType type, String namespace, String table) {
  18. Extract extract = new Extract(this, type, namespace, table);
  19. while (EXTRACT_SET.contains(extract)) {
  20. if (Strings.isNullOrEmpty(extract.getExtractId())) {
  21. extract.setExtractId(DTF.print(new DateTime()));
  22. } else {
  23. DateTime extractDateTime = DTF.parseDateTime(extract.getExtractId());
  24. extract.setExtractId(DTF.print(extractDateTime.plusSeconds(1)));
  25. }
  26. }
  27. EXTRACT_SET.add(extract);
  28. return extract;
  29. }

相关文章