Skip to content
Snippets Groups Projects
Commit befab9c1 authored by Sean Owen's avatar Sean Owen
Browse files

[SPARK-17264][SQL] DataStreamWriter should document that it only supports Parquet for now

## What changes were proposed in this pull request?

Clarify that only parquet files are supported by DataStreamWriter now

## How was this patch tested?

(Doc build -- no functional changes to test)

Author: Sean Owen <sowen@cloudera.com>

Closes #14860 from srowen/SPARK-17264.
parent 2d76cb11
No related branches found
No related tags found
No related merge requests found
...@@ -591,7 +591,7 @@ class DataStreamWriter(object): ...@@ -591,7 +591,7 @@ class DataStreamWriter(object):
.. note:: Experimental. .. note:: Experimental.
:param source: string, name of the data source, e.g. 'json', 'parquet'. :param source: string, name of the data source, which for now can be 'parquet'.
>>> writer = sdf.writeStream.format('json') >>> writer = sdf.writeStream.format('json')
""" """
......
...@@ -122,7 +122,7 @@ final class DataStreamWriter[T] private[sql](ds: Dataset[T]) { ...@@ -122,7 +122,7 @@ final class DataStreamWriter[T] private[sql](ds: Dataset[T]) {
/** /**
* :: Experimental :: * :: Experimental ::
* Specifies the underlying output data source. Built-in options include "parquet", "json", etc. * Specifies the underlying output data source. Built-in options include "parquet" for now.
* *
* @since 2.0.0 * @since 2.0.0
*/ */
......
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