Interface Output
- All Known Implementing Classes:
Table
public interface Output
Represents a node in a
DataflowGraph
that can be written to by a Flow
.
Must be backed by a file source.-
Method Summary
Modifier and TypeMethodDescriptionboolean
Return whether the storage location for thisOutput
has been normalized.scala.Option<String>
Normalized storage location used for storing materializations for thisOutput
.path()
Return the normalized storage location for thisOutput
and throw if the storage location has not been normalized.
-
Method Details
-
normalized
boolean normalized()Return whether the storage location for thisOutput
has been normalized. -
normalizedPath
scala.Option<String> normalizedPath()Normalized storage location used for storing materializations for thisOutput
. If None, it means thisOutput
has not been normalized yet.- Returns:
- (undocumented)
-
path
Return the normalized storage location for thisOutput
and throw if the storage location has not been normalized.- Returns:
- (undocumented)
- Throws:
SparkException
-