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
d942d390
Commit
d942d390
authored
12 years ago
by
Matei Zaharia
Browse files
Options
Downloads
Patches
Plain Diff
Handle exceptions in RecordReader.close() better (suggested by Jim
Donahue)
parent
c8982404
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
+11
-6
11 additions, 6 deletions
core/src/main/scala/spark/rdd/HadoopRDD.scala
core/src/main/scala/spark/rdd/NewHadoopRDD.scala
+12
-3
12 additions, 3 deletions
core/src/main/scala/spark/rdd/NewHadoopRDD.scala
with
23 additions
and
9 deletions
core/src/main/scala/spark/rdd/HadoopRDD.scala
+
11
−
6
View file @
d942d390
...
...
@@ -15,7 +15,7 @@ import org.apache.hadoop.mapred.RecordReader
import
org.apache.hadoop.mapred.Reporter
import
org.apache.hadoop.util.ReflectionUtils
import
spark.
{
Dependency
,
RDD
,
SerializableWritable
,
SparkContext
,
Partition
,
TaskContext
}
import
spark.
{
Dependency
,
Logging
,
Partition
,
RDD
,
SerializableWritable
,
SparkContext
,
TaskContext
}
/**
...
...
@@ -42,7 +42,7 @@ class HadoopRDD[K, V](
keyClass
:
Class
[
K
],
valueClass
:
Class
[
V
],
minSplits
:
Int
)
extends
RDD
[(
K
,
V
)](
sc
,
Nil
)
{
extends
RDD
[(
K
,
V
)](
sc
,
Nil
)
with
Logging
{
// A Hadoop JobConf can be about 10 KB, which is pretty big, so broadcast it
private
val
confBroadcast
=
sc
.
broadcast
(
new
SerializableWritable
(
conf
))
...
...
@@ -71,7 +71,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
(
()
=>
reader
.
close
()
)
context
.
addOnCompleteCallback
{
()
=>
close
()
}
val
key
:
K
=
reader
.
createKey
()
val
value
:
V
=
reader
.
createValue
()
...
...
@@ -88,9 +88,6 @@ class HadoopRDD[K, V](
}
gotNext
=
true
}
if
(
finished
)
{
reader
.
close
()
}
!
finished
}
...
...
@@ -104,6 +101,14 @@ class HadoopRDD[K, V](
gotNext
=
false
(
key
,
value
)
}
private
def
close
()
{
try
{
reader
.
close
()
}
catch
{
case
e
:
Exception
=>
logWarning
(
"Exception in RecordReader.close()"
,
e
)
}
}
}
override
def
getPreferredLocations
(
split
:
Partition
)
:
Seq
[
String
]
=
{
...
...
This diff is collapsed.
Click to expand it.
core/src/main/scala/spark/rdd/NewHadoopRDD.scala
+
12
−
3
View file @
d942d390
...
...
@@ -7,7 +7,7 @@ import org.apache.hadoop.conf.Configuration
import
org.apache.hadoop.io.Writable
import
org.apache.hadoop.mapreduce._
import
spark.
{
Dependency
,
RDD
,
SerializableWritable
,
SparkContext
,
Partition
,
TaskContext
}
import
spark.
{
Dependency
,
Logging
,
Partition
,
RDD
,
SerializableWritable
,
SparkContext
,
TaskContext
}
private
[
spark
]
...
...
@@ -26,7 +26,8 @@ class NewHadoopRDD[K, V](
valueClass
:
Class
[
V
],
@transient
conf
:
Configuration
)
extends
RDD
[(
K
,
V
)](
sc
,
Nil
)
with
HadoopMapReduceUtil
{
with
HadoopMapReduceUtil
with
Logging
{
// A Hadoop Configuration can be about 10 KB, which is pretty big, so broadcast it
private
val
confBroadcast
=
sc
.
broadcast
(
new
SerializableWritable
(
conf
))
...
...
@@ -61,7 +62,7 @@ class NewHadoopRDD[K, V](
reader
.
initialize
(
split
.
serializableHadoopSplit
.
value
,
hadoopAttemptContext
)
// Register an on-task-completion callback to close the input stream.
context
.
addOnCompleteCallback
(()
=>
reader
.
close
())
context
.
addOnCompleteCallback
(()
=>
close
())
var
havePair
=
false
var
finished
=
false
...
...
@@ -81,6 +82,14 @@ class NewHadoopRDD[K, V](
havePair
=
false
return
(
reader
.
getCurrentKey
,
reader
.
getCurrentValue
)
}
private
def
close
()
{
try
{
reader
.
close
()
}
catch
{
case
e
:
Exception
=>
logWarning
(
"Exception in RecordReader.close()"
,
e
)
}
}
}
override
def
getPreferredLocations
(
split
:
Partition
)
:
Seq
[
String
]
=
{
...
...
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