Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 482 Bytes

getting-started.md

File metadata and controls

25 lines (16 loc) · 482 Bytes

Getting Started

Overview

  1. Start the Spark Connect Server.
  2. Specify the Spark Connect Server in your app.
  3. Run Spark code like a winner.

1. Start Spark Connect Server

./sbin/start-connect-server.sh --packages org.apache.spark:spark-connect_2.12:3.5.1

2. Specify the Spark Connect Server in your app

var spark = SparkSession
    .Builder
    .Remote("http://localhost:15002")
    .GetOrCreate();

3. Run Spark code like a winner

dotnet run