package workflow
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- case class ImportConfig() extends Product with Serializable
-
class
IngestionWorkflow extends StrictLogging
The whole worklfow works as follow :
The whole worklfow works as follow :
- loadLanding : Zipped files are uncompressed or raw files extracted from the local filesystem. -loadPending : files recognized with filename patterns are stored in the ingesting area and submitted for ingestion files with unrecognized filename patterns are stored in the unresolved area
- ingest : files are finally ingested and saved as parquet/orc/... files and hive tables
- case class TransformConfig(name: String = "", options: Map[String, String] = Map.empty, views: Seq[String] = Nil, viewsDir: Option[String] = None, viewsCount: Int = 1000) extends Product with Serializable
- case class WatchConfig(includes: Seq[String] = Seq.empty, excludes: Seq[String] = Seq.empty, schemas: Seq[String] = Seq.empty, options: Map[String, String] = Map.empty) extends Product with Serializable
Value Members
- object ImportConfig extends CliConfig[ImportConfig] with Serializable
- object TransformConfig extends CliConfig[TransformConfig] with Serializable
- object WatchConfig extends CliConfig[WatchConfig] with Serializable