Just use unionAll method:

df1.show()
name    id
a           1
b           2

df2.show()
name    id
c           3
d           4

df1.unionAll(df2).show()
name    id
a           1
b           2
c           3
d           4

Thanks,
Peter Rudneko

On 2015-04-22 16:38, bipin wrote:
I have looked into sqlContext documentation but there is nothing on how to
merge two data-frames. How can I do this ?

Thanks
Bipin



--
View this message in context: 
http://apache-spark-user-list.1001560.n3.nabble.com/How-to-merge-two-dataframes-with-same-schema-tp22606.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
For additional commands, e-mail: user-h...@spark.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
For additional commands, e-mail: user-h...@spark.apache.org

Reply via email to