我是靠谱客的博主 简单犀牛,最近开发中收集的这篇文章主要介绍filestatus java,Java FileSystem.getFileStatus方法代码示例,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

import org.apache.flink.core.fs.FileSystem; //导入方法依赖的package包/类

/**

* Loads the savepoint at the specified path. This methods returns the savepoint, as well as the

* handle to the metadata.

*

* @param savepointFileOrDirectory Path to the parent savepoint directory or the meta data file.

* @param classLoader The class loader used to resolve serialized classes from legacy savepoint formats.

* @return The loaded savepoint

*

* @throws IOException Failures during load are forwarded

*/

public static Tuple2 loadSavepointWithHandle(

String savepointFileOrDirectory,

ClassLoader classLoader) throws IOException {

checkNotNull(savepointFileOrDirectory, "savepointFileOrDirectory");

checkNotNull(classLoader, "classLoader");

Path path = new Path(savepointFileOrDirectory);

LOG.info("Loading savepoint from {}", path);

FileSystem fs = FileSystem.get(path.toUri());

FileStatus status = fs.getFileStatus(path);

// If this is a directory, we need to find the meta data file

if (status.isDir()) {

Path candidatePath = new Path(path, SAVEPOINT_METADATA_FILE);

if (fs.exists(candidatePath)) {

path = candidatePath;

LOG.info("Using savepoint file in {}", path);

} else {

throw new IOException("Cannot find meta data file in directory " + path

+ ". Please try to load the savepoint directly from the meta data file "

+ "instead of the directory.");

}

}

// load the savepoint

final Savepoint savepoint;

try (DataInputStream dis = new DataInputViewStreamWrapper(fs.open(path))) {

int magicNumber = dis.readInt();

if (magicNumber == MAGIC_NUMBER) {

int version = dis.readInt();

SavepointSerializer> serializer = SavepointSerializers.getSerializer(version);

savepoint = serializer.deserialize(dis, classLoader);

} else {

throw new RuntimeException("Unexpected magic number. This can have multiple reasons: " +

"(1) You are trying to load a Flink 1.0 savepoint, which is not supported by this " +

"version of Flink. (2) The file you were pointing to is not a savepoint at all. " +

"(3) The savepoint file has been corrupted.");

}

}

// construct the stream handle to the metadata file

// we get the size best-effort

long size = 0;

try {

size = fs.getFileStatus(path).getLen();

}

catch (Exception ignored) {

// we don't know the size, but we don't want to fail the savepoint loading for that

}

StreamStateHandle metadataHandle = new FileStateHandle(path, size);

return new Tuple2<>(savepoint, metadataHandle);

}

最后

以上就是简单犀牛为你收集整理的filestatus java,Java FileSystem.getFileStatus方法代码示例的全部内容,希望文章能够帮你解决filestatus java,Java FileSystem.getFileStatus方法代码示例所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部