Hi,
Can you provide the code and configuration? Next one works okay for me:
//start the server
Ignite ignite = Ignition.start("server_config.xml");
//activate the cluster
ignite.cluster().active();
//create the spark session with daemon client node inside
IgniteSparkSession igniteSparkSession = IgniteSparkSession.builder()
.appName("example")
.master("local")
.config("spark.executor.instances", "2")
.igniteConfig("client_config.xml")
.getOrCreate();
System.out.println("spark start------");
igniteSparkSession.sql("SELECT * FROM DdaRecord");
BR,
Andrei
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/