Skip to content
Luke edited this page Apr 26, 2023 · 5 revisions

πŸ‘‹ 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.

Table of Contents

πŸš€ Getting Started

To get started with the AWS DataPipeline Manager, follow these steps:

  1. πŸ‘ Clone the repository to your local machine:

    git clone https://github.com/HairyDuck/aws-datapipeline-manager.git
  2. πŸ’» Install the Node.js dependencies:

    cd aws-datapipeline-manager
    npm install
  3. πŸ”‘ Configure your AWS credentials:

    Update the AWS.config.update method call in the app.js file with your AWS region and access key:

    AWS.config.update({ region: 'your_region', accessKeyId: 'your_access_key', secretAccessKey: 'your_secret_access_key' });
  4. πŸš€ 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.

πŸŽ‰ Creating a New Pipeline

To create a new pipeline, follow these steps:

  1. 🌐 Open the AWS DataPipeline Manager in a web browser.

  2. πŸ†• Click the "Create New Pipeline" button on the home page.

  3. πŸ“ Enter a name for the new pipeline in the "New Pipeline Name" field.

  4. πŸš€ Click the "Create" button.

    The new pipeline will be created, and you will be redirected to the pipeline details page.

πŸ‘€ Viewing Pipeline Details

To view the details of a pipeline, follow these steps:

  1. 🌐 Open the AWS DataPipeline Manager in a web browser.

  2. πŸ‘€ 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.

πŸ“ Editing Pipeline Definition

To edit the definition of a pipeline, follow these steps:

  1. 🌐 Open the AWS DataPipeline Manager in a web browser.

  2. πŸ“ Click on the name of the pipeline you want to edit on the home page.

  3. πŸ–ŠοΈ Click the "Edit Pipeline Definition" button.

  4. ✏️ Edit the pipeline objects in the text area.

  5. πŸš€ Click the "Save Changes" button.

    The pipeline definition will be updated, and you will be redirected to the pipeline details page.

πŸ—‘οΈ Deleting a Pipeline

To delete a pipeline, follow these steps:

  1. 🌐 Open the AWS DataPipeline Manager in a web browser.

  2. πŸ‘€ Click on the name of the pipeline you want to delete on the home page.

  3. πŸ—‘οΈ Click the "Delete Pipeline" button.

  4. πŸš€ 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! πŸŽ‰