Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOCSP-31186 Add sections for connections #243

Merged
Merged
Show file tree
Hide file tree
Changes from 8 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
10 changes: 5 additions & 5 deletions .github/workflows/vale-tdbx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ jobs:
- id: files
uses: masesgroup/retrieve-changed-files@v2
with:
format: 'csv'
format: "csv"

- name: checkout-latest-rules
uses: actions/checkout@master
with:
repository: mongodb/mongodb-vale-action
path: './tdbx-vale-rules'
path: "./tdbx-vale-rules"
token: ${{secrets.GITHUB_TOKEN}}

- name: move-files-for-vale-action
run: |
cp tdbx-vale-rules/.vale.ini .vale.ini
mkdir -p .github/styles/
cp -rf tdbx-vale-rules/.github/styles/ .github/
cp tdbx-vale-rules/.vale.ini .vale.ini
mkdir -p .github/styles/
cp -rf tdbx-vale-rules/.github/styles/ .github/

- name: run-vale
uses: errata-ai/vale-action@reviewdog
Expand Down
32 changes: 32 additions & 0 deletions source/getting-started.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,38 @@ Getting Started

.. include:: /scala/api.rst

Integrations
------------

The following sections describe some popular third-party platforms that you can
integrate Spark and the {+connector-long+} with.

Amazon EMR
~~~~~~~~~~

Amazon EMR is a managed cluster platform that you can use to run big data frameworks like Spark. To install Spark on an EMR cluster, see
`Getting Started with Amazon EMR <https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-gs.html>`__ in the AWS documentation.

Databricks
~~~~~~~~~~

Databricks is an analytics platform for building, deploying, and sharing enterprise-level data. To integrate the {+connector-long+} with Databricks,
see `MongoDB <https://docs.databricks.com/aws/en/connect/external-systems/mongodb>`__ in the Databricks documentation.

Docker
~~~~~~

Docker is an open-source platform that helps developers build, share, and run applications in containers.

- To start Spark in a Docker container, see `Apache Spark <https://hub.docker.com/r/apache/spark#!>`__ in the Docker documentation and follow the steps provided.
- See `Create a Local Atlas Deployment with Docker <https://www.mongodb.com/docs/atlas/cli/current/atlas-cli-deploy-docker/>`__ to deploy Atlas on Docker.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SG: 'Link text should begin with the purpose of the cross-reference'

Suggested change
- See `Create a Local Atlas Deployment with Docker <https://www.mongodb.com/docs/atlas/cli/current/atlas-cli-deploy-docker/>`__ to deploy Atlas on Docker.
- To learn how to deploy Atlas on Docker, see `Create a Local Atlas Deployment with Docker <https://www.mongodb.com/docs/atlas/cli/current/atlas-cli-deploy-docker/>`__.


Kubernetes
~~~~~~~~~~

Kubernetes is an open-source platform for automating containerization management. To run Spark on Kubernetes,
see `Running Spark on Kubernetes <https://spark.apache.org/docs/3.5.4/running-on-kubernetes.html>`__ in the Spark documentation.

Tutorials
---------

Expand Down
Loading