You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/aws/services/mwaa.md
+21-25Lines changed: 21 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,6 @@
1
1
---
2
2
title: "Managed Workflows for Apache Airflow (MWAA)"
3
-
linkTitle: "Managed Workflows for Apache Airflow (MWAA)"
4
-
description: >
5
-
Get started with Managed Workflows for Apache Airflow (MWAA) on LocalStack
3
+
description: Get started with Managed Workflows for Apache Airflow (MWAA) on LocalStack
6
4
tags: ["Ultimate"]
7
5
---
8
6
@@ -12,7 +10,7 @@ Managed Workflows for Apache Airflow (MWAA) is a fully managed service by AWS th
12
10
MWAA leverages the familiar Airflow features and integrations while integrating with S3, Glue, Redshift, Lambda, and other AWS services to build data pipelines and orchestrate data processing workflows in the cloud.
13
11
14
12
LocalStack allows you to use the MWAA APIs in your local environment to allow the setup and operation of data pipelines.
15
-
The supported APIs are available on the [API coverage page]({{< ref "coverage_mwaa" >}}).
13
+
The supported APIs are available on the [API coverage page]().
16
14
17
15
## Getting started
18
16
@@ -26,34 +24,34 @@ We will demonstrate how to create an Airflow environment and access the Airflow
26
24
Create a S3 bucket that will be used for Airflow resources.
27
25
Run the following command to create a bucket using the [`mb`](https://docs.aws.amazon.com/cli/latest/reference/s3/mb.html) command.
28
26
29
-
{{< command >}}
30
-
$ awslocal s3 mb s3://my-mwaa-bucket
31
-
{{< /command >}}
27
+
```bash
28
+
awslocal s3 mb s3://my-mwaa-bucket
29
+
```
32
30
33
31
### Create an Airflow environment
34
32
35
33
You can now create an Airflow environment, using the [`CreateEnvironment`](https://docs.aws.amazon.com/mwaa/latest/API/API_CreateEnvironment.html) API.
36
34
Run the following command, by specifying the bucket ARN we created earlier:
After the upload, the environment will be automatically updated, and your Apache Airflow setup will be equipped with the new dependencies.
132
130
It is important to note that, unlike [AWS](https://docs.aws.amazon.com/mwaa/latest/userguide/connections-packages.html), LocalStack does not install any provider packages by default.
@@ -143,9 +141,7 @@ This information must be explicitly passed in operators, hooks, and sensors.
143
141
The LocalStack Web Application provides a Resource Browser for managing MWAA Environments.
144
142
You can access the Resource Browser by opening the LocalStack Web Application in your browser, navigating to the **Resource Browser** section, and then clicking on **MWAA** under the **App Integration** section.
0 commit comments