Skip to content
Snippets Groups Projects
  1. Oct 03, 2014
  2. Oct 02, 2014
    • Eric Eijkelenboom's avatar
      [DEPLOY] SPARK-3759: Return the exit code of the driver process · 699af62d
      Eric Eijkelenboom authored
      
      SparkSubmitDriverBootstrapper.scala now returns the exit code of the driver process, instead of always returning 0.
      
      Author: Eric Eijkelenboom <ee@userreport.com>
      
      Closes #2628 from ericeijkelenboom/master and squashes the following commits:
      
      cc4a571 [Eric Eijkelenboom] Return the exit code of the driver process
      
      (cherry picked from commit 42d5077f)
      Signed-off-by: default avatarAndrew Or <andrewor14@gmail.com>
      699af62d
    • scwf's avatar
      [SPARK-3755][Core] avoid trying privileged port when request a non-privileged port · 16789f62
      scwf authored
      
      pwendell, ```tryPort``` is not compatible with old code in last PR, this is to fix it.
      And after discuss with srowen renamed the title to "avoid trying privileged port when request a non-privileged port". Plz refer to the discuss for detail.
      
      Author: scwf <wangfei1@huawei.com>
      
      Closes #2623 from scwf/1-1024 and squashes the following commits:
      
      10a4437 [scwf] add comment
      de3fd17 [scwf] do not try privileged port when request a non-privileged port
      42cb0fa [scwf] make tryPort compatible with old code
      cb8cc76 [scwf] do not use port 1 - 1024
      
      (cherry picked from commit 8081ce8b)
      Signed-off-by: default avatarAndrew Or <andrewor14@gmail.com>
      
      Conflicts:
      	core/src/main/scala/org/apache/spark/util/Utils.scala
      16789f62
    • Yin Huai's avatar
      [SQL][Docs] Update the output of printSchema and fix a typo in SQL programming guide. · 68693519
      Yin Huai authored
      
      We have changed the output format of `printSchema`. This PR will update our SQL programming guide to show the updated format. Also, it fixes a typo (the value type of `StructType` in Java API).
      
      Author: Yin Huai <huai@cse.ohio-state.edu>
      
      Closes #2630 from yhuai/sqlDoc and squashes the following commits:
      
      267d63e [Yin Huai] Update the output of printSchema and fix a typo.
      
      (cherry picked from commit 82a6a083)
      Signed-off-by: default avatarMichael Armbrust <michael@databricks.com>
      68693519
  3. Oct 01, 2014
  4. Sep 30, 2014
  5. Sep 29, 2014
  6. Sep 28, 2014
  7. Sep 27, 2014
  8. Sep 26, 2014
    • aniketbhatnagar's avatar
      SPARK-3639 | Removed settings master in examples · d6ed5abf
      aniketbhatnagar authored
      
      This patch removes setting of master as local in Kinesis examples so that users can set it using submit-job.
      
      Author: aniketbhatnagar <aniket.bhatnagar@gmail.com>
      
      Closes #2536 from aniketbhatnagar/Kinesis-Examples-Master-Unset and squashes the following commits:
      
      c9723ac [aniketbhatnagar] Merge remote-tracking branch 'origin/Kinesis-Examples-Master-Unset' into Kinesis-Examples-Master-Unset
      fec8ead [aniketbhatnagar] SPARK-3639 | Removed settings master in examples
      31cdc59 [aniketbhatnagar] SPARK-3639 | Removed settings master in examples
      
      (cherry picked from commit d16e161d)
      Signed-off-by: default avatarAndrew Or <andrewor14@gmail.com>
      d6ed5abf
  9. Sep 23, 2014
    • Mubarak Seyed's avatar
      [SPARK-1853] Show Streaming application code context (file, line number) in Spark Stages UI · 505ed6ba
      Mubarak Seyed authored
      This is a refactored version of the original PR https://github.com/apache/spark/pull/1723
      
       my mubarak
      
      Please take a look andrewor14, mubarak
      
      Author: Mubarak Seyed <mubarak.seyed@gmail.com>
      Author: Tathagata Das <tathagata.das1565@gmail.com>
      
      Closes #2464 from tdas/streaming-callsite and squashes the following commits:
      
      dc54c71 [Tathagata Das] Made changes based on PR comments.
      390b45d [Tathagata Das] Fixed minor bugs.
      904cd92 [Tathagata Das] Merge remote-tracking branch 'apache-github/master' into streaming-callsite
      7baa427 [Tathagata Das] Refactored getCallSite and setCallSite to make it simpler. Also added unit test for DStream creation site.
      b9ed945 [Mubarak Seyed] Adding streaming utils
      c461cf4 [Mubarak Seyed] Merge remote-tracking branch 'upstream/master'
      ceb43da [Mubarak Seyed] Changing default regex function name
      8c5d443 [Mubarak Seyed] Merge remote-tracking branch 'upstream/master'
      196121b [Mubarak Seyed] Merge remote-tracking branch 'upstream/master'
      491a1eb [Mubarak Seyed] Removing streaming visibility from getRDDCreationCallSite in DStream
      33a7295 [Mubarak Seyed] Fixing review comments: Merging both setCallSite methods
      c26d933 [Mubarak Seyed] Merge remote-tracking branch 'upstream/master'
      f51fd9f [Mubarak Seyed] Fixing scalastyle, Regex for Utils.getCallSite, and changing method names in DStream
      5051c58 [Mubarak Seyed] Getting return value of compute() into variable and call setCallSite(prevCallSite) only once. Adding return for other code paths (for None)
      a207eb7 [Mubarak Seyed] Fixing code review comments
      ccde038 [Mubarak Seyed] Removing Utils import from MappedDStream
      2a09ad6 [Mubarak Seyed] Changes in Utils.scala for SPARK-1853
      1d90cc3 [Mubarak Seyed] Changes for SPARK-1853
      5f3105a [Mubarak Seyed] Merge remote-tracking branch 'upstream/master'
      70f494f [Mubarak Seyed] Changes for SPARK-1853
      1500deb [Mubarak Seyed] Changes in Spark Streaming UI
      9d38d3c [Mubarak Seyed] [SPARK-1853] Show Streaming application code context (file, line number) in Spark Stages UI
      d466d75 [Mubarak Seyed] Changes for spark streaming UI
      
      (cherry picked from commit 729952a5)
      Signed-off-by: default avatarAndrew Or <andrewor14@gmail.com>
      505ed6ba
    • Andrew Or's avatar
      [SPARK-3653] Respect SPARK_*_MEMORY for cluster mode · 5bbc621f
      Andrew Or authored
      `SPARK_DRIVER_MEMORY` was only used to start the `SparkSubmit` JVM, which becomes the driver only in client mode but not cluster mode. In cluster mode, this property is simply not propagated to the worker nodes.
      
      `SPARK_EXECUTOR_MEMORY` is picked up from `SparkContext`, but in cluster mode the driver runs on one of the worker machines, where this environment variable may not be set.
      
      Author: Andrew Or <andrewor14@gmail.com>
      
      Closes #2500 from andrewor14/memory-env-vars and squashes the following commits:
      
      6217b38 [Andrew Or] Respect SPARK_*_MEMORY for cluster mode
      
      Conflicts:
      	core/src/main/scala/org/apache/spark/deploy/SparkSubmitArguments.scala
      5bbc621f
    • Sandy Ryza's avatar
      SPARK-3612. Executor shouldn't quit if heartbeat message fails to reach ... · ffd97be3
      Sandy Ryza authored
      
      ...the driver
      
      Author: Sandy Ryza <sandy@cloudera.com>
      
      Closes #2487 from sryza/sandy-spark-3612 and squashes the following commits:
      
      2b7353d [Sandy Ryza] SPARK-3612. Executor shouldn't quit if heartbeat message fails to reach the driver
      (cherry picked from commit d79238d0)
      
      Signed-off-by: default avatarPatrick Wendell <pwendell@gmail.com>
      ffd97be3
  10. Sep 22, 2014
  11. Sep 21, 2014
  12. Sep 19, 2014
    • andrewor14's avatar
      [Docs] Fix outdated docs for standalone cluster · fd883532
      andrewor14 authored
      
      This is now supported!
      
      Author: andrewor14 <andrewor14@gmail.com>
      Author: Andrew Or <andrewor14@gmail.com>
      
      Closes #2461 from andrewor14/document-standalone-cluster and squashes the following commits:
      
      85c8b9e [andrewor14] Wording change per Patrick
      35e30ee [Andrew Or] Fix outdated docs for standalone cluster
      
      (cherry picked from commit 8af23706)
      Signed-off-by: default avatarAndrew Or <andrewor14@gmail.com>
      fd883532
    • Larry Xiao's avatar
      [SPARK-2062][GraphX] VertexRDD.apply does not use the mergeFunc · 1687d6ba
      Larry Xiao authored
      
      VertexRDD.apply had a bug where it ignored the merge function for
      duplicate vertices and instead used whichever vertex attribute occurred
      first. This commit fixes the bug by passing the merge function through
      to ShippableVertexPartition.apply, which merges any duplicates using the
      merge function and then fills in missing vertices using the specified
      default vertex attribute. This commit also adds a unit test for
      VertexRDD.apply.
      
      Author: Larry Xiao <xiaodi@sjtu.edu.cn>
      Author: Blie Arkansol <xiaodi@sjtu.edu.cn>
      Author: Ankur Dave <ankurdave@gmail.com>
      
      Closes #1903 from larryxiao/2062 and squashes the following commits:
      
      625aa9d [Blie Arkansol] Merge pull request #1 from ankurdave/SPARK-2062
      476770b [Ankur Dave] ShippableVertexPartition.initFrom: Don't run mergeFunc on default values
      614059f [Larry Xiao] doc update: note about the default null value vertices construction
      dfdb3c9 [Larry Xiao] minor fix
      1c70366 [Larry Xiao] scalastyle check: wrap line, parameter list indent 4 spaces
      e4ca697 [Larry Xiao] [TEST] VertexRDD.apply mergeFunc
      6a35ea8 [Larry Xiao] [TEST] VertexRDD.apply mergeFunc
      4fbc29c [Blie Arkansol] undo unnecessary change
      efae765 [Larry Xiao] fix mistakes: should be able to call with or without mergeFunc
      b2422f9 [Larry Xiao] Merge branch '2062' of github.com:larryxiao/spark into 2062
      52dc7f7 [Larry Xiao] pass mergeFunc to VertexPartitionBase, where merge is handled
      581e9ee [Larry Xiao] TODO: VertexRDDSuite
      20d80a3 [Larry Xiao] [SPARK-2062][GraphX] VertexRDD.apply does not use the mergeFunc
      
      (cherry picked from commit 3bbbdd81)
      Signed-off-by: default avatarAnkur Dave <ankurdave@gmail.com>
      1687d6ba
  13. Sep 18, 2014
  14. Sep 17, 2014
  15. Sep 16, 2014
    • Andrew Or's avatar
      [SPARK-3490] Disable SparkUI for tests (backport into 1.1) · 937de93e
      Andrew Or authored
      Original PR: #2363
      
      Author: Andrew Or <andrewor14@gmail.com>
      
      Closes #2415 from andrewor14/disable-ui-for-tests-1.1 and squashes the following commits:
      
      8d9df5a [Andrew Or] Oops, missed one.
      509507d [Andrew Or] Backport #2363 (SPARK-3490) into branch-1.1
      937de93e
Loading