aboutsummaryrefslogtreecommitdiff
path: root/repl/src/main/scala
Commit message (Collapse)AuthorAgeFilesLines
* Review comments on the PR for scala 2.10 migration.Prashant Sharma2013-12-131-1/+0
|
* Various merge correctionsAaron Davidson2013-11-141-11/+3
| | | | | | | | | | I've diff'd this patch against my own -- since they were both created independently, this means that two sets of eyes have gone over all the merge conflicts that were created, so I'm feeling significantly more confident in the resulting PR. @rxin has looked at the changes to the repl and is resoundingly confident that they are correct.
* Merge branch 'master' into scala-2.10Raymond Liu2013-11-131-7/+29
|\
| * Makes Spark SIMR ready.Ali Ghodsi2013-10-241-0/+14
| |
| * Spark shell exits if it cannot create SparkContextAaron Davidson2013-10-171-1/+8
| | | | | | | | | | | | Mainly, this occurs if you provide a messed up MASTER url (one that doesn't match one of our regexes). Previously, we would default to Mesos, fail, and then start the shell anyway, except that any Spark command would fail.
* | Merge branch 'master' into scala-2.10Prashant Sharma2013-10-011-1/+1
|\| | | | | | | | | | | | | | | Conflicts: core/src/main/scala/org/apache/spark/ui/jobs/JobProgressUI.scala docs/_config.yml project/SparkBuild.scala repl/src/main/scala/org/apache/spark/repl/SparkILoop.scala
| * Update build version in masterPatrick Wendell2013-09-241-1/+1
| |
* | ported repl improvements from masterPrashant Sharma2013-09-152-2/+11
| |
* | Fixed repl suitePrashant Sharma2013-09-151-1/+1
| |
* | Merged with masterPrashant Sharma2013-09-0613-45/+92
|\|
| * Updated LICENSE with third-party licensesMatei Zaharia2013-09-021-0/+17
| |
| * Move some classes to more appropriate packages:Matei Zaharia2013-09-011-1/+1
| | | | | | | | | | | | * RDD, *RDDFunctions -> org.apache.spark.rdd * Utils, ClosureCleaner, SizeEstimator -> org.apache.spark.util * JavaSerializer, KryoSerializer -> org.apache.spark.serializer
| * Initial work to rename package to org.apache.sparkMatei Zaharia2013-09-0110-21/+21
| |
| * Format cleanup.Benjamin Hindman2013-07-301-1/+3
| |
| * Added property 'spark.executor.uri' for launching on Mesos withoutBenjamin Hindman2013-07-291-0/+2
| | | | | | | | | | | | | | requiring Spark to be installed. Using 'make_distribution.sh' a user can put a Spark distribution at a URI supported by Mesos (e.g., 'hdfs://...') and then set that when launching their job. Also added SPARK_EXECUTOR_URI for the REPL.
| * Add Apache license headers and LICENSE and NOTICE filesMatei Zaharia2013-07-162-0/+34
| |
* | Added add jars functionality to new repl, which was dropped while merging ↵Prashant Sharma2013-07-122-3/+10
| | | | | | | | with old.
* | Merge branch 'master' into master-mergePrashant Sharma2013-07-031-2/+1
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: core/pom.xml core/src/main/scala/spark/MapOutputTracker.scala core/src/main/scala/spark/RDD.scala core/src/main/scala/spark/RDDCheckpointData.scala core/src/main/scala/spark/SparkContext.scala core/src/main/scala/spark/Utils.scala core/src/main/scala/spark/api/python/PythonRDD.scala core/src/main/scala/spark/deploy/client/Client.scala core/src/main/scala/spark/deploy/master/MasterWebUI.scala core/src/main/scala/spark/deploy/worker/Worker.scala core/src/main/scala/spark/deploy/worker/WorkerWebUI.scala core/src/main/scala/spark/rdd/BlockRDD.scala core/src/main/scala/spark/rdd/ZippedRDD.scala core/src/main/scala/spark/scheduler/cluster/StandaloneSchedulerBackend.scala core/src/main/scala/spark/storage/BlockManager.scala core/src/main/scala/spark/storage/BlockManagerMaster.scala core/src/main/scala/spark/storage/BlockManagerMasterActor.scala core/src/main/scala/spark/storage/BlockManagerUI.scala core/src/main/scala/spark/util/AkkaUtils.scala core/src/test/scala/spark/SizeEstimatorSuite.scala pom.xml project/SparkBuild.scala repl/src/main/scala/spark/repl/SparkILoop.scala repl/src/test/scala/spark/repl/ReplSuite.scala streaming/src/main/scala/spark/streaming/StreamingContext.scala streaming/src/main/scala/spark/streaming/api/java/JavaStreamingContext.scala streaming/src/main/scala/spark/streaming/dstream/KafkaInputDStream.scala streaming/src/main/scala/spark/streaming/util/MasterFailureTest.scala
| * Fix search path for REPL class loader to really find added JARsMatei Zaharia2013-06-221-1/+3
| |
| * ADD_JARS environment variable for spark-shellMatei Zaharia2013-06-221-2/+7
| |
| * Update ASM to version 4.0Matei Zaharia2013-06-191-2/+1
| |
* | Fixied other warningsPrashant Sharma2013-04-291-1/+1
| |
* | scala 2.10 and master mergePrashant Sharma2013-04-242-16/+1
| |
* | Manually merged scala-2.10 and masterPrashant Sharma2013-04-221-1/+16
|\|
| * Merge remote-tracking branch 'jey/bump-development-version-to-0.8.0'Matei Zaharia2013-04-081-1/+1
| |\ | | | | | | | | | | | | | | | Conflicts: docs/_config.yml project/SparkBuild.scala
| | * Bump development version to 0.8.0Jey Kottalam2013-03-281-1/+1
| |/
| * Change version to 0.7.1-SNAPSHOT for development branchMatei Zaharia2013-02-271-1/+1
| |
* | Added more testsPrashant Sharma2013-04-191-4/+1
| |
* | Changed spark context as lazy val to become just val.Prashant Sharma2013-04-162-3/+5
| |
* | Added class wrappers instead of object and incorporated most of matei commentsPrashant Sharma2013-04-102-20/+39
| |
* | Made shell loading synchronous as async loading confuses with out of order ↵Prashant Sharma2013-04-101-1/+2
| | | | | | | | status messages
* | Ctrl-D hang bug fixed!Prashant Sharma2013-03-202-1/+13
| |
* | fixed autocompletion apparent hang due to loggingprashant2013-03-192-8/+9
| |
* | porting of repl to scala-2.10Prashant Sharma2013-03-1710-1507/+1895
|/
* Bump up version to 0.7.0-SNAPSHOT for master branchMatei Zaharia2012-10-221-1/+1
|
* Update version to 0.6.1-SNAPSHOT to show this is in developmentMatei Zaharia2012-10-221-1/+1
|
* Uncomment Maven publishing stuff and set version to 0.6.0Matei Zaharia2012-10-131-1/+1
|
* Some refactoring to make cluster scheduler pluggable.Matei Zaharia2012-07-061-1/+0
|
* Update version number for dev branchMatei Zaharia2012-06-151-1/+1
|
* Changed version in master branch to 0.5.1-SNAPSHOT for furtherMatei Zaharia2012-06-131-1/+1
| | | | development.
* Updated version number to 0.5.0Matei Zaharia2012-06-121-1/+1
|
* Make spark.repl.Main.interp_ publicly accessible (so Shark can get ridReynold Xin2012-05-301-1/+1
| | | | of a weird file dediated to accessing this variable).
* Update REPL code to use our own version of JLineReader, which fixes #89.Matei Zaharia2011-11-073-8/+8
| | | | | I'm not entirely sure why this broke in the jump from Scala 2.9.0.1 to 2.9.1 -- maybe something about name resolution changed?
* Upgrade to Scala 2.9.1.Ismael Juma2011-08-311-2/+2
| | | | | | | | | Interestingly, the version in Maven is 2.9.1, but SBT outputs file to the 2.9.1.final directory inside target. A couple of small changes in SparkIMain were also required. All tests pass and ./spark-shell launches successfully.
* Merge branch 'master' into scala-2.9Matei Zaharia2011-07-141-1/+1
|\ | | | | | | | | | | Conflicts: project/build.properties repl/src/main/scala/spark/repl/SparkInterpreterLoop.scala
| * Update version number to 0.4-SNAPSHOTMatei Zaharia2011-07-141-1/+1
| |
| * Print version number 0.3 in REPLMatei Zaharia2011-06-261-1/+1
| |
* | Ensure logging is initialized before any Spark threads run in the REPLMatei Zaharia2011-05-311-0/+6
| |
* | Another fix ported forward for the REPLMatei Zaharia2011-05-312-2/+8
| |
* | Further fixes to interpreter (adding in some code generation changes IMatei Zaharia2011-05-313-4/+15
| | | | | | | | | | missed before and setting SparkEnv properly on the threads that execute each line in the 2.9 interpreter).