I added this config to my spark-env.sh
------------------------------------------------------------
# Optionally set IGNITE_HOME here.
# IGNITE_HOME=/path/to/my-ignite-home
IGNITE_LIBS="${IGNITE_HOME}/libs/*"
for file in ${IGNITE_HOME}/libs/*
do
if [ -d ${file} ] && [ "${file}" != "${IGNITE_HOME}"/libs/optional ];
then
IGNITE_LIBS=${IGNITE_LIBS}:${file}/*
fi
done
export SPARK_CLASSPATH=$IGNITE_LIBS
------------------------------------------------------------
It seems the "query-indexing" module still absent here on my cluster.
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/How-to-config-the-query-indexing-module-in-the-node-tp3962p3963.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.