[DOC] Add Quick Start Guide for user to use this repo as a library

### What changes were proposed in this pull request?

Add Quick Start Guide for user to use this repo as a library

### Why are the changes needed?

Document to help user to write Spark Connect Go application in their own project

### Does this PR introduce _any_ user-facing change?

No

### How was this patch tested?

Document change review

Closes #15 from hiboyang/bo-dev-06.

Authored-by: hiboyang <14280154+hiboyang@users.noreply.github.com>
Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
2 files changed
tree: 1e9b855191e6b9fec0f096238a16537187182864
  1. .github/
  2. client/
  3. cmd/
  4. internal/
  5. .asf.yaml
  6. .gitignore
  7. .gitmodules
  8. buf.gen.yaml
  9. buf.work.yaml
  10. CONTRIBUTING.md
  11. go.mod
  12. go.sum
  13. LICENSE
  14. Makefile
  15. merge_connect_go_pr.py
  16. quick-start.md
  17. README.md
README.md

Apache Spark Connect Client for Golang

This project houses the experimental client for Spark Connect for Apache Spark written in Golang.

Current State of the Project

Currently, the Spark Connect client for Golang is highly experimental and should not be used in any production setting. In addition, the PMC of the Apache Spark project reserves the right to withdraw and abandon the development of this project if it is not sustainable.

Getting started

git clone https://github.com/apache/spark-connect-go.git
git submodule update --init --recursive

make gen && make test

Ensure you have installed buf CLI; more info

How to write Spark Connect Go Application in your own project

See Quick Start Guide

Spark Connect Go Application Example

A very simple example in Go looks like following:

func main() {
	remote := "localhost:15002"
	spark, _ := sql.SparkSession.Builder.Remote(remote).Build()
	defer spark.Stop()

	df, _ := spark.Sql("select 'apple' as word, 123 as count union all select 'orange' as word, 456 as count")
	df.Show(100, false)
}

High Level Design

Following diagram shows main code in current prototype:

    +-------------------+                                                                              
    |                   |                                                                              
    |   dataFrameImpl   |                                                                              
    |                   |                                                                              
    +-------------------+                                                                              
              |                                                                                        
              |                                                                                        
              +                                                                                        
    +-------------------+                                                                              
    |                   |                                                                              
    | sparkSessionImpl  |                                                                              
    |                   |                                                                              
    +-------------------+                                                                              
              |                                                                                        
              |                                                                                        
              +                                                                                        
+---------------------------+               +----------------+                                         
|                           |               |                |                                         
| SparkConnectServiceClient |--------------+|  Spark Driver  |                                         
|                           |               |                |                                         
+---------------------------+               +----------------+

SparkConnectServiceClient is GRPC client which talks to Spark Driver. sparkSessionImpl generates dataFrameImpl instances. dataFrameImpl uses the GRPC client in sparkSessionImpl to communicate with Spark Driver.

We will mimic the logic in Spark Connect Scala implementation, and adopt Go common practices, e.g. returning error object for error handling.

How to Run Spark Connect Go Application

  1. Install Golang: https://go.dev/doc/install.

  2. Download Spark distribution (3.4.0+), unzip the folder.

  3. Start Spark Connect server by running command:

sbin/start-connect-server.sh --packages org.apache.spark:spark-connect_2.12:3.4.0
  1. In this repo, run Go application:
go run cmd/spark-connect-example-spark-session/main.go

Contributing

Please review the Contribution to Spark guide for information on how to get started contributing to the project.