- Mar 24, 2013
-
-
Holden Karau authored
-
- Mar 15, 2013
-
-
Mikhail Bautin authored
Also rename parent project to spark-parent (otherwise it shows up as "parent" in IntelliJ, which is very confusing).
-
- Mar 12, 2013
-
-
Stephen Haberman authored
-
- Mar 11, 2013
-
-
Stephen Haberman authored
This also refactors out the common "gotNext" iterator pattern into a shared utility class.
-
- Mar 01, 2013
-
-
Mark Hamstra authored
Instead of failing to bind to a fixed, already-in-use port, let the OS choose an available port for TestServer.
-
Mark Hamstra authored
-
- Feb 25, 2013
-
-
Patrick Wendell authored
This fixes a bug introduced by Matei's recent change.
-
Matei Zaharia authored
-
Tathagata Das authored
-
Matei Zaharia authored
For some reason, ScalaDoc complained about no such constructor for StreamingContext; it doesn't seem like an actual Scala error but it prevented sbt publish and from working because docs weren't built.
-
Matei Zaharia authored
Also warns if spark.cleaner.ttl is not set in the version where you pass your own SparkContext.
-
- Feb 24, 2013
-
-
Tathagata Das authored
-
Tathagata Das authored
-
Tathagata Das authored
-
Tathagata Das authored
-
- Feb 23, 2013
-
-
Tathagata Das authored
Fixed differences in APIs of StreamingContext and JavaStreamingContext. Change rawNetworkStream to rawSocketStream, and added twitter, actor, zeroMQ streams to JavaStreamingContext. Also added them to JavaAPISuite.
-
- Feb 21, 2013
-
-
Tathagata Das authored
-
- Feb 20, 2013
-
-
Prashant Sharma authored
-
- Feb 19, 2013
-
-
Patrick Wendell authored
-
Patrick Wendell authored
This commit uses the RDD type in `slice`, making it available to both normal and pair RDD's in java. It also updates the signature for `slice` to match changes in the Scala API.
-
Patrick Wendell authored
This is an improved implementation of the `transform` operator in Java. The main difference is that this allows all four possible types of transform functions 1. JavaRDD -> JavaRDD 2. JavaRDD -> JavaPairRDD 3. JavaPairRDD -> JavaPairRDD 4. JavaPairRDD -> JavaRDD whereas previously only (1) and (3) were possible. Conflicts: streaming/src/test/java/spark/streaming/JavaAPISuite.java
-
Patrick Wendell authored
-
Nick Pentreath authored
-
Prashant Sharma authored
-
Prashant Sharma authored
-
- Feb 18, 2013
-
-
Tathagata Das authored
Changed networkStream to socketStream and pluggableNetworkStream to become networkStream as a way to create streams from arbitrary network receiver.
-
Tathagata Das authored
Added checkpointing and fault-tolerance semantics to the programming guide. Fixed default checkpoint interval to being a multiple of slide duration. Fixed visibility of some classes and objects to clean up docs.
-
Matei Zaharia authored
-
- Feb 17, 2013
-
-
Tathagata Das authored
recovering from 1st failure - Made the scheduler to checkpoint after clearing old metadata which ensures that a new checkpoint is written as soon as at least one batch gets computed while recovering from a failure. This ensures that if there is a 2nd failure while recovering from 1st failure, the system start 2nd recovery from a newer checkpoint. - Modified Checkpoint writer to write checkpoint in a different thread. - Added a check to make sure that compute for InputDStreams gets called only for strictly increasing times. - Changed implementation of slice to call getOrCompute on parent DStream in time-increasing order. - Added testcase to test slice. - Fixed testGroupByKeyAndWindow testcase in JavaAPISuite to verify results with expected output in an order-independent manner.
-
- Feb 16, 2013
-
-
Stephen Haberman authored
-
- Feb 15, 2013
-
-
Tathagata Das authored
-
- Feb 14, 2013
-
-
Tathagata Das authored
Moved Java streaming examples to examples/src/main/java/spark/streaming/... and fixed logging in NetworkInputTracker to highlight errors when receiver deregisters/shuts down.
-
Tathagata Das authored
Added TwitterInputDStream from example to StreamingContext. Renamed example TwitterBasic to TwitterPopularTags.
-
Tathagata Das authored
Removed countByKeyAndWindow on paired DStreams, and added countByValueAndWindow for all DStreams. Updated both scala and java API and testsuites.
-
- Feb 13, 2013
-
-
Tathagata Das authored
-
Tathagata Das authored
Added filter functionality to reduceByKeyAndWindow with inverse. Consolidated reduceByKeyAndWindow's many functions into smaller number of functions with optional parameters.
-
Tathagata Das authored
Changed scheduler and file input stream to fix bugs in the driver fault tolerance. Added MasterFailureTest to rigorously test master fault tolerance with file input stream.
-
- Feb 12, 2013
-
-
Patrick Wendell authored
This ports a useful workaround (the `transform` function) to JavaPairDStream. It is necessary to do things like sorting which are not supported yet in the core streaming API.
-
- Feb 11, 2013
-
-
Patrick Wendell authored
-
Patrick Wendell authored
-