Uses of Class
org.apache.flink.runtime.blob.TransientBlobKey
Packages that use TransientBlobKey
Package
Description
-
Uses of TransientBlobKey in org.apache.flink.runtime.blob
Methods in org.apache.flink.runtime.blob that return TransientBlobKeyModifier and TypeMethodDescriptionBlobServer.putTransient(byte[] value) BlobServer.putTransient(InputStream inputStream) BlobServer.putTransient(org.apache.flink.api.common.JobID jobId, byte[] value) BlobServer.putTransient(org.apache.flink.api.common.JobID jobId, InputStream inputStream) TransientBlobCache.putTransient(byte[] value) TransientBlobCache.putTransient(InputStream inputStream) TransientBlobCache.putTransient(org.apache.flink.api.common.JobID jobId, byte[] value) TransientBlobCache.putTransient(org.apache.flink.api.common.JobID jobId, InputStream inputStream) TransientBlobService.putTransient(byte[] value) Uploads the (job-unrelated) data of the given byte array to the BLOB server.TransientBlobService.putTransient(InputStream inputStream) Uploads the (job-unrelated) data from the given input stream to the BLOB server.TransientBlobService.putTransient(org.apache.flink.api.common.JobID jobId, byte[] value) Uploads the data of the given byte array for the given job to the BLOB server.TransientBlobService.putTransient(org.apache.flink.api.common.JobID jobId, InputStream inputStream) Uploads the data from the given input stream for the given job to the BLOB server.Methods in org.apache.flink.runtime.blob with parameters of type TransientBlobKeyModifier and TypeMethodDescriptionbooleanBlobServer.deleteFromCache(org.apache.flink.api.common.JobID jobId, TransientBlobKey key) Deletes the file associated with the blob key in the local storage of the blob server.booleanBlobServer.deleteFromCache(TransientBlobKey key) Deletes the (job-unrelated) file associated with the blob key in the local storage of the blob server.booleanTransientBlobCache.deleteFromCache(org.apache.flink.api.common.JobID jobId, TransientBlobKey key) booleanTransientBlobCache.deleteFromCache(TransientBlobKey key) booleanTransientBlobService.deleteFromCache(org.apache.flink.api.common.JobID jobId, TransientBlobKey key) Deletes the file associated with the provided job ID and blob key from the local cache.booleanTransientBlobService.deleteFromCache(TransientBlobKey key) Deletes the (job-unrelated) file associated with the provided blob key from the local cache.BlobServer.getFile(org.apache.flink.api.common.JobID jobId, TransientBlobKey key) Retrieves the local path of a file associated with a job and a blob key.BlobServer.getFile(TransientBlobKey key) Retrieves the local path of a (job-unrelated) file associated with a job and a blob key.TransientBlobCache.getFile(org.apache.flink.api.common.JobID jobId, TransientBlobKey key) TransientBlobCache.getFile(TransientBlobKey key) TransientBlobService.getFile(org.apache.flink.api.common.JobID jobId, TransientBlobKey key) Returns the path to a local copy of the file associated with the provided job ID and blob key.TransientBlobService.getFile(TransientBlobKey key) Returns the path to a local copy of the (job-unrelated) file associated with the provided blob key. -
Uses of TransientBlobKey in org.apache.flink.runtime.resourcemanager
Methods in org.apache.flink.runtime.resourcemanager that return types with arguments of type TransientBlobKeyModifier and TypeMethodDescriptionResourceManager.requestTaskManagerFileUploadByNameAndType(ResourceID taskManagerId, String fileName, FileType fileType, Duration timeout) ResourceManagerGateway.requestTaskManagerFileUploadByNameAndType(ResourceID taskManagerId, String fileName, FileType fileType, Duration timeout) Request the file upload from the givenTaskExecutorto the cluster'sBlobServer.ResourceManager.requestTaskManagerFileUploadByType(ResourceID taskManagerId, FileType fileType, Duration timeout) ResourceManagerGateway.requestTaskManagerFileUploadByType(ResourceID taskManagerId, FileType fileType, Duration timeout) Request the file upload from the givenTaskExecutorto the cluster'sBlobServer. -
Uses of TransientBlobKey in org.apache.flink.runtime.rest.handler.taskmanager
Methods in org.apache.flink.runtime.rest.handler.taskmanager that return types with arguments of type TransientBlobKeyModifier and TypeMethodDescriptionprotected abstract CompletableFuture<TransientBlobKey>AbstractTaskManagerFileHandler.requestFileUpload(ResourceManagerGateway resourceManagerGateway, org.apache.flink.api.java.tuple.Tuple2<ResourceID, String> taskManagerIdAndFileName) protected CompletableFuture<TransientBlobKey>TaskManagerCustomLogHandler.requestFileUpload(ResourceManagerGateway resourceManagerGateway, org.apache.flink.api.java.tuple.Tuple2<ResourceID, String> taskManagerIdAndFileName) protected CompletableFuture<TransientBlobKey>TaskManagerLogFileHandler.requestFileUpload(ResourceManagerGateway resourceManagerGateway, org.apache.flink.api.java.tuple.Tuple2<ResourceID, String> taskManagerIdAndFileName) protected CompletableFuture<TransientBlobKey>TaskManagerProfilingFileHandler.requestFileUpload(ResourceManagerGateway resourceManagerGateway, org.apache.flink.api.java.tuple.Tuple2<ResourceID, String> taskManagerIdAndFileName) protected CompletableFuture<TransientBlobKey>TaskManagerStdoutFileHandler.requestFileUpload(ResourceManagerGateway resourceManagerGateway, org.apache.flink.api.java.tuple.Tuple2<ResourceID, String> taskManagerIdAndFileName) -
Uses of TransientBlobKey in org.apache.flink.runtime.taskexecutor
Methods in org.apache.flink.runtime.taskexecutor that return types with arguments of type TransientBlobKeyModifier and TypeMethodDescriptionTaskExecutor.requestFileUploadByName(String fileName, Duration timeout) TaskExecutorGateway.requestFileUploadByName(String fileName, Duration timeout) Requests the file upload of the specified name to the cluster'sBlobServer.TaskExecutorGatewayDecoratorBase.requestFileUploadByName(String fileName, Duration timeout) TaskExecutor.requestFileUploadByNameAndType(String fileName, FileType fileType, Duration timeout) TaskExecutorGateway.requestFileUploadByNameAndType(String fileName, FileType fileType, Duration timeout) Requests the file upload of the specified name and file type to the cluster'sBlobServer.TaskExecutorGatewayDecoratorBase.requestFileUploadByNameAndType(String fileName, FileType fileType, Duration timeout) TaskExecutor.requestFileUploadByType(FileType fileType, Duration timeout) TaskExecutorGateway.requestFileUploadByType(FileType fileType, Duration timeout) Requests the file upload of the specified type to the cluster'sBlobServer.TaskExecutorGatewayDecoratorBase.requestFileUploadByType(FileType fileType, Duration timeout)