Re: writing into oracle database is very slow

2019-04-19 Thread Lian Jiang
Thanks for interesting ideas! Looks like spark directly writing to relational database is not as straight forward as I expected. Sent from my iPhone > On Apr 19, 2019, at 06:58, Khare, Ankit wrote: > > Hi Jiang > > We faced similar issue so we write the file and then use sqoop to export data

Re: writing into oracle database is very slow

2019-04-19 Thread Khare, Ankit
Hi Jiang We faced similar issue so we write the file and then use sqoop to export data to mssql. We achieved a great time benefit with this strategy. Sent from my iPhone On 19. Apr 2019, at 10:47, spark receiver mailto:spark.recei...@gmail.com>> wrote: hi Jiang, i was facing the very same

Re: writing into oracle database is very slow

2019-04-19 Thread spark receiver
hi Jiang, i was facing the very same issue ,the solution is write to file and using oracle external table to do the insert. hope this could help. Dalin On Thu, Apr 18, 2019 at 11:43 AM Jörn Franke wrote: > What is the size of the data? How much time does it need on HDFS and how > much on

Re: writing into oracle database is very slow

2019-04-18 Thread Jörn Franke
What is the size of the data? How much time does it need on HDFS and how much on Oracle? How many partitions do you have on Oracle side? > Am 06.04.2019 um 16:59 schrieb Lian Jiang : > > Hi, > > My spark job writes into oracle db using: > df.coalesce(10).write.format("jdbc").option("url", url)

Re: writing into oracle database is very slow

2019-04-13 Thread Yeikel
Are you sure you only need 10 partitions? Do you get the same performance writing to HDFS with 10 partitions? -- Sent from: http://apache-spark-user-list.1001560.n3.nabble.com/ - To unsubscribe e-mail:

writing into oracle database is very slow

2019-04-06 Thread Lian Jiang
Hi, My spark job writes into oracle db using: df.coalesce(10).write.format("jdbc").option("url", url) .option("driver", driver).option("user", user) .option("batchsize", 2000) .option("password", password).option("dbtable", tableName).mode("append").save() It is much slow than writting