Add Apache Spark 3.4.3 news

Vote Result: https://lists.apache.org/thread/3y4p28s1qf4tgkgs45j4ho2z3xrqkqfm
Documentation: https://spark.apache.org/docs/3.4.3/
Binary: https://downloads.apache.org/spark/spark-3.4.3/
PySpark: https://pypi.org/project/pyspark/3.4.3/
Maven Central: https://repo1.maven.org/maven2/org/apache/spark/spark-core_2.13/3.4.3/

**SCREENSHOTS**

![Screenshot 2024-04-18 at 08 51 38](https://github.com/apache/spark-website/assets/9700541/6043b6bd-a4f4-4fd2-956b-a7f0201787c1)

![Screenshot 2024-04-18 at 08 52 31](https://github.com/apache/spark-website/assets/9700541/57588b7c-3798-4e9d-adf0-2c0438649c62)

![Screenshot 2024-04-18 at 08 53 18](https://github.com/apache/spark-website/assets/9700541/eb1262a5-5e29-4478-84b3-bf5ff5ebd8c1)

![Screenshot 2024-04-18 at 08 54 09](https://github.com/apache/spark-website/assets/9700541/3ba8d289-1471-4083-a5f4-7af74942646a)

Author: Dongjoon Hyun <dongjoon@apache.org>

Closes #516 from dongjoon-hyun/v3.4.3_news.
247 files changed
tree: f65e2b03ae854c5d2a337e8e5404c3120c490ccb
  1. .bundle/
  2. .github/
  3. _layouts/
  4. css/
  5. graphx/
  6. images/
  7. js/
  8. mllib/
  9. news/
  10. pandas-on-spark/
  11. releases/
  12. screencasts/
  13. site/
  14. spark-connect/
  15. sql/
  16. streaming/
  17. talks/
  18. .asf.yaml
  19. .gitignore
  20. _config.yml
  21. apple-touch-icon.png
  22. committers.md
  23. community.md
  24. contributing.md
  25. developer-tools.md
  26. doap.rdf
  27. documentation.md
  28. downloads.md
  29. error-message-guidelines.md
  30. examples.md
  31. faq.md
  32. favicon-16x16.png
  33. favicon-32x32.png
  34. favicon.ico
  35. Gemfile
  36. Gemfile.lock
  37. history.md
  38. improvement-proposals.md
  39. index.md
  40. LICENSE
  41. mailing-lists.md
  42. merge_pr.py
  43. powered-by.md
  44. README.md
  45. release-process.md
  46. research.md
  47. robots.txt
  48. security.md
  49. sitemap.xml
  50. third-party-projects.md
  51. trademarks.md
  52. versioning-policy.md
README.md

Generating the website HTML

In this directory you will find text files formatted using Markdown, with an .md suffix.

Building the site requires Jekyll Rouge. The easiest way to install the right version of these tools is using Bundler and running bundle install in this directory.

See also https://github.com/apache/spark/blob/master/docs/README.md

A site build will update the directories and files in the site directory with the generated files. Using Jekyll via bundle exec jekyll locks it to the right version. So after this you can generate the html website by running bundle exec jekyll build in this directory. Use the --watch flag to have jekyll recompile your files as you save changes.

In addition to generating the site as HTML from the Markdown files, jekyll can serve the site via a web server. To build the site and run a web server use the command bundle exec jekyll serve which runs the web server on port 4000, then visit the site at http://localhost:4000.

Please make sure you always run bundle exec jekyll build after testing your changes with bundle exec jekyll serve, otherwise you end up with broken links in a few places.

Updating Jekyll version

To update Jekyll or any other gem please follow these steps:

  1. Update the version in the Gemfile
  2. Run bundle update which updates the Gemfile.lock
  3. Commit both files

Docs sub-dir

The docs are not generated as part of the website. They are built separately for each release of Spark from the Spark source repository and then copied to the website under the docs directory. See the instructions for building those in the readme in the Spark project's /docs directory.

Rouge and Pygments

We also use Rouge for syntax highlighting in documentation Markdown pages. Its HTML output is compatible with CSS files designed for Pygments.

To mark a block of code in your Markdown to be syntax highlighted by jekyll during the compile phase, use the following syntax:

{% highlight scala %}
// Your Scala code goes here, you can replace Scala with many other
// supported languages too.
{% endhighlight %}

You probably don't need to install that unless you want to regenerate the Pygments CSS file. It requires Python, and can be installed by running sudo easy_install Pygments.

Merge PR

To merge pull request, use the merge_pr.py script which also squashes the commits.