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
a766780f
Commit
a766780f
authored
13 years ago
by
Matei Zaharia
Browse files
Options
Downloads
Patches
Plain Diff
Added some tests for multithreaded access to Spark.
parent
0e93891d
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
core/src/test/scala/spark/ThreadingSuite.scala
+57
-0
57 additions, 0 deletions
core/src/test/scala/spark/ThreadingSuite.scala
with
57 additions
and
0 deletions
core/src/test/scala/spark/ThreadingSuite.scala
0 → 100644
+
57
−
0
View file @
a766780f
package
spark
import
java.util.concurrent.Semaphore
import
org.scalatest.FunSuite
import
SparkContext._
class
ThreadingSuite
extends
FunSuite
{
test
(
"accessing SparkContext form a different thread"
)
{
val
sc
=
new
SparkContext
(
"local"
,
"test"
)
val
nums
=
sc
.
parallelize
(
1
to
10
,
2
)
val
sem
=
new
Semaphore
(
0
)
@volatile
var
answer1
:
Int
=
0
@volatile
var
answer2
:
Int
=
0
new
Thread
{
override
def
run
()
{
answer1
=
nums
.
reduce
(
_
+
_
)
answer2
=
nums
.
first
// This will run "locally" in the current thread
sem
.
release
()
}
}.
start
()
sem
.
acquire
()
assert
(
answer1
===
55
)
assert
(
answer2
===
1
)
sc
.
stop
()
}
test
(
"accessing SparkContext form multiple threads"
)
{
val
sc
=
new
SparkContext
(
"local"
,
"test"
)
val
nums
=
sc
.
parallelize
(
1
to
10
,
2
)
val
sem
=
new
Semaphore
(
0
)
@volatile
var
ok
=
true
for
(
i
<-
0
until
10
)
{
new
Thread
{
override
def
run
()
{
val
answer1
=
nums
.
reduce
(
_
+
_
)
if
(
answer1
!=
55
)
{
printf
(
"In thread %d: answer1 was %d\n"
,
i
,
answer1
);
ok
=
false
;
}
val
answer2
=
nums
.
first
// This will run "locally" in the current thread
if
(
answer2
!=
1
)
{
printf
(
"In thread %d: answer2 was %d\n"
,
i
,
answer2
);
ok
=
false
;
}
sem
.
release
()
}
}.
start
()
}
sem
.
acquire
(
10
)
if
(!
ok
)
{
fail
(
"One or more threads got the wrong answer from an RDD operation"
)
}
sc
.
stop
()
}
}
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