Skip to content

Instantly share code, notes, and snippets.

@samueleresca
Created September 7, 2019 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samueleresca/fbeaa67912332e6b4a2c33eff4878e24 to your computer and use it in GitHub Desktop.
Save samueleresca/fbeaa67912332e6b4a2c33eff4878e24 to your computer and use it in GitHub Desktop.
using Microsoft.Spark.Sql;
namespace blog.apachesparkgettingstarted
{
class Program
{
static void Main(string[] args)
{
var spark = SparkSession
.Builder()
.AppName("My application")
.GetOrCreate();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment