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
bd167f83
Commit
bd167f83
authored
12 years ago
by
Andrey Kouznetsov
Browse files
Options
Downloads
Patches
Plain Diff
call setConf from input format if it is Configurable
parent
c1e9cdc4
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
+7
-0
7 additions, 0 deletions
core/src/main/scala/spark/rdd/HadoopRDD.scala
core/src/main/scala/spark/rdd/NewHadoopRDD.scala
+7
-1
7 additions, 1 deletion
core/src/main/scala/spark/rdd/NewHadoopRDD.scala
with
14 additions
and
1 deletion
core/src/main/scala/spark/rdd/HadoopRDD.scala
+
7
−
0
View file @
bd167f83
...
@@ -17,6 +17,7 @@ import org.apache.hadoop.util.ReflectionUtils
...
@@ -17,6 +17,7 @@ import org.apache.hadoop.util.ReflectionUtils
import
spark.
{
Dependency
,
Logging
,
Partition
,
RDD
,
SerializableWritable
,
SparkContext
,
TaskContext
}
import
spark.
{
Dependency
,
Logging
,
Partition
,
RDD
,
SerializableWritable
,
SparkContext
,
TaskContext
}
import
spark.util.NextIterator
import
spark.util.NextIterator
import
org.apache.hadoop.conf.Configurable
/**
/**
...
@@ -50,6 +51,9 @@ class HadoopRDD[K, V](
...
@@ -50,6 +51,9 @@ class HadoopRDD[K, V](
override
def
getPartitions
:
Array
[
Partition
]
=
{
override
def
getPartitions
:
Array
[
Partition
]
=
{
val
inputFormat
=
createInputFormat
(
conf
)
val
inputFormat
=
createInputFormat
(
conf
)
if
(
inputFormat
.
isInstanceOf
[
Configurable
])
{
inputFormat
.
asInstanceOf
[
Configurable
].
setConf
(
conf
)
}
val
inputSplits
=
inputFormat
.
getSplits
(
conf
,
minSplits
)
val
inputSplits
=
inputFormat
.
getSplits
(
conf
,
minSplits
)
val
array
=
new
Array
[
Partition
](
inputSplits
.
size
)
val
array
=
new
Array
[
Partition
](
inputSplits
.
size
)
for
(
i
<-
0
until
inputSplits
.
size
)
{
for
(
i
<-
0
until
inputSplits
.
size
)
{
...
@@ -69,6 +73,9 @@ class HadoopRDD[K, V](
...
@@ -69,6 +73,9 @@ class HadoopRDD[K, V](
val
conf
=
confBroadcast
.
value
.
value
val
conf
=
confBroadcast
.
value
.
value
val
fmt
=
createInputFormat
(
conf
)
val
fmt
=
createInputFormat
(
conf
)
if
(
fmt
.
isInstanceOf
[
Configurable
])
{
fmt
.
asInstanceOf
[
Configurable
].
setConf
(
conf
)
}
reader
=
fmt
.
getRecordReader
(
split
.
inputSplit
.
value
,
conf
,
Reporter
.
NULL
)
reader
=
fmt
.
getRecordReader
(
split
.
inputSplit
.
value
,
conf
,
Reporter
.
NULL
)
// Register an on-task-completion callback to close the input stream.
// Register an on-task-completion callback to close the input stream.
...
...
This diff is collapsed.
Click to expand it.
core/src/main/scala/spark/rdd/NewHadoopRDD.scala
+
7
−
1
View file @
bd167f83
...
@@ -3,7 +3,7 @@ package spark.rdd
...
@@ -3,7 +3,7 @@ package spark.rdd
import
java.text.SimpleDateFormat
import
java.text.SimpleDateFormat
import
java.util.Date
import
java.util.Date
import
org.apache.hadoop.conf.Configuration
import
org.apache.hadoop.conf.
{
Configurable
,
Configuration
}
import
org.apache.hadoop.io.Writable
import
org.apache.hadoop.io.Writable
import
org.apache.hadoop.mapreduce._
import
org.apache.hadoop.mapreduce._
...
@@ -42,6 +42,9 @@ class NewHadoopRDD[K, V](
...
@@ -42,6 +42,9 @@ class NewHadoopRDD[K, V](
override
def
getPartitions
:
Array
[
Partition
]
=
{
override
def
getPartitions
:
Array
[
Partition
]
=
{
val
inputFormat
=
inputFormatClass
.
newInstance
val
inputFormat
=
inputFormatClass
.
newInstance
if
(
inputFormat
.
isInstanceOf
[
Configurable
])
{
inputFormat
.
asInstanceOf
[
Configurable
].
setConf
(
conf
)
}
val
jobContext
=
newJobContext
(
conf
,
jobId
)
val
jobContext
=
newJobContext
(
conf
,
jobId
)
val
rawSplits
=
inputFormat
.
getSplits
(
jobContext
).
toArray
val
rawSplits
=
inputFormat
.
getSplits
(
jobContext
).
toArray
val
result
=
new
Array
[
Partition
](
rawSplits
.
size
)
val
result
=
new
Array
[
Partition
](
rawSplits
.
size
)
...
@@ -57,6 +60,9 @@ class NewHadoopRDD[K, V](
...
@@ -57,6 +60,9 @@ class NewHadoopRDD[K, V](
val
attemptId
=
new
TaskAttemptID
(
jobtrackerId
,
id
,
true
,
split
.
index
,
0
)
val
attemptId
=
new
TaskAttemptID
(
jobtrackerId
,
id
,
true
,
split
.
index
,
0
)
val
hadoopAttemptContext
=
newTaskAttemptContext
(
conf
,
attemptId
)
val
hadoopAttemptContext
=
newTaskAttemptContext
(
conf
,
attemptId
)
val
format
=
inputFormatClass
.
newInstance
val
format
=
inputFormatClass
.
newInstance
if
(
format
.
isInstanceOf
[
Configurable
])
{
format
.
asInstanceOf
[
Configurable
].
setConf
(
conf
)
}
val
reader
=
format
.
createRecordReader
(
val
reader
=
format
.
createRecordReader
(
split
.
serializableHadoopSplit
.
value
,
hadoopAttemptContext
)
split
.
serializableHadoopSplit
.
value
,
hadoopAttemptContext
)
reader
.
initialize
(
split
.
serializableHadoopSplit
.
value
,
hadoopAttemptContext
)
reader
.
initialize
(
split
.
serializableHadoopSplit
.
value
,
hadoopAttemptContext
)
...
...
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