java/tsfile/src/main/java/org/apache/tsfile/fileSystem/fileOutputFactory/OSFileOutputFactory.java [47:57]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public TsFileOutput getTsFileOutput(String filePath, boolean append) {
    try {
      return (TsFileOutput) constructor.newInstance(filePath, !append);
    } catch (InstantiationException | InvocationTargetException | IllegalAccessException e) {
      logger.error(
          "Failed to get TsFile output of file: {}. Please check your dependency of object storage module.",
          filePath,
          e);
      return null;
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



java/tsfile/src/main/java/org/apache/tsfile/fileSystem/fileOutputFactory/HDFSOutputFactory.java [49:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public TsFileOutput getTsFileOutput(String filePath, boolean append) {
    try {
      return (TsFileOutput) constructor.newInstance(filePath, !append);
    } catch (InstantiationException | InvocationTargetException | IllegalAccessException e) {
      logger.error(
          "Failed to get TsFile output of file: {}. Please check your dependency of Hadoop module.",
          filePath,
          e);
      return null;
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



