You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Hyukjin Kwon (JIRA)" <ji...@apache.org> on 2019/05/21 04:15:24 UTC

[jira] [Resolved] (SPARK-24226) while reading data from oracle 12c from spark and using the numofpartition more than 1 is not returning the exact count

     [ https://issues.apache.org/jira/browse/SPARK-24226?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hyukjin Kwon resolved SPARK-24226.
----------------------------------
    Resolution: Incomplete

> while reading data from oracle 12c from spark and using the numofpartition more than 1 is not returning the exact count
> -----------------------------------------------------------------------------------------------------------------------
>
>                 Key: SPARK-24226
>                 URL: https://issues.apache.org/jira/browse/SPARK-24226
>             Project: Spark
>          Issue Type: Bug
>          Components: Spark Core
>    Affects Versions: 2.2.0
>            Reporter: Chandan
>            Priority: Major
>              Labels: bulk-closed
>
> Reading data from oracle using JDBC using spark sql context as below.
> val query = s"""(select col1,col2,rownum from schematic.tablename) A)"""
> val df = sparkcontextInstance.sqlcontext.read.("jdbc")
>  .option("url", urlstring)
>  .option("dbtable", query)
>  .option("user", username)
>  .option("password", password)
>  .option("numPartitions", 20)
>  .option("partitionColumn", "rownum")
>  .option("lowerBound", 1)
>  .option("upperBound", 3000000).option("fetchsize", 1500)
>  .load()
> df.count() is returning only 150000 i.e upper bound/numpartition
> The table has 3 million records
> The table does not have any numerical column so taken rownum as partition column
> The above code is returning the data frame count 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org