Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions site/spark-connect/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ <h2 id="benefits-of-spark-connect">Benefits of Spark Connect</h2>
<li><a href="https://github.com/apache/spark-connect-go">Spark Connect Go</a></li>
<li><a href="https://github.com/sjrusso8/spark-connect-rs">Spark Connect Rust</a> (third-party project)</li>
<li><a href="https://github.com/GoEddie/spark-connect-dotnet/">Spark Connect dotnet</a> (third-party project)</li>
<li><a href="https://github.com/BaldrVivaldelli/ts-spark-connector">Spark Connect Typescript</a> (third-party project)</li>
</ul>

<p>For example, the Apache Spark Connect Client for Golang, <a href="https://github.com/apache/spark-connect-go">spark-connect-go</a>, implements the Spark Connect protocol and does not rely on Java. You can use this Spark Connect Client to develop Spark applications with Go without installing Java or Spark.</p>
Expand Down
5 changes: 5 additions & 0 deletions site/third-party-projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,11 @@ <h3>Kotlin</h3>
<li><a href="https://github.com/JetBrains/kotlin-spark-api">Kotlin for Apache Spark</a></li>
</ul>

<h3>Typescript</h3>
<ul>
<li><a href="https://github.com/BaldrVivaldelli/ts-spark-connector">TS spark connector</a> - TypeScript client for Spark .</li>
</ul>

<h2 id="adding-new-projects">Adding new projects</h2>

<p>To add a project, open a pull request against the <a href="https://github.com/apache/spark-website">spark-website</a> repository. Add an entry to <a href="https://github.com/apache/spark-website/blob/asf-site/third-party-projects.md">this markdown file</a>, then run <code class="language-plaintext highlighter-rouge">jekyll build</code> to generate the HTML too. Include both in your pull request. See the README in this repo for more information.</p>
Expand Down
1 change: 1 addition & 0 deletions spark-connect/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ Spark Connect decouples the client and the Spark Driver so that you can write a
* [Spark Connect Go](https://github.com/apache/spark-connect-go)
* [Spark Connect Rust](https://github.com/sjrusso8/spark-connect-rs) (third-party project)
* [Spark Connect dotnet](https://github.com/GoEddie/spark-connect-dotnet/) (third-party project)
* [Spark Connect Typescript](https://github.com/BaldrVivaldelli/ts-spark-connector) (third-party project)

For example, the Apache Spark Connect Client for Golang, [spark-connect-go](https://github.com/apache/spark-connect-go), implements the Spark Connect protocol and does not rely on Java. You can use this Spark Connect Client to develop Spark applications with Go without installing Java or Spark.

Expand Down
3 changes: 3 additions & 0 deletions third-party-projects.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ transforming, and analyzing genomic data using Apache Spark

- <a href="https://github.com/JetBrains/kotlin-spark-api">Kotlin for Apache Spark</a>

<h3>Typescript</h3>
- <a href="https://github.com/BaldrVivaldelli/ts-spark-connector">TS spark connector</a> - TypeScript client for Spark .

## Adding new projects

To add a project, open a pull request against the [spark-website](https://github.com/apache/spark-website) repository. Add an entry to [this markdown file](https://github.com/apache/spark-website/blob/asf-site/third-party-projects.md), then run `jekyll build` to generate the HTML too. Include both in your pull request. See the README in this repo for more information.
Expand Down