-
Notifications
You must be signed in to change notification settings - Fork 2
Home
π Welcome to the AWS DataPipeline Manager wiki! This guide will walk you through managing your AWS DataPipeline jobs using a fun and easy Node.js web application.
- π Getting Started
- π Creating a New Pipeline
- π Viewing Pipeline Details
- π Editing Pipeline Definition
- ποΈ Deleting a Pipeline
To get started with the AWS DataPipeline Manager, follow these steps:
-
π Clone the repository to your local machine:
git clone https://github.com/HairyDuck/aws-datapipeline-manager.git
-
π» Install the Node.js dependencies:
cd aws-datapipeline-manager npm install
-
π Configure your AWS credentials:
Update the
AWS.config.update
method call in theapp.js
file with your AWS region and access key:AWS.config.update({ region: 'your_region', accessKeyId: 'your_access_key', secretAccessKey: 'your_secret_access_key' });
-
π Start the server:
node app.js
The server will start listening on port 3000 by default. Open a web browser and navigate to
http://localhost:3000
to access the application.
To create a new pipeline, follow these steps:
-
π Open the AWS DataPipeline Manager in a web browser.
-
π Click the "Create New Pipeline" button on the home page.
-
π Enter a name for the new pipeline in the "New Pipeline Name" field.
-
π Click the "Create" button.
The new pipeline will be created, and you will be redirected to the pipeline details page.
To view the details of a pipeline, follow these steps:
-
π Open the AWS DataPipeline Manager in a web browser.
-
π Click on the name of the pipeline you want to view on the home page.
The pipeline details page will be displayed, showing the pipeline ID and pipeline objects in JSON format.
To edit the definition of a pipeline, follow these steps:
-
π Open the AWS DataPipeline Manager in a web browser.
-
π Click on the name of the pipeline you want to edit on the home page.
-
ποΈ Click the "Edit Pipeline Definition" button.
-
βοΈ Edit the pipeline objects in the text area.
-
π Click the "Save Changes" button.
The pipeline definition will be updated, and you will be redirected to the pipeline details page.
To delete a pipeline, follow these steps:
-
π Open the AWS DataPipeline Manager in a web browser.
-
π Click on the name of the pipeline you want to delete on the home page.
-
ποΈ Click the "Delete Pipeline" button.
-
π Confirm the deletion.
The pipeline will be deleted, and you will be redirected to the home page.
That's it! You're now ready to manage your AWS DataPipeline jobs with ease using the AWS DataPipeline Manager. Happy pipeline managing! π