Re: Is there any Spark source in Java

2018-11-03 Thread Holden Karau
Parts of it are indeed written in Java. You probably want to reach out to the developers list to talk about changing Spark. On Sat, Nov 3, 2018, 11:42 AM Soheil Pourbafrani Hi, I want to customize some part of Spark. I was wondering if there any > Spark source is written in Java language, or all

Re: Is there any Spark source in Java

2018-11-03 Thread Soheil Pourbafrani
Thanks, I don't need sources for learning Spark. I need some sources in Java language that I can implement new functions. For example, Spark has HashTF and I want to customize that in such a way: public static class newHashingTF implements Something On Sat, Nov 3, 2018 at 10:39 PM Chris Olivier

Re: Is there any Spark source in Java

2018-11-03 Thread Chris Olivier
that’s a great link. thanks! On Sat, Nov 3, 2018 at 11:55 AM Jean Georges Perrin wrote: > I would take this one very closely to my heart :) > > Look at: > https://github.com/jgperrin/net.jgp.labs.spark > > And if the examples are too weird, have a look at: > http://jgp.net/book published at

Re: Is there any Spark source in Java

2018-11-03 Thread Jean Georges Perrin
I would take this one very closely to my heart :) Look at: https://github.com/jgperrin/net.jgp.labs.spark And if the examples are too weird, have a look at: http://jgp.net/book published at Manning Feedback appreciated! jg > On Nov 3, 2018, at 12:30, Jeyhun Karimov wrote: > > Hi Soheil,

Re: Is there any Spark source in Java

2018-11-03 Thread Jeyhun Karimov
Hi Soheil, >From the spark github repo, you can find some classes implemented in Java: https://github.com/apache/spark/search?l=java Cheers, Jeyhun On Sat, Nov 3, 2018 at 6:42 PM Soheil Pourbafrani wrote: > Hi, I want to customize some part of Spark. I was wondering if there any > Spark

Is there any Spark source in Java

2018-11-03 Thread Soheil Pourbafrani
Hi, I want to customize some part of Spark. I was wondering if there any Spark source is written in Java language, or all the sources are in Scala language?