bio.ferlab.datalake.commons.config.StorageConf.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datalake-commons_2.12 Show documentation
Show all versions of datalake-commons_2.12 Show documentation
Library built on top of Apache Spark to speed-up data lakes development..
package bio.ferlab.datalake.commons.config
import bio.ferlab.datalake.commons.file.FileSystemType
/**
* Configuration of a storage endpoint
*
* @param id unique identifier to the storage. should match alias given to a [[DatasetConf]]
* @param path path to the storage
*/
case class StorageConf(id: String, path: String, filesystem: FileSystemType)