Update code snippets to be Spark Connect compatible
Open
- Dominant language
- JavaScript
- Stars
- 25
- Forks
- 49
- Avg merge
- 1d 46m
- Merged PRs (30d)
- 4
Description
Here is [an example blog post](https://delta.io/blog/2022-10-25-create-delta-lake-tables/) that uses the old syntax:
```python
columns = ["character", "franchise"]
data = [("link", "zelda"), ("king k rool", "donkey kong"), ("samus", "metroid")]
rdd = spark.sparkContext.parallelize(data)
df = rdd.toDF(columns)
```
It would be great to update this post (and all the other code snippets in blog posts) to be Spark Connect compatible.
Contributor guide
Assessment
This issue has not been assessed yet.