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
1a175d13
Commit
1a175d13
authored
12 years ago
by
Stephen Haberman
Browse files
Options
Downloads
Patches
Plain Diff
Add NextIterator.closeIfNeeded.
parent
8f00d235
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/src/main/scala/spark/rdd/HadoopRDD.scala
+1
-1
1 addition, 1 deletion
core/src/main/scala/spark/rdd/HadoopRDD.scala
core/src/main/scala/spark/util/NextIterator.scala
+15
-1
15 additions, 1 deletion
core/src/main/scala/spark/util/NextIterator.scala
with
16 additions
and
2 deletions
core/src/main/scala/spark/rdd/HadoopRDD.scala
+
1
−
1
View file @
1a175d13
...
...
@@ -72,7 +72,7 @@ class HadoopRDD[K, V](
reader
=
fmt
.
getRecordReader
(
split
.
inputSplit
.
value
,
conf
,
Reporter
.
NULL
)
// Register an on-task-completion callback to close the input stream.
context
.
addOnCompleteCallback
{
()
=>
close
()
}
context
.
addOnCompleteCallback
{
()
=>
close
IfNeeded
()
}
val
key
:
K
=
reader
.
createKey
()
val
value
:
V
=
reader
.
createValue
()
...
...
This diff is collapsed.
Click to expand it.
core/src/main/scala/spark/util/NextIterator.scala
+
15
−
1
View file @
1a175d13
...
...
@@ -5,6 +5,7 @@ private[spark] abstract class NextIterator[U] extends Iterator[U] {
private
var
gotNext
=
false
private
var
nextValue
:
U
=
_
private
var
closed
=
false
protected
var
finished
=
false
/**
...
...
@@ -34,12 +35,25 @@ private[spark] abstract class NextIterator[U] extends Iterator[U] {
*/
protected
def
close
()
/**
* Calls the subclass-defined close method, but only once.
*
* Usually calling `close` multiple times should be fine, but historically
* there have been issues with some InputFormats throwing exceptions.
*/
def
closeIfNeeded
()
{
if
(!
closed
)
{
close
()
closed
=
true
}
}
override
def
hasNext
:
Boolean
=
{
if
(!
finished
)
{
if
(!
gotNext
)
{
nextValue
=
getNext
()
if
(
finished
)
{
close
()
close
IfNeeded
()
}
gotNext
=
true
}
...
...
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