-
Notifications
You must be signed in to change notification settings - Fork 659
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update the plugin setup guide (#3915)
* update the plugin setup guide Signed-off-by: Samhita Alla <[email protected]> * nit Signed-off-by: Samhita Alla <[email protected]> * snowflake docs link Signed-off-by: Samhita Alla <[email protected]> * content clean-up Signed-off-by: Samhita Alla <[email protected]> * update secrets doc Signed-off-by: Samhita Alla <[email protected]> --------- Signed-off-by: Samhita Alla <[email protected]>
- Loading branch information
1 parent
1f3f6f2
commit 9cbd3a2
Showing
12 changed files
with
1,416 additions
and
1,037 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,3 @@ sphinxcontrib-video | |
sphinxcontrib-youtube | ||
sphinx-tabs | ||
sphinx-tags | ||
grpcio<1.49.0 | ||
grpcio-status<1.49.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,87 @@ | ||
.. _deployment-plugin-setup-aws-athena: | ||
|
||
Athena Plugin Setup | ||
------------------- | ||
Athena Plugin | ||
============= | ||
|
||
This guide gives an overview of how to set up Athena in your Flyte deployment. Athena plugin needs Flyte deployment in AWS cloud; sandbox/GCP/Azure wouldn't work. | ||
This guide provides an overview of setting up Athena in your Flyte deployment. | ||
|
||
Setup the AWS Flyte cluster | ||
=========================== | ||
.. note:: | ||
Please note that the Athena plugin requires a Flyte deployment in the AWS cloud; it won't work with demo/GCP/Azure. | ||
|
||
Set up the AWS Flyte cluster | ||
---------------------------- | ||
|
||
1. Ensure you have a functional Flyte cluster up and running in `AWS <https://docs.flyte.org/en/latest/deployment/aws/index.html#deployment-aws>`__ | ||
2. Verify that you possess the correct ``kubeconfig`` and have selected the appropriate Kubernetes context | ||
3. Double-check that your ``~/.flyte/config.yaml`` file contains the correct Flytectl configuration | ||
|
||
Specify plugin configuration | ||
---------------------------- | ||
|
||
.. tabs:: | ||
|
||
.. tab:: AWS cluster setup | ||
.. group-tab:: Flyte binary | ||
|
||
* Make sure you have up and running flyte cluster in `AWS <https://docs.flyte.org/en/latest/deployment/aws/index.html#deployment-aws>`__ | ||
* Make sure you have correct kubeconfig and selected the correct kubernetes context | ||
* make sure you have the correct FlyteCTL config at ~/.flyte/config.yaml | ||
Edit the relevant YAML file to specify the plugin. | ||
|
||
.. code-block:: yaml | ||
:emphasize-lines: 7,11 | ||
Specify Plugin Configuration | ||
====================================== | ||
tasks: | ||
task-plugins: | ||
enabled-plugins: | ||
- container | ||
- sidecar | ||
- k8s-array | ||
- athena | ||
default-for-task-types: | ||
- container: container | ||
- container_array: k8s-array | ||
- athena: athena | ||
Create a file named ``values-override.yaml`` and add the following config to it. | ||
Please make sure that the propeller has the correct service account for Athena. | ||
.. group-tab:: Flyte core | ||
|
||
.. code-block:: yaml | ||
Create a file named ``values-override.yaml`` and include the following configuration: | ||
|
||
configmap: | ||
enabled_plugins: | ||
# -- Tasks specific configuration [structure](https://pkg.go.dev/github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/config#GetConfig) | ||
tasks: | ||
# -- Plugins configuration, [structure](https://pkg.go.dev/github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/config#TaskPluginConfig) | ||
task-plugins: | ||
# -- [Enabled Plugins](https://pkg.go.dev/github.com/flyteorg/flyteplugins/go/tasks/config#Config). Enable sagemaker*, athena if you install the backend | ||
# plugins | ||
enabled-plugins: | ||
- container | ||
- sidecar | ||
- k8s-array | ||
- athena | ||
default-for-task-types: | ||
container: container | ||
sidecar: sidecar | ||
container_array: k8s-array | ||
athena: athena | ||
.. code-block:: yaml | ||
Upgrade the Flyte Helm release | ||
============================== | ||
configmap: | ||
enabled_plugins: | ||
tasks: | ||
task-plugins: | ||
enabled-plugins: | ||
- container | ||
- sidecar | ||
- k8s-array | ||
- athena | ||
default-for-task-types: | ||
container: container | ||
sidecar: sidecar | ||
container_array: k8s-array | ||
athena: athena | ||
.. prompt:: bash $ | ||
Ensure that the propeller has the correct service account for Athena. | ||
|
||
helm upgrade -n flyte -f values-override.yaml flyteorg/flyte-core | ||
Upgrade the Flyte Helm release | ||
------------------------------ | ||
|
||
.. tabs:: | ||
|
||
Register the Athena plugin example | ||
================================== | ||
.. group-tab:: Flyte binary | ||
|
||
.. code-block:: bash | ||
.. code-block:: bash | ||
flytectl register files https://github.com/flyteorg/flytesnacks/releases/download/v0.2.226/snacks-cookbook-integrations-aws-athena.tar.gz --archive -p flytesnacks -d development | ||
helm upgrade <RELEASE_NAME> flyteorg/flyte-binary -n <YOUR_NAMESPACE> --values <YOUR_YAML_FILE> | ||
Replace ``<RELEASE_NAME>`` with the name of your release (e.g., ``flyte-backend``), | ||
``<YOUR_NAMESPACE>`` with the name of your namespace (e.g., ``flyte``), | ||
and ``<YOUR_YAML_FILE>`` with the name of your YAML file. | ||
|
||
Launch an execution | ||
=================== | ||
.. group-tab:: Flyte core | ||
|
||
.. tabs:: | ||
.. code-block:: bash | ||
helm upgrade <RELEASE_NAME> flyte/flyte-core -n <YOUR_NAMESPACE> --values values-override.yaml | ||
.. tab:: Flyte Console | ||
|
||
* Navigate to Flyte Console's UI (e.g. `sandbox <http://localhost:30081/console>`_) and find the workflow. | ||
* Click on `Launch` to open up the launch form. | ||
* Submit the form. | ||
|
||
.. tab:: Flytectl | ||
|
||
Retrieve an execution form in the form of a YAML file: | ||
|
||
.. prompt:: bash $ | ||
|
||
flytectl get launchplan \ | ||
--config ~/.flyte/flytectl.yaml \ | ||
--project flytesnacks \ | ||
--domain development \ | ||
athena.athena.full_athena_wf | ||
--latest \ | ||
--execFile exec_spec.yaml | ||
|
||
Launch! 🚀 | ||
|
||
.. prompt:: bash $ | ||
|
||
flytectl --config ~/.flyte/flytectl.yaml create execution \ | ||
-p <project> -d <domain> --execFile ./exec_spec.yaml | ||
Replace ``<RELEASE_NAME>`` with the name of your release (e.g., ``flyte``) | ||
and ``<YOUR_NAMESPACE>`` with the name of your namespace (e.g., ``flyte``). |
Oops, something went wrong.