aboutsummaryrefslogtreecommitdiff
path: root/graph/src/test
Commit message (Collapse)AuthorAgeFilesLines
* Take SparkConf in constructor of Serializer subclassesAnkur Dave2014-01-081-12/+18
|
* ClassManifest -> ClassTagAnkur Dave2014-01-081-1/+2
|
* Update SvdppSuite.scalaJianping J Wang2013-12-311-5/+5
|
* update svdpp testJianping J Wang2013-12-311-1/+1
|
* updateJianping J Wang2013-12-301-2/+3
|
* Test VertexPartition and fix bugsAnkur Dave2013-12-201-0/+113
|
* Test all methods on EdgePartitionAnkur Dave2013-12-201-5/+36
|
* Test EdgePartition2DAnkur Dave2013-12-201-2/+26
|
* Write mapTriplets testAnkur Dave2013-12-201-1/+13
|
* Split AnalyticsSuite into algorithms suitesAnkur Dave2013-12-198-320/+372
|
* Split VertexRDD tests; fix #114Ankur Dave2013-12-193-23/+73
|
* Split GraphSuite; simplify LocalSparkContextAnkur Dave2013-12-198-264/+344
|
* added scc testsAkihiro Matsukawa2013-12-181-0/+43
|
* Reimplement Graph.mask using innerJoinAnkur Dave2013-12-181-3/+20
|
* Merge remote-tracking branch 'upstream/master' into add_project_to_graphAnkur Dave2013-12-185-95/+322
|\ | | | | | | | | | | Conflicts: graph/src/main/scala/org/apache/spark/graph/Graph.scala graph/src/main/scala/org/apache/spark/graph/impl/GraphImpl.scala
| * Merge pull request #104 from jianpingjwang/masterJoey2013-12-181-0/+15
| |\ | | | | | | SVD++ demo
| | * Update AnalyticsSuite.scalaWang Jianping J2013-12-171-35/+56
| | |
| | * Test SVD++Wang Jianping J2013-12-171-55/+49
| | |
| * | Add clustered index on edges by source vertexAnkur Dave2013-12-161-0/+25
| | | | | | | | | | | | | | | | | | This allows efficient edge scan in mapReduceTriplets when many source vertices are inactive. The scan method switches from edge scan to clustered index scan when less than 80% of source vertices are active.
| * | Merge remote-tracking branch 'upstream/master' into mrTriplets-active-setAnkur Dave2013-12-161-1/+1
| |\ \ | | | | | | | | | | | | | | | | Conflicts: graph/src/main/scala/org/apache/spark/graph/impl/GraphImpl.scala
| | * | Fix argument bug and closure captureAnkur Dave2013-12-141-1/+1
| | | |
| | * | Don't partition edges by default; refactorAnkur Dave2013-12-141-1/+1
| | |/ | | | | | | | | | Instead, expose Graph.partitionBy(PartitionStrategy).
| * | Remove debug printing from PregelSuiteAnkur Dave2013-12-141-3/+3
| | |
| * | Merge remote-tracking branch 'upstream/master' into mrTriplets-active-setAnkur Dave2013-12-141-34/+55
| |\| | | | | | | | | | Updates standalone PageRank to work with the new API.
| | * Test standalone PageRankAnkur Dave2013-12-121-34/+55
| | |
| * | Add PregelSuiteAnkur Dave2013-12-141-0/+43
| | |
| * | Add another mrTriplets testAnkur Dave2013-12-141-1/+16
| | |
| * | Replace skipStale with activeSetOpt in mrTriplets (fails Pregel)Ankur Dave2013-12-141-42/+8
| | |
| * | Remove printlns from testAnkur Dave2013-12-141-2/+0
| | |
| * | Test more graph ops and skipStaleAnkur Dave2013-12-141-3/+49
| | |
| * | Incremental view maintenance for all graph opsAnkur Dave2013-12-141-2/+2
| |/ | | | | | | | | | | | | | | | | | | | | All GraphImpl operations now support incremental maintenance of the replicated vertex view by reusing vTableReplicated whenever possible. This has two consequences: - This is not confined to the deltaJoinVertices operator anymore, so we rename it to the more intuitive "updateVertices" instead. - This enables mrTriplets to support skipStale.
| * Fixed a bug in VTableReplicated that we only process the first block.Reynold Xin2013-12-061-2/+1
| |
| * Minor update.Reynold Xin2013-12-051-2/+2
| |
| * Fixed a bug in VTableReplicated that we are always broadcasting all the ↵Reynold Xin2013-12-051-4/+10
| | | | | | | | vertices.
| * Merge branch 'pregel-replicate-changed' of github.com:ankurdave/graphx into ↵Reynold Xin2013-12-051-2/+7
| |\ | | | | | | | | | pregel-replicate-changed
| | * Test prevVTableReplicated code pathAnkur Dave2013-12-051-2/+7
| | |
| * | Merge branch 'pregel-replicate-changed' of github.com:ankurdave/graphx into ↵Reynold Xin2013-12-051-5/+25
| |\| | | | | | | | | | pregel-replicate-changed
| | * Test Graph.deltaJoinVertices and VertexRDD.diffAnkur Dave2013-12-051-5/+25
| | |
| * | Fixed a bug that variable encoding doesn't work for ints that use all 64 bits.Reynold Xin2013-12-051-3/+38
| |/
| * Declare Vids explicitly to avoid ClassCastExceptionAnkur Dave2013-12-041-3/+3
| |
| * Fix compile errors in GraphSuite and SerializerSuiteAnkur Dave2013-12-042-31/+17
| |
| * Created an algorithms package and put all algorithms there.Reynold Xin2013-12-011-13/+14
| |
| * Created EdgeRDD.Reynold Xin2013-11-301-1/+1
| |
| * Merged Ankur's pull request #80 and fixed subgraph.Reynold Xin2013-11-301-4/+9
| |
| * Merge branch 'subgraph-test' of github.com:ankurdave/graphx into clean1Reynold Xin2013-11-301-0/+11
| |\ | | | | | | | | | | | | Conflicts: graph/src/main/scala/org/apache/spark/graph/impl/VertexPartition.scala
| | * Test edge filtering in subgraph (test fails)Ankur Dave2013-11-261-0/+1
| | |
| | * Test GraphImpl.subgraph and fix bugAnkur Dave2013-11-261-0/+10
| | |
| * | Made all VertexPartition internal data structures private.Reynold Xin2013-11-301-16/+0
| | |
| * | Minor update to tests.Reynold Xin2013-11-301-6/+6
| | |
| * | Fix VertexSetRDD test by enabling index reuseAnkur Dave2013-11-301-1/+1
| | |