aboutsummaryrefslogtreecommitdiff
path: root/sql/core/src
diff options
context:
space:
mode:
Diffstat (limited to 'sql/core/src')
-rw-r--r--sql/core/src/main/scala/org/apache/spark/sql/sources/interfaces.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/sources/interfaces.scala b/sql/core/src/main/scala/org/apache/spark/sql/sources/interfaces.scala
index a16d7ed0a7..6484c782b5 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/sources/interfaces.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/sources/interfaces.scala
@@ -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,