[
https://issues.apache.org/jira/browse/MAHOUT-1885?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15564516#comment-15564516
]
ASF GitHub Bot commented on MAHOUT-1885:
----------------------------------------
Github user sscdotopen commented on a diff in the pull request:
https://github.com/apache/mahout/pull/261#discussion_r82725845
--- Diff: examples/bin/testVcl.scala ---
@@ -0,0 +1,30 @@
+import org.apache.spark.SparkContext._
+import org.apache.spark.SparkContext
+import org.apache.spark.SparkConf
+
+
+
+object TestVCL {
+
+ def main(args: Array[String]) {
+ run()
+ }
+
+ private def run() {
+ val sparkConf = new SparkConf()
+ sparkConf.setAppName("TestJob")
+ sparkConf.set("spark.cores.max", "8")
+ sparkConf.set("spark.storage.memoryFraction", "0.1")
+ sparkConf.set("spark.shuffle.memoryFracton", "0.2")
+ sparkConf.set("spark.executor.memory", "2g")
+
sparkConf.setJars(List("target/scala-2.10/spark-test-assembly-1.0.jar"))
+ sparkConf.setMaster(s"spark://dev1.dev.pulse.io:7077")
--- End diff --
We should not have these hardcoded paths here probably
> Inital Implementation of VCL Bindings
> -------------------------------------
>
> Key: MAHOUT-1885
> URL: https://issues.apache.org/jira/browse/MAHOUT-1885
> Project: Mahout
> Issue Type: Improvement
> Components: Math
> Affects Versions: 0.12.2
> Reporter: Andrew Palumbo
> Assignee: Andrew Palumbo
> Fix For: 0.13.0
>
>
> Push a working experimental branch of VCL bindings into master. There is
> still a lot of work to be done. All tests are passing, At the moment there
> am opening this JIRA mostly to get a number for PR and to test profiles
> against on travis.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)