File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ matrix:
1616 # Spark 2.0.0
1717 - jdk : openjdk7
1818 scala : 2.11.8
19- env : TEST_SPARK_VERSION="2.0.1 " LUCENE_ANALYZER="en"
19+ env : TEST_SPARK_VERSION="2.0.2 " LUCENE_ANALYZER="en"
2020 - jdk : oraclejdk8
2121 scala : 2.11.8
22- env : TEST_SPARK_VERSION="2.0.1 " LUCENE_ANALYZER="en"
22+ env : TEST_SPARK_VERSION="2.0.2 " LUCENE_ANALYZER="en"
2323 - jdk : oraclejdk8
2424 scala : 2.11.8
25- env : TEST_SPARK_VERSION="2.0.1 " LUCENE_ANALYZER="whitespace"
25+ env : TEST_SPARK_VERSION="2.0.2 " LUCENE_ANALYZER="whitespace"
2626script :
2727 - sbt ++$TRAVIS_SCALA_VERSION clean update -Dlucenerdd.analyzer.name=${LUCENE_ANALYZER} -test
2828 - sbt ++$TRAVIS_SCALA_VERSION scalastyle
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ pomExtra := (
7878val luceneV = " 5.5.3"
7979
8080spName := " zouzias/spark-lucenerdd"
81- sparkVersion := " 2.0.1 "
81+ sparkVersion := " 2.0.2 "
8282spShortDescription := " Spark RDD with Lucene's query capabilities"
8383sparkComponents ++= Seq (" core" , " sql" )
8484spAppendScalaVersion := true
Original file line number Diff line number Diff line change @@ -20,9 +20,11 @@ MAIN_JAR=${CURRENT_DIR}/target/scala-2.11/spark-lucenerdd-assembly-${SPARK_LUCEN
2020# Run spark shell locally
2121${SPARK_HOME} /bin/spark-shell --jars " ${MAIN_JAR} " \
2222 --conf " spark.executor.memory=1g" \
23- --conf " spark.driver.memory=512m " \
23+ --conf " spark.driver.memory=1g " \
2424 --conf " spark.rdd.compress=true" \
2525 --conf " spark.serializer=org.apache.spark.serializer.KryoSerializer" \
2626 --conf " spark.kryo.registrator=org.zouzias.spark.lucenerdd.LuceneRDDKryoRegistrator" \
27+ --conf spark.executor.extraJavaOptions=" -Dlucenerdd.index.store.mode=disk" \
28+ --conf spark.driver.extraJavaOptions=" -Dlucenerdd.index.store.mode=disk" \
2729 --conf " spark.kryoserializer.buffer=24mb" \
2830 --master local[* ]
You can’t perform that action at this time.
0 commit comments