Skip to content

Commit 29a8715

Browse files
authored
Merge pull request #83 from zouzias/develop
Develop
2 parents 61450e9 + d5cb087 commit 29a8715

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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"
2626
script:
2727
- sbt ++$TRAVIS_SCALA_VERSION clean update -Dlucenerdd.analyzer.name=${LUCENE_ANALYZER} -test
2828
- sbt ++$TRAVIS_SCALA_VERSION scalastyle

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ pomExtra := (
7878
val luceneV = "5.5.3"
7979

8080
spName := "zouzias/spark-lucenerdd"
81-
sparkVersion := "2.0.1"
81+
sparkVersion := "2.0.2"
8282
spShortDescription := "Spark RDD with Lucene's query capabilities"
8383
sparkComponents ++= Seq("core", "sql")
8484
spAppendScalaVersion := true

spark-shell.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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[*]

0 commit comments

Comments
 (0)