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
96929f28
Commit
96929f28
authored
11 years ago
by
Harvey Feng
Browse files
Options
Downloads
Patches
Plain Diff
Make HadoopRDD object Spark private.
parent
b5e93c12
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/src/main/scala/org/apache/spark/rdd/HadoopRDD.scala
+3
-3
3 additions, 3 deletions
core/src/main/scala/org/apache/spark/rdd/HadoopRDD.scala
with
3 additions
and
3 deletions
core/src/main/scala/org/apache/spark/rdd/HadoopRDD.scala
+
3
−
3
View file @
96929f28
...
@@ -106,7 +106,7 @@ class HadoopRDD[K, V](
...
@@ -106,7 +106,7 @@ class HadoopRDD[K, V](
protected
val
jobConfCacheKey
=
"rdd_%d_job_conf"
.
format
(
id
)
protected
val
jobConfCacheKey
=
"rdd_%d_job_conf"
.
format
(
id
)
pr
ivate
val
inputFormatCacheKey
=
"rdd_%d_input_format"
.
format
(
id
)
pr
otected
val
inputFormatCacheKey
=
"rdd_%d_input_format"
.
format
(
id
)
// Returns a JobConf that will be used on slaves to obtain input splits for Hadoop reads.
// Returns a JobConf that will be used on slaves to obtain input splits for Hadoop reads.
protected
def
getJobConf
()
:
JobConf
=
{
protected
def
getJobConf
()
:
JobConf
=
{
...
@@ -122,7 +122,7 @@ class HadoopRDD[K, V](
...
@@ -122,7 +122,7 @@ class HadoopRDD[K, V](
}
}
}
}
def
getInputFormat
(
conf
:
JobConf
)
:
InputFormat
[
K
,
V
]
=
{
protected
def
getInputFormat
(
conf
:
JobConf
)
:
InputFormat
[
K
,
V
]
=
{
if
(
HadoopRDD
.
containsCachedMetadata
(
inputFormatCacheKey
))
{
if
(
HadoopRDD
.
containsCachedMetadata
(
inputFormatCacheKey
))
{
return
HadoopRDD
.
getCachedMetadata
(
inputFormatCacheKey
).
asInstanceOf
[
InputFormat
[
K
,
V
]]
return
HadoopRDD
.
getCachedMetadata
(
inputFormatCacheKey
).
asInstanceOf
[
InputFormat
[
K
,
V
]]
}
}
...
@@ -196,7 +196,7 @@ class HadoopRDD[K, V](
...
@@ -196,7 +196,7 @@ class HadoopRDD[K, V](
def
getConf
:
Configuration
=
getJobConf
()
def
getConf
:
Configuration
=
getJobConf
()
}
}
object
HadoopRDD
{
private
[
spark
]
object
HadoopRDD
{
def
getCachedMetadata
(
key
:
String
)
=
SparkEnv
.
get
.
hadoop
.
hadoopJobMetadata
.
get
(
key
)
def
getCachedMetadata
(
key
:
String
)
=
SparkEnv
.
get
.
hadoop
.
hadoopJobMetadata
.
get
(
key
)
def
containsCachedMetadata
(
key
:
String
)
=
SparkEnv
.
get
.
hadoop
.
hadoopJobMetadata
.
containsKey
(
key
)
def
containsCachedMetadata
(
key
:
String
)
=
SparkEnv
.
get
.
hadoop
.
hadoopJobMetadata
.
containsKey
(
key
)
...
...
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