Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs525-sp18-g07
spark
Commits
f9771690
Commit
f9771690
authored
11 years ago
by
Tathagata Das
Browse files
Options
Downloads
Patches
Plain Diff
Minor formatting fixes.
parent
dc3ee6b6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
streaming/src/main/scala/org/apache/spark/streaming/scheduler/BatchInfo.scala
+4
-5
4 additions, 5 deletions
...cala/org/apache/spark/streaming/scheduler/BatchInfo.scala
with
4 additions
and
5 deletions
streaming/src/main/scala/org/apache/spark/streaming/scheduler/BatchInfo.scala
+
4
−
5
View file @
f9771690
...
...
@@ -26,7 +26,6 @@ import org.apache.spark.streaming.Time
* the streaming scheduler queue
* @param processingStartTime Clock time of when the first job of this batch started processing
* @param processingEndTime Clock time of when the last job of this batch finished processing
*
*/
case
class
BatchInfo
(
batchTime
:
Time
,
...
...
@@ -48,9 +47,9 @@ case class BatchInfo(
*/
def
processingDelay
=
processingEndTime
.
zip
(
processingStartTime
).
map
(
x
=>
x
.
_1
-
x
.
_2
).
headOption
/**
* Time taken for all the jobs of this batch to finish processing from the time they
* were submitted. Essentially, it is `processingDelay` + `schedulingDelay`.
*/
/**
* Time taken for all the jobs of this batch to finish processing from the time they
* were submitted. Essentially, it is `processingDelay` + `schedulingDelay`.
*/
def
totalDelay
=
schedulingDelay
.
zip
(
processingDelay
).
map
(
x
=>
x
.
_1
+
x
.
_2
).
headOption
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment