Skip to content

Commit

Permalink
[SPARK-17627] Mark Streaming Providers Experimental
Browse files Browse the repository at this point in the history
All of structured streaming is experimental in its first release.  We missed the annotation on two of the APIs.

Author: Michael Armbrust <[email protected]>

Closes apache#15188 from marmbrus/experimentalApi.
  • Loading branch information
marmbrus authored and rxin committed Sep 22, 2016
1 parent 6902eda commit 3497ebe
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,10 @@ trait SchemaRelationProvider {
}

/**
* ::Experimental::
* Implemented by objects that can produce a streaming [[Source]] for a specific format or system.
*/
@Experimental
trait StreamSourceProvider {

/** Returns the name and schema of the source that can be used to continually read data. */
Expand All @@ -132,8 +134,10 @@ trait StreamSourceProvider {
}

/**
* ::Experimental::
* Implemented by objects that can produce a streaming [[Sink]] for a specific format or system.
*/
@Experimental
trait StreamSinkProvider {
def createSink(
sqlContext: SQLContext,
Expand Down

0 comments on commit 3497ebe

Please sign in to comment.