当数据增加,我们又无法无限制的增加硬件,我们就要利用RDD的partition。将获取一个大表的任务拆分成多个任务,一个一个来执行,每个任务只获取一小部分数据,这样通过多个连接同时去取数据,速度反而更快。
我的配置目前是 master 1 8g,slave 3 8g
Dataset<Row> dataset = spark.read().format("jdbc")
.option("url", JDBCUtil.getJdbcUrl(datasourceModel))
.option("dbtable", tableName)
.option("user", datasourceModel.getUserName())
.option("password", datasourceModel.getPassword())
.option("partitionColumn", "ID")
.option("lowerBound", 10000)
.option("upperBound", 100000000)
.option("numPartitions", 10000)
.load();
参数具体意义:
| These options must all be specified if any of them is specified. In addition, |
| The maximum number of partitions that can be used for parallelism in table reading and writing. This also determines the maximum number of concurrent JDBC connections. If the number of partitions to write exceeds this limit, we decrease it to this limit by calling |
partitionColumn:根据哪个字段分区,必须是数字类型,int是可以的,一般用id
lowerBound:分区下界,假如是10000,那么10000条数据之前都是在一个任务执行
upperBound:分区上届,lowerBound和upperBound的数据会被拆分,而边界外围的会单独作为分区
numPartitions:分区边界之间的数据要分多少分区。
至于到底分了多少块,边界之外的数据怎么分的块,没必要纠结,只要知道,数据肯定是全部取回来了。
另外只需要部分数据的,可以按照sql的方式:
.option("dbtable", "test_table")
可以改写成:
.option("dbtable", "(select * from test_table where dt >= '2017-05-01') as T")
参考:
http://spark.apache.org/docs/latest/configuration.html