write.json {SparkR}R Documentation

write.json

Description

Save the contents of a SparkDataFrame as a JSON file (one object per line). Files written out with this method can be read back in as a SparkDataFrame using read.json().

Usage

write.json(x, path)

## S4 method for signature 'SparkDataFrame,character'
write.json(x, path)

Arguments

x

A SparkDataFrame

path

The directory where the file is saved

See Also

Other SparkDataFrame functions: SparkDataFrame-class, [[, agg, arrange, as.data.frame, attach, cache, collect, colnames, coltypes, columns, count, dapply, describe, dim, distinct, dropDuplicates, dropna, drop, dtypes, except, explain, filter, first, group_by, head, histogram, insertInto, intersect, isLocal, join, limit, merge, mutate, ncol, persist, printSchema, registerTempTable, rename, repartition, sample, saveAsTable, selectExpr, select, showDF, show, str, take, unionAll, unpersist, withColumn, write.df, write.jdbc, write.parquet, write.text

Examples

## Not run: 
##D sc <- sparkR.init()
##D sqlContext <- sparkRSQL.init(sc)
##D path <- "path/to/file.json"
##D df <- read.json(sqlContext, path)
##D write.json(df, "/tmp/sparkr-tmp/")
## End(Not run)

[Package SparkR version 2.0.0 Index]