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
5c886194
Commit
5c886194
authored
11 years ago
by
Christopher Nguyen
Browse files
Options
Downloads
Patches
Plain Diff
Move zero-length partition testing from JavaAPISuite.java to PartitioningSuite.scala
parent
479442a9
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/test/scala/spark/JavaAPISuite.java
+0
-22
0 additions, 22 deletions
core/src/test/scala/spark/JavaAPISuite.java
core/src/test/scala/spark/PartitioningSuite.scala
+19
-2
19 additions, 2 deletions
core/src/test/scala/spark/PartitioningSuite.scala
with
19 additions
and
24 deletions
core/src/test/scala/spark/JavaAPISuite.java
+
0
−
22
View file @
5c886194
...
...
@@ -314,28 +314,6 @@ public class JavaAPISuite implements Serializable {
List
<
Double
>
take
=
rdd
.
take
(
5
);
}
@Test
public
void
zeroLengthPartitions
()
{
// Create RDD with some consecutive empty partitions (including the "first" one)
JavaDoubleRDD
rdd
=
sc
.
parallelizeDoubles
(
Arrays
.
asList
(-
1.0
,
-
1.0
,
-
1.0
,
-
1.0
,
2.0
,
4.0
,
-
1.0
,
-
1.0
),
8
)
.
filter
(
new
Function
<
Double
,
Boolean
>()
{
@Override
public
Boolean
call
(
Double
x
)
{
return
x
>
0.0
;
}
});
// Run the partitions, including the consecutive empty ones, through StatCounter
StatCounter
stats
=
rdd
.
stats
();
Assert
.
assertEquals
(
6.0
,
stats
.
sum
(),
0.01
);
Assert
.
assertEquals
(
6.0
/
2
,
rdd
.
mean
(),
0.01
);
Assert
.
assertEquals
(
1.0
,
rdd
.
variance
(),
0.01
);
Assert
.
assertEquals
(
1.0
,
rdd
.
stdev
(),
0.01
);
// Add other tests here for classes that should be able to handle empty partitions correctly
}
@Test
public
void
map
()
{
JavaRDD
<
Integer
>
rdd
=
sc
.
parallelize
(
Arrays
.
asList
(
1
,
2
,
3
,
4
,
5
));
...
...
This diff is collapsed.
Click to expand it.
core/src/test/scala/spark/PartitioningSuite.scala
+
19
−
2
View file @
5c886194
package
spark
import
org.scalatest.FunSuite
import
scala.collection.mutable.ArrayBuffer
import
SparkContext._
import
spark.util.StatCounter
import
scala.math._
class
PartitioningSuite
extends
FunSuite
with
LocalSparkContext
{
...
...
@@ -120,4 +120,21 @@ class PartitioningSuite extends FunSuite with LocalSparkContext {
assert
(
intercept
[
SparkException
]{
arrPairs
.
reduceByKeyLocally
(
_
+
_
)
}.
getMessage
.
contains
(
"array"
))
assert
(
intercept
[
SparkException
]{
arrPairs
.
reduceByKey
(
_
+
_
)
}.
getMessage
.
contains
(
"array"
))
}
test
(
"Zero-length partitions should be correctly handled"
)
{
// Create RDD with some consecutive empty partitions (including the "first" one)
sc
=
new
SparkContext
(
"local"
,
"test"
)
val
rdd
:
RDD
[
Double
]
=
sc
.
parallelize
(
Array
(-
1.0
,
-
1.0
,
-
1.0
,
-
1.0
,
2.0
,
4.0
,
-
1.0
,
-
1.0
),
8
)
.
filter
(
_
>=
0.0
)
// Run the partitions, including the consecutive empty ones, through StatCounter
val
stats
:
StatCounter
=
rdd
.
stats
();
assert
(
abs
(
6.0
-
stats
.
sum
)
<
0.01
);
assert
(
abs
(
6.0
/
2
-
rdd
.
mean
)
<
0.01
);
assert
(
abs
(
1.0
-
rdd
.
variance
)
<
0.01
);
assert
(
abs
(
1.0
-
rdd
.
stdev
)
<
0.01
);
// Add other tests here for classes that should be able to handle empty partitions correctly
}
}
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