Last active
February 26, 2019 18:57
-
-
Save balvinder294/2ddf70b31f5065c0dd08440516522f42 to your computer and use it in GitHub Desktop.
Application Properties for Spark Configuration in Jhipster
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.tekraze.sparkhipster.config; | |
import org.apache.spark.SparkConf; | |
import org.apache.spark.api.java.JavaSparkContext; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import org.springframework.beans.factory.annotation.Value; | |
import org.springframework.boot.context.properties.ConfigurationProperties; | |
import org.springframework.context.annotation.Bean; | |
import org.apache.spark.sql.SparkSession; | |
/** | |
* Properties specific to Sparkhipster. | |
* <p> | |
* Properties are configured in the application.yml file. | |
* See {@link io.github.jhipster.config.JHipsterProperties} for a good example. | |
*/ | |
@ConfigurationProperties(prefix = "application", ignoreUnknownFields = false) | |
public class ApplicationProperties { | |
private static Logger log = LoggerFactory.getLogger(ApplicationProperties.class.getName()); | |
@Value("${application.spark.master}") | |
private String sparkMaster; // = "spark://192.168.31.221:7077"; | |
@Value("${spring.data.cassandra.keyspace-name}") | |
private String cassandraKeyspace; // = "sparkhipster"; | |
@Value("${application.cassandra.table}") | |
private String cassandraTable; // = "book"; | |
@Value("${spring.data.cassandra.contact-points}") | |
private String cassandraHost; // = "localhost"; | |
@Value("${spring.data.cassandra.port}") | |
private String cassandraPort; // = "9042"; | |
@Bean | |
public SparkConf sparkConf() { | |
SparkConf conf = new SparkConf(true) | |
.set("spark.cassandra.connection.host", cassandraHost) | |
.set("spark.cassandra.connection.port", cassandraPort) | |
.setMaster(sparkMaster) | |
.set("spark.driver.allowMultipleContexts", "true") | |
.setAppName("sparkHipster"); | |
System.out.println("SparkConf"+conf.isTraceEnabled()); | |
return conf; | |
} | |
@Bean | |
public JavaSparkContext javaSparkContext() { | |
log.info("Connecting to spark with master Url: {}, and cassandra host: {}", | |
sparkMaster, cassandraHost); | |
JavaSparkContext javaSparkContext = new JavaSparkContext(sparkConf()); | |
log.debug("spark context created"); | |
return javaSparkContext; | |
} | |
@Bean | |
public SparkSession sparkSession() { | |
return SparkSession | |
.builder() | |
.config(sparkConf()) | |
.sparkContext(javaSparkContext().sc()) | |
.appName("SparkConfiguration") | |
.getOrCreate(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment