All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oracle.bmc.hdfs.DeprecatedBmcFilesystem Maven / Gradle / Ivy

/**
 * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
 */
package com.oracle.bmc.hdfs;

import lombok.extern.slf4j.Slf4j;
import org.apache.hadoop.fs.FileSystem;

/**
 * Deprecated implementation of a HDFS {@link FileSystem} that is backed by the BMC Object Store.
 * 

* Filesystems using this store take the URI form: oraclebmc://bucket@namespace. The bucket must be pre-created. *

* Unless otherwise noted, APIs try to follow the specification as defined by: * http://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-common/filesystem/filesystem.html * * @deprecated Use {@link BmcFilesystem} and the oci://bucket@namespace URI instead */ @Slf4j @Deprecated public class DeprecatedBmcFilesystem extends BmcFilesystem { @Override public String getScheme() { return BmcConstants.Deprecated.BMC_SCHEME; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy