forked from github/dataease
feat(backend): spark
This commit is contained in:
parent
ab2a840bd5
commit
cd65f762e5
@ -1,7 +1,6 @@
|
|||||||
package io.dataease.config;
|
package io.dataease.config;
|
||||||
|
|
||||||
import com.fit2cloud.autoconfigure.QuartzAutoConfiguration;
|
import com.fit2cloud.autoconfigure.QuartzAutoConfiguration;
|
||||||
import org.apache.spark.SparkConf;
|
|
||||||
import org.apache.spark.api.java.JavaSparkContext;
|
import org.apache.spark.api.java.JavaSparkContext;
|
||||||
import org.apache.spark.sql.SQLContext;
|
import org.apache.spark.sql.SQLContext;
|
||||||
import org.apache.spark.sql.SparkSession;
|
import org.apache.spark.sql.SparkSession;
|
||||||
@ -35,8 +34,10 @@ public class CommonConfig {
|
|||||||
@Bean
|
@Bean
|
||||||
@ConditionalOnMissingBean
|
@ConditionalOnMissingBean
|
||||||
public JavaSparkContext javaSparkContext() {
|
public JavaSparkContext javaSparkContext() {
|
||||||
SparkConf conf = new SparkConf().setAppName(env.getProperty("spark.appName", "DataeaseJob")).setMaster(env.getProperty("spark.master", "local[*]"));
|
SparkSession spark = SparkSession.builder()
|
||||||
SparkSession spark = SparkSession.builder().config(conf).getOrCreate();
|
.appName(env.getProperty("spark.appName", "DataeaseJob"))
|
||||||
|
.master(env.getProperty("spark.master", "local[*]"))
|
||||||
|
.getOrCreate();
|
||||||
JavaSparkContext sc = new JavaSparkContext(spark.sparkContext());
|
JavaSparkContext sc = new JavaSparkContext(spark.sparkContext());
|
||||||
return sc;
|
return sc;
|
||||||
}
|
}
|
||||||
|
@ -59,14 +59,22 @@ public class SparkCalc {
|
|||||||
if (x.getDeType() == 0 || x.getDeType() == 1) {
|
if (x.getDeType() == 0 || x.getDeType() == 1) {
|
||||||
list.add(Bytes.toString(result.getValue(column_family.getBytes(), x.getOriginName().getBytes())));
|
list.add(Bytes.toString(result.getValue(column_family.getBytes(), x.getOriginName().getBytes())));
|
||||||
} else if (x.getDeType() == 2) {
|
} else if (x.getDeType() == 2) {
|
||||||
list.add(Long.valueOf(Bytes.toString(result.getValue(column_family.getBytes(), x.getOriginName().getBytes()))));
|
String l = Bytes.toString(result.getValue(column_family.getBytes(), x.getOriginName().getBytes()));
|
||||||
|
if (StringUtils.isEmpty(l)) {
|
||||||
|
l = "0";
|
||||||
|
}
|
||||||
|
list.add(Long.valueOf(l));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
yAxis.forEach(y -> {
|
yAxis.forEach(y -> {
|
||||||
if (y.getDeType() == 0 || y.getDeType() == 1) {
|
if (y.getDeType() == 0 || y.getDeType() == 1) {
|
||||||
list.add(Bytes.toString(result.getValue(column_family.getBytes(), y.getOriginName().getBytes())));
|
list.add(Bytes.toString(result.getValue(column_family.getBytes(), y.getOriginName().getBytes())));
|
||||||
} else if (y.getDeType() == 2) {
|
} else if (y.getDeType() == 2) {
|
||||||
list.add(Long.valueOf(Bytes.toString(result.getValue(column_family.getBytes(), y.getOriginName().getBytes()))));
|
String l = Bytes.toString(result.getValue(column_family.getBytes(), y.getOriginName().getBytes()));
|
||||||
|
if (StringUtils.isEmpty(l)) {
|
||||||
|
l = "0";
|
||||||
|
}
|
||||||
|
list.add(Long.valueOf(l));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return RowFactory.create(list.toArray());
|
return RowFactory.create(list.toArray());
|
||||||
@ -99,7 +107,8 @@ public class SparkCalc {
|
|||||||
List<String[]> data = new ArrayList<>();
|
List<String[]> data = new ArrayList<>();
|
||||||
|
|
||||||
// transform
|
// transform
|
||||||
List<Row> list = sql.javaRDD().collect();
|
// List<Row> list = sql.javaRDD().collect();
|
||||||
|
List<Row> list = sql.collectAsList();
|
||||||
for (Row row : list) {
|
for (Row row : list) {
|
||||||
String[] r = new String[row.length()];
|
String[] r = new String[row.length()];
|
||||||
for (int i = 0; i < row.length(); i++) {
|
for (int i = 0; i < row.length(); i++) {
|
||||||
@ -108,6 +117,16 @@ public class SparkCalc {
|
|||||||
data.add(r);
|
data.add(r);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Iterator<Row> rowIterator = sql.toLocalIterator();
|
||||||
|
// while (rowIterator.hasNext()){
|
||||||
|
// Row row = rowIterator.next();
|
||||||
|
// String[] r = new String[row.length()];
|
||||||
|
// for (int i = 0; i < row.length(); i++) {
|
||||||
|
// r[i] = row.get(i).toString();
|
||||||
|
// }
|
||||||
|
// data.add(r);
|
||||||
|
// }
|
||||||
|
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user