Giter VIP home page Giter VIP logo

pulsar-io-template's Introduction

Connector Development Guide

Welcome to contribute to StreamNative Hub! You can submit connectors around Apache Pulsar and StreamNatvie ecosystems and host them on StreamNative Hub.

This instruction guides you through every step of submitting a connector to StreamNative Hub, including the workflow for both code and doc.

Code

streamnative / pulsar-io-template is a project template for developing an enterprise-grade Pulsar connector. It sets up a project structure and contains necessary dependencies and plugins.

To develop a connector quicker and easier, you can clone this project template.

This example develops a Pulsar connector named pulsar-io-foo.

  1. Create your connector project.

    (1) On your local machine anywhere, clone the pulsar-io-template to create the pulsar-io-foo project.

    git clone --bare https://github.com/streamnative/pulsar-io-template.git pulsar-io-foo

    You will get the following directories to host different files.

    ├── conf // stores configuration examples.
    ├── docs // stores user guides.
    ├── src // stores source codes.
    │   ├── checkstyle // stores checkstyle configuration files.
    │   ├── license // stores license headers. You can use `mvn license:format` to format the project with the stored license header.
    │   │   └── ALv2
    │   ├── main // stores all main source files.
    │   │   └── java
    │   ├── spotbugs // stores spotbugs configuration files.
    │   └── test // stores all related tests.
    │ 

    (2) Push the pulsar-io-foo project to your GitHub account.

    cd pulsar-io-foo
    git push https://github.com/<your-github-account>/pulsar-io-foo
    
  2. Develop your connector.

    (1) To customize your connector, update the following configurations in the pom file.

    Configuration Description
    artifactId Update artifactId to your connector name.
    version Update version to the desired connector version.

    Tip: it is recommended to define the connector’s version NO. same as Pulsar’s version NO. In this way, it is easy to figure out the version relationships between the connector and Pulsar.
    name Update name to Pulsar Ecosystem :: IO Connector :: <your-connector-name>.
    description Update description to the descriptions of your connector.

    (2) Create a package org.apache.pulsar.ecosystem.io.foo in src/main/java/org/apache/pulsar/ecosystem/io to develop your connector logic.

    Tip

    • Here are some code examples for developing a connector.

    • To ensure a consistent codebase, it is recommended to run the checkstyle and spotbugs. For more information, see check your code.

  3. Test your connector.

    Create a package org.apache.pulsar.ecosystem.io.foo in the src/test directory to develop your connector tests. For more information, see how to write a unit test in Java.

    Tip

    • It is strongly recommended to write tests for your connector. For more information, see test examples.

    • To ensure a consistent codebase, it is recommended to run the checkstyle and spotbugs. For more information, see check your code.

  4. Check your code.

    To ensure a consistent codebase, it is recommended to run the checkstyle and spotbugs, which are already set by the project template.

    (1) Run the checkstyle.

    mvn checkstyle:check

    (2) Run the spotbugs.

    mvn spotbugs:check
  5. Choose a license.

    You can choose Apache License 2.0. For more information, see choose an open source license.

    After choosing the license, you need to finish the following tasks.

    (1) Replace the LICENSE file in the project template with your desired license.

    (2) Add your license header to the src/license/<your-license-header>.txt file.

    (3) Update the license-maven-plugin configuration in the pom.xml file to point to your license header.

    (4) Run the license:format command to format the project with your license.

Doc

Documentation is one of the maturity indicators for measuring a project. High-quality user documentation helps users to use the connector efficiently and improves users’ experiences.

You can maintain documentation using the same tools and processes that used to maintain your connector code.

  1. Create a docs repo.

    In your root directory of connector repo, create a doc repo named docs.

    Note

    Name the repo with docs instead of other names, or else your docs are not synced to StreamNative Hub.

    1
  2. Write the docs for each type of connector.

    Example

    2

    Note

    • Here are examples of the SQS connector docs. It is strongly recommended to follow the doc architecture in this example, or else your docs might not be synced to StreamNative Hub.

    • The docs on these branches (master, branch-x.x.x. For example, branch-2.7.0) and tags (vx.x.x. For example, v2.7.1, v2.7.2) can be shown on the StreamNative Hub website. Or else the docs on other branches and tags are not shown on the StreamNative Hub website. Pay attention to your branch and tag names.

    3 4

    Tip

    • To reduce maintenance costs, use a variable (for example, {{connector:version}}) instead of writing the specific connector version. In this way, the corresponding connector version is generated and shown automatically along with each connector release.

    • To ensure consistency throughout all connector documentation, it is recommended to follow the Google Developer Documentation Style Guide.

  3. Sync the docs to StreamNative Hub.

    Create YAML files in your connector doc repository. The backend script syncs docs from your connector repository to StreamNative Hub automatically using the YAML files.

    connectors/<your-connector-repository-name>/<your-connector-repository-name>.yaml
    

    Example

    6 7
  4. Send a PR and request docs review.

    Your doc will be reviewed by connector maintainers. You will work together to finalize the doc.

    Here is a PR example.

Blog

After finishing the code and documentation, you can create a post to announce the connector. You can contact us to publish it on the StreamNative website and we can work together to promote it to multiple channels.

Example

More info

If you have any questions about contributing your connector to StreamNative Hub, feel free to open an issue to discuss it with us or contact us. We look forward to your contribution!

pulsar-io-template's People

Contributors

anonymitaet avatar sijie avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.