Welcome to the Octopipe quickstart guide. This document will help you set up and run your first pipeline in a few simple steps. Follow these instructions to quickly see Octopipe in action and start processing your data.
Begin by initializing a new Octopipe project. This command sets up the basic structure and configuration files needed for your pipeline.
Copy
octopipe init --name my_pipeline --description "Pipeline for Sales Data"
Tip: The —name flag defines your pipeline’s name, and —description provides context about its purpose.Step 2: Authenticate with OctopipeBefore interacting with the platform, you need to authenticate. Use your API key to log in:
Copy
octopipe login --api-key YOUR_API_KEY_HERE
• Note: Ensure your API key is active. Check the authentication section in the documentation if you encounter any issues.Step 3: Add a Data SourceConfigure your data source by adding a connector. For example, to add a sales API as a data source, run:
• Explanation:• —name assigns a unique name to your data source.• —type specifies the kind of source (e.g., api, database, or file).• Additional options such as url and token provide connection details.Step 4: Add a Data DestinationNow, set up where your data will be loaded. For instance, if you’re using PostgreSQL as your destination, run:
• Detail: This command configures the database connection by specifying host, port, credentials, and the target database name.Step 5: Define a TransformationCreate a transformation that maps the type safe API schema to the labeled database schema. You can define this mapping using a schema file:
• Clarification: The transformation aligns API fields with database fields, ensuring data consistency during the load process.Step 6: Create the PipelineWith your components in place, create the pipeline that orchestrates these elements:
• Schedule: The cron expression “0 0 * * *” schedules the pipeline to run daily at midnight.Step 7: Start the PipelineLaunch your pipeline to begin processing data:
Copy
octopipe start daily_sales
• Observation: A successful start will display confirmation messages and log entries indicating that data processing has begun.Step 8: Monitor the PipelineTo view real-time updates and logs, use the following command:
Copy
octopipe logs daily_sales --follow
• Tip: The —follow option streams live logs to your terminal, allowing you to monitor progress and troubleshoot if needed.Final ThoughtsCongratulations! You have now set up and started your first Octopipe pipeline. This quickstart guide covered initialization, authentication, source and destination configuration, transformation setup, pipeline creation, and monitoring.If you need additional assistance, refer to the detailed documentation or connect with the community for support. Enjoy building robust data pipelines with Octopipe!