Re: Using inteliJ for spark development

2015-12-23 Thread Akhil Das
Both are similar, give both a go and choose the one you like. On Dec 23, 2015 7:55 PM, "Eran Witkon" wrote: > Thanks, so based on that article, should I use sbt or maven? Or either? > Eran > On Wed, 23 Dec 2015 at 13:05 Akhil Das wrote: > >> You will have to point to your spark-assembly.jar sinc

Re: Using inteliJ for spark development

2015-12-23 Thread Eran Witkon
Thanks, so based on that article, should I use sbt or maven? Or either? Eran On Wed, 23 Dec 2015 at 13:05 Akhil Das wrote: > You will have to point to your spark-assembly.jar since spark has a lot of > dependencies. You can read the answers discussed over here to have a better > understanding > h

Re: Using inteliJ for spark development

2015-12-23 Thread Akhil Das
You will have to point to your spark-assembly.jar since spark has a lot of dependencies. You can read the answers discussed over here to have a better understanding http://stackoverflow.com/questions/3589562/why-maven-what-are-the-benefits Thanks Best Regards On Wed, Dec 23, 2015 at 4:27 PM, Eran

Re: Using inteliJ for spark development

2015-12-23 Thread Eran Witkon
Thanks, all of these examples shows how to link to spark source and build it as part of my project. why should I do that? why not point directly to my spark.jar? Am I missing something? Eran On Wed, Dec 23, 2015 at 9:59 AM Akhil Das wrote: > 1. Install sbt plugin on IntelliJ > 2. Create a new pr

Re: Using inteliJ for spark development

2015-12-23 Thread Akhil Das
1. Install sbt plugin on IntelliJ 2. Create a new project/Import an sbt project like Dean suggested 3. Happy Debugging. You can also refer to this article for more information https://cwiki.apache.org/confluence/display/SPARK/Useful+Developer+Tools#UsefulDeveloperTools-IntelliJ Thanks Best Regard

Re: Using inteliJ for spark development

2015-12-22 Thread Dean Wampler
The easiest way is to import an SBT project into IntelliJ that has the Spark jars as dependencies. Then you can work in local mode (--master local[*]). You could start with the build files in my "spark workshop", https://github.com/deanwampler/spark-workshop and go from there. I haven't done much

Using inteliJ for spark development

2015-12-21 Thread Eran Witkon
Any pointers how to use InteliJ for spark development? Any way to use scala worksheet run like spark- shell?