Skip to content

Commit c364d42

Browse files
committed
Renaming stream files option
More consistent with other options.
1 parent 2113b88 commit c364d42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/reading-data/reading-files/generic-file-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ of memory while trying to fit the contents of a file into an in-memory row.
5252

5353
To enable this, include the following in the set of options passed to your reader:
5454

55-
.option("spark.marklogic.files.stream", "true")
55+
.option("spark.marklogic.streamFiles", "true")
5656

5757
As a result of this option, the `content` column in each row will not contain the contents of the file. Instead,
5858
it will contain a serialized object intended to be used during the write phase to read the contents of the file as a

src/main/java/com/marklogic/spark/Options.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public abstract class Options {
162162
*
163163
* @since 2.4.0
164164
*/
165-
public static final String STREAM_FILES = "spark.marklogic.files.stream";
165+
public static final String STREAM_FILES = "spark.marklogic.streamFiles";
166166

167167
private Options() {
168168
}

0 commit comments

Comments
 (0)