aboutsummaryrefslogtreecommitdiff
path: root/streaming
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-7650] [STREAMING] [WEBUI] Move streaming css and js files to the strea...zsxwing2015-05-144-3/+356
* [SPARK-7645] [STREAMING] [WEBUI] Show milliseconds in the UI if the batch int...zsxwing2015-05-145-11/+84
* [SPARK-6752] [STREAMING] [REVISED] Allow StreamingContext to be recreated fro...Tathagata Das2015-05-134-180/+9
* [STREAMING] [MINOR] Keep streaming.UIUtils privateAndrew Or2015-05-131-1/+1
* [SPARK-7589] [STREAMING] [WEBUI] Make "Input Rate" in the Streaming page cons...zsxwing2015-05-131-15/+12
* [SPARK-7554] [STREAMING] Throw exception when an active/stopped StreamingCont...Tathagata Das2015-05-123-3/+59
* [SPARK-7553] [STREAMING] Added methods to maintain a singleton StreamingContextTathagata Das2015-05-122-11/+202
* [SPARK-7406] [STREAMING] [WEBUI] Add tooltips for "Scheduling Delay", "Proces...zsxwing2015-05-123-9/+14
* [SPARK-7532] [STREAMING] StreamingContext.start() made to logWarning and not ...Tathagata Das2015-05-122-17/+14
* [SPARK-7485] [BUILD] Remove pyspark files from assembly.Marcelo Vanzin2015-05-121-8/+0
* [SPARK-7530] [STREAMING] Added StreamingContext.getState() to expose the curr...Tathagata Das2015-05-116-33/+143
* [STREAMING] [MINOR] Close files correctly when iterator is finished in stream...jerryshao2015-05-111-2/+3
* [SPARK-7361] [STREAMING] Throw unambiguous exception when attempting to start...Tathagata Das2015-05-112-8/+58
* [SPARK-7326] [STREAMING] Performing window() on a WindowedDStream doesn't wor...Wesley Miao2015-05-113-8/+22
* [SPARK-7305] [STREAMING] [WEBUI] Make BatchPage show friendly information whe...zsxwing2015-05-071-30/+106
* [SPARK-7217] [STREAMING] Add configuration to control the default behavior of...Tathagata Das2015-05-072-5/+24
* [SPARK-7430] [STREAMING] [TEST] General improvements to streaming tests to in...Tathagata Das2015-05-071-12/+21
* [SPARK-7405] [STREAMING] Fix the bug that ReceiverInputDStream doesn't report...zsxwing2015-05-062-0/+12
* [SPARK-6939] [STREAMING] [WEBUI] Add timeline and histogram graphs for stream...zsxwing2015-05-0513-213/+762
* [SPARK-7318] [STREAMING] DStream cleans objects that are not closuresAndrew Or2015-05-052-3/+4
* [SPARK-7350] [STREAMING] [WEBUI] Attach the Streaming tab when calling ssc.st...zsxwing2015-05-052-1/+5
* [SPARK-7341] [STREAMING] [TESTS] Fix the flaky test: org.apache.spark.stre...zsxwing2015-05-052-63/+140
* [SPARK-7113] [STREAMING] Support input information reporting for Direct Kafka...jerryshao2015-05-051-2/+2
* [SPARK-7139] [STREAMING] Allow received block metadata to be saved to WAL and...Tathagata Das2015-05-059-149/+277
* [SPARK-7315] [STREAMING] [TEST] Fix flaky WALBackedBlockRDDSuiteTathagata Das2015-05-021-4/+8
* [SPARK-7112][Streaming][WIP] Add a InputInfoTracker to track all the input st...jerryshao2015-05-0116-46/+247
* [SPARK-7309] [CORE] [STREAMING] Shutdown the thread pools in ReceivedBlockHan...zsxwing2015-05-011-0/+1
* [SPARK-7282] [STREAMING] Fix the race conditions in StreamingListenerSuitezsxwing2015-04-301-7/+8
* [SPARK-6862] [STREAMING] [WEBUI] Add BatchPage to display details of a batchzsxwing2015-04-2911-80/+709
* [SPARK-6752] [STREAMING] [REOPENED] Allow StreamingContext to be recreated fr...Tathagata Das2015-04-296-61/+476
* [SPARK-7056] [STREAMING] Make the Write Ahead Log pluggableTathagata Das2015-04-2921-206/+684
* [SPARK-7223] Rename RPC askWithReply -> askWithReply, sendWithReply -> ask.Reynold Xin2015-04-291-3/+3
* [SPARK-7138] [STREAMING] Add method to BlockGenerator to add multiple records...Tathagata Das2015-04-281-0/+14
* Revert "[SPARK-6752][Streaming] Allow StreamingContext to be recreated from c...Patrick Wendell2015-04-256-476/+61
* [SPARK-6752][Streaming] Allow StreamingContext to be recreated from checkpoin...Tathagata Das2015-04-236-61/+476
* Disable flaky test: ReceiverSuite "block generator throttling".Reynold Xin2015-04-221-1/+1
* [SPARK-7052][Core] Add ThreadUtils and move thread methods from Utils to Thre...zsxwing2015-04-222-4/+4
* SPARK-3276 Added a new configuration spark.streaming.minRememberDurationemres2015-04-211-13/+17
* [SPARK-6985][streaming] Receiver maxRate over 1000 causes a StackOverflowErrorDavid McGuire2015-04-212-41/+21
* [SPARK-6979][Streaming] Replace JobScheduler.eventActor and JobGenerator.even...zsxwing2015-04-192-37/+41
* [SPARK-6983][Streaming] Update ReceiverTrackerActor to use the new Rpc interfacezsxwing2015-04-193-69/+51
* [SPARK-6796][Streaming][WebUI] Add "Active Batches" and "Completed Batches" l...zsxwing2015-04-143-10/+159
* [SPARK-5931][CORE] Use consistent naming for time propertiesIlya Ganelin2015-04-134-28/+28
* [SPARK-6765] Enable scalastyle on test code.Reynold Xin2015-04-131-2/+2
* [SPARK-6860][Streaming][WebUI] Fix the possible inconsistency of StreamingPagezsxwing2015-04-132-6/+7
* [SPARK-6762]Fix potential resource leaks in CheckPoint CheckpointWriter and C...lisurprise2015-04-132-19/+31
* [SPARK-6766][Streaming] Fix issue about StreamingListenerBatchSubmitted and S...zsxwing2015-04-104-18/+180
* [SPARK-6758]block the right jetty package in logWangTaoTheTonic2015-04-091-1/+1
* [SPARK-6765] Fix test code style for streaming.Reynold Xin2015-04-0816-58/+96
* [SPARK-6602][Core] Replace direct use of Akka with Spark RPC interface - part 1zsxwing2015-04-041-14/+11