SparkR (version 2.1.2)

insertInto: insertInto

Description

Insert the contents of a SparkDataFrame into a table registered in the current SparkSession.

Usage

insertInto(x, tableName, ...)

# S4 method for SparkDataFrame,character insertInto(x, tableName, overwrite = FALSE)

Arguments

x

a SparkDataFrame.

tableName

a character vector containing the name of the table.

...

further arguments to be passed to or from other methods. the existing rows in the table.

overwrite

a logical argument indicating whether or not to overwrite.

See Also

Other SparkDataFrame functions: SparkDataFrame-class, agg, arrange, as.data.frame, attach, cache, coalesce, collect, colnames, coltypes, createOrReplaceTempView, crossJoin, dapplyCollect, dapply, describe, dim, distinct, dropDuplicates, dropna, drop, dtypes, except, explain, filter, first, gapplyCollect, gapply, getNumPartitions, group_by, head, histogram, intersect, isLocal, join, limit, merge, mutate, ncol, nrow, persist, printSchema, randomSplit, rbind, registerTempTable, rename, repartition, sample, saveAsTable, schema, selectExpr, select, showDF, show, storageLevel, str, subset, take, union, unpersist, withColumn, with, write.df, write.jdbc, write.json, write.orc, write.parquet, write.text

Examples

Run this code
# NOT RUN {
sparkR.session()
df <- read.df(path, "parquet")
df2 <- read.df(path2, "parquet")
createOrReplaceTempView(df, "table1")
insertInto(df2, "table1", overwrite = TRUE)
# }

Run the code above in your browser using DataCamp Workspace