org.apache.hadoop.fs.Path.checkNotRelative()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(5.6k)|赞(0)|评价(0)|浏览(80)

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

Path.checkNotRelative介绍

暂无

代码示例

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

protected static FileSystem getFSofPath(final Path absOrFqPath,
  final Configuration conf)
  throws UnsupportedFileSystemException, IOException {
 absOrFqPath.checkNotSchemeWithRelative();
 absOrFqPath.checkNotRelative();
 // Uses the default FileSystem if not fully qualified
 return get(absOrFqPath.toUri(), conf);
}

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

/**
 * Get the file system of supplied path.
 * 
 * @param absOrFqPath - absolute or fully qualified path
 * @return the file system of the path
 * 
 * @throws UnsupportedFileSystemException If the file system for
 *           <code>absOrFqPath</code> is not supported.
 * @throws IOException If the file system for <code>absOrFqPath</code> could
 *         not be instantiated.
 */
protected AbstractFileSystem getFSofPath(final Path absOrFqPath)
  throws UnsupportedFileSystemException, IOException {
 absOrFqPath.checkNotSchemeWithRelative();
 absOrFqPath.checkNotRelative();
 try { 
  // Is it the default FS for this FileContext?
  defaultFS.checkPath(absOrFqPath);
  return defaultFS;
 } catch (Exception e) { // it is different FileSystem
  return getAbstractFileSystem(ugi, absOrFqPath.toUri(), conf);
 }
}

代码示例来源:origin: io.hops/hadoop-common

protected static FileSystem getFSofPath(final Path absOrFqPath,
  final Configuration conf)
  throws UnsupportedFileSystemException, IOException {
 absOrFqPath.checkNotSchemeWithRelative();
 absOrFqPath.checkNotRelative();
 // Uses the default file system if not fully qualified
 return get(absOrFqPath.toUri(), conf);
}

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

protected static FileSystem getFSofPath(final Path absOrFqPath,
  final Configuration conf)
  throws UnsupportedFileSystemException, IOException {
 absOrFqPath.checkNotSchemeWithRelative();
 absOrFqPath.checkNotRelative();
 // Uses the default file system if not fully qualified
 return get(absOrFqPath.toUri(), conf);
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

protected static FileSystem getFSofPath(final Path absOrFqPath,
  final Configuration conf)
  throws UnsupportedFileSystemException, IOException {
 absOrFqPath.checkNotSchemeWithRelative();
 absOrFqPath.checkNotRelative();
 // Uses the default file system if not fully qualified
 return get(absOrFqPath.toUri(), conf);
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

protected static FileSystem getFSofPath(final Path absOrFqPath,
  final Configuration conf)
  throws UnsupportedFileSystemException, IOException {
 absOrFqPath.checkNotSchemeWithRelative();
 absOrFqPath.checkNotRelative();
 // Uses the default file system if not fully qualified
 return get(absOrFqPath.toUri(), conf);
}

代码示例来源:origin: io.hops/hadoop-common

/**
 * Get the file system of supplied path.
 * 
 * @param absOrFqPath - absolute or fully qualified path
 * @return the file system of the path
 * 
 * @throws UnsupportedFileSystemException If the file system for
 *           <code>absOrFqPath</code> is not supported.
 * @throws IOException If the file system for <code>absOrFqPath</code> could
 *         not be instantiated.
 */
protected AbstractFileSystem getFSofPath(final Path absOrFqPath)
  throws UnsupportedFileSystemException, IOException {
 absOrFqPath.checkNotSchemeWithRelative();
 absOrFqPath.checkNotRelative();
 try { 
  // Is it the default FS for this FileContext?
  defaultFS.checkPath(absOrFqPath);
  return defaultFS;
 } catch (Exception e) { // it is different FileSystem
  return getAbstractFileSystem(ugi, absOrFqPath.toUri(), conf);
 }
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

/**
 * Get the file system of supplied path.
 * 
 * @param absOrFqPath - absolute or fully qualified path
 * @return the file system of the path
 * 
 * @throws UnsupportedFileSystemException If the file system for
 *           <code>absOrFqPath</code> is not supported.
 * @throws IOExcepton If the file system for <code>absOrFqPath</code> could
 *         not be instantiated.
 */
protected AbstractFileSystem getFSofPath(final Path absOrFqPath)
  throws UnsupportedFileSystemException, IOException {
 absOrFqPath.checkNotSchemeWithRelative();
 absOrFqPath.checkNotRelative();
 try { 
  // Is it the default FS for this FileContext?
  defaultFS.checkPath(absOrFqPath);
  return defaultFS;
 } catch (Exception e) { // it is different FileSystem
  return getAbstractFileSystem(ugi, absOrFqPath.toUri(), conf);
 }
}

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

/**
 * Get the file system of supplied path.
 * 
 * @param absOrFqPath - absolute or fully qualified path
 * @return the file system of the path
 * 
 * @throws UnsupportedFileSystemException If the file system for
 *           <code>absOrFqPath</code> is not supported.
 * @throws IOExcepton If the file system for <code>absOrFqPath</code> could
 *         not be instantiated.
 */
protected AbstractFileSystem getFSofPath(final Path absOrFqPath)
  throws UnsupportedFileSystemException, IOException {
 absOrFqPath.checkNotSchemeWithRelative();
 absOrFqPath.checkNotRelative();
 try { 
  // Is it the default FS for this FileContext?
  defaultFS.checkPath(absOrFqPath);
  return defaultFS;
 } catch (Exception e) { // it is different FileSystem
  return getAbstractFileSystem(ugi, absOrFqPath.toUri(), conf);
 }
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

/**
 * Get the file system of supplied path.
 * 
 * @param absOrFqPath - absolute or fully qualified path
 * @return the file system of the path
 * 
 * @throws UnsupportedFileSystemException If the file system for
 *           <code>absOrFqPath</code> is not supported.
 * @throws IOExcepton If the file system for <code>absOrFqPath</code> could
 *         not be instantiated.
 */
protected AbstractFileSystem getFSofPath(final Path absOrFqPath)
  throws UnsupportedFileSystemException, IOException {
 absOrFqPath.checkNotSchemeWithRelative();
 absOrFqPath.checkNotRelative();
 try { 
  // Is it the default FS for this FileContext?
  defaultFS.checkPath(absOrFqPath);
  return defaultFS;
 } catch (Exception e) { // it is different FileSystem
  return getAbstractFileSystem(ugi, absOrFqPath.toUri(), conf);
 }
}

相关文章