Skip to content
Snippets Groups Projects
Commit 3497ebe5 authored by Michael Armbrust's avatar Michael Armbrust Committed by Reynold Xin
Browse files

[SPARK-17627] Mark Streaming Providers Experimental

All of structured streaming is experimental in its first release.  We missed the annotation on two of the APIs.

Author: Michael Armbrust <michael@databricks.com>

Closes #15188 from marmbrus/experimentalApi.
parent 6902edab
No related branches found
No related tags found
No related merge requests found
......@@ -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. */
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment