Re: Algebird using spark-shell

2014-10-30 Thread thadude
I've tried:

. /bin/spark-shell --jars algebird-core_2.10-0.8.1.jar

scala import com.twitter.algebird._
import com.twitter.algebird._

scala  import HyperLogLog._
import HyperLogLog._

scala import com.twitter.algebird.HyperLogLogMonoid
import com.twitter.algebird.HyperLogLogMonoid


scala val hll = new HyperLogLogMonoid(12)
hll: com.twitter.algebird.HyperLogLogMonoid =
com.twitter.algebird.HyperLogLogMonoid@7bde289a


https://github.com/twitter/algebird/wiki/Algebird-Examples-with-REPL




--
View this message in context: 
http://apache-spark-user-list.1001560.n3.nabble.com/Algebird-using-spark-shell-tp17701p17714.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
For additional commands, e-mail: user-h...@spark.apache.org



Re: Algebird using spark-shell

2014-10-30 Thread Ian O'Connell
Whats the error with the 2.10 version of algebird?

On Thu, Oct 30, 2014 at 12:49 AM, thadude ohpre...@yahoo.com wrote:

 I've tried:

 . /bin/spark-shell --jars algebird-core_2.10-0.8.1.jar

 scala import com.twitter.algebird._
 import com.twitter.algebird._

 scala  import HyperLogLog._
 import HyperLogLog._

 scala import com.twitter.algebird.HyperLogLogMonoid
 import com.twitter.algebird.HyperLogLogMonoid


 scala val hll = new HyperLogLogMonoid(12)
 hll: com.twitter.algebird.HyperLogLogMonoid =
 com.twitter.algebird.HyperLogLogMonoid@7bde289a


 https://github.com/twitter/algebird/wiki/Algebird-Examples-with-REPL




 --
 View this message in context:
 http://apache-spark-user-list.1001560.n3.nabble.com/Algebird-using-spark-shell-tp17701p17714.html
 Sent from the Apache Spark User List mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
 For additional commands, e-mail: user-h...@spark.apache.org




Re: Algebird using spark-shell

2014-10-30 Thread Buntu Dev
Thanks.. I was using Scala 2.11.1 and was able to
use algebird-core_2.10-0.1.11.jar with spark-shell.

On Thu, Oct 30, 2014 at 8:22 AM, Ian O'Connell i...@ianoconnell.com wrote:

 Whats the error with the 2.10 version of algebird?

 On Thu, Oct 30, 2014 at 12:49 AM, thadude ohpre...@yahoo.com wrote:

 I've tried:

 . /bin/spark-shell --jars algebird-core_2.10-0.8.1.jar

 scala import com.twitter.algebird._
 import com.twitter.algebird._

 scala  import HyperLogLog._
 import HyperLogLog._

 scala import com.twitter.algebird.HyperLogLogMonoid
 import com.twitter.algebird.HyperLogLogMonoid


 scala val hll = new HyperLogLogMonoid(12)
 hll: com.twitter.algebird.HyperLogLogMonoid =
 com.twitter.algebird.HyperLogLogMonoid@7bde289a


 https://github.com/twitter/algebird/wiki/Algebird-Examples-with-REPL




 --
 View this message in context:
 http://apache-spark-user-list.1001560.n3.nabble.com/Algebird-using-spark-shell-tp17701p17714.html
 Sent from the Apache Spark User List mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
 For additional commands, e-mail: user-h...@spark.apache.org





Re: Algebird using spark-shell

2014-10-30 Thread Ian O'Connell
Algebird 0.8.0 has 2.11 support if you want to run in a 2.11 env.

On Thu, Oct 30, 2014 at 10:08 AM, Buntu Dev buntu...@gmail.com wrote:

 Thanks.. I was using Scala 2.11.1 and was able to
 use algebird-core_2.10-0.1.11.jar with spark-shell.

 On Thu, Oct 30, 2014 at 8:22 AM, Ian O'Connell i...@ianoconnell.com
 wrote:

 Whats the error with the 2.10 version of algebird?

 On Thu, Oct 30, 2014 at 12:49 AM, thadude ohpre...@yahoo.com wrote:

 I've tried:

 . /bin/spark-shell --jars algebird-core_2.10-0.8.1.jar

 scala import com.twitter.algebird._
 import com.twitter.algebird._

 scala  import HyperLogLog._
 import HyperLogLog._

 scala import com.twitter.algebird.HyperLogLogMonoid
 import com.twitter.algebird.HyperLogLogMonoid


 scala val hll = new HyperLogLogMonoid(12)
 hll: com.twitter.algebird.HyperLogLogMonoid =
 com.twitter.algebird.HyperLogLogMonoid@7bde289a


 https://github.com/twitter/algebird/wiki/Algebird-Examples-with-REPL




 --
 View this message in context:
 http://apache-spark-user-list.1001560.n3.nabble.com/Algebird-using-spark-shell-tp17701p17714.html
 Sent from the Apache Spark User List mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
 For additional commands, e-mail: user-h...@spark.apache.org






Algebird using spark-shell

2014-10-29 Thread bdev
I'm running into this error when I attempt to launch spark-shell passing in
the algebird-core jar:

~~
$ ./bin/spark-shell --jars algebird-core_2.9.2-0.1.11.jar 


scala import com.twitter.algebird._
import com.twitter.algebird._

scala import HyperLogLog._
import HyperLogLog._

scala import com.twitter.algebird.HyperLogLogMonoid
import com.twitter.algebird.HyperLogLogMonoid

scala val hll = new HyperLogLogMonoid(12)
java.lang.NoClassDefFoundError: scala/reflect/ClassManifest
at com.twitter.algebird.HyperLogLogMonoid.init(HyperLogLog.scala:309)



Is that the right jar to pass? Are there any non-streaming examples?

Thanks!



--
View this message in context: 
http://apache-spark-user-list.1001560.n3.nabble.com/Algebird-using-spark-shell-tp17701.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
For additional commands, e-mail: user-h...@spark.apache.org