{"id":13569469,"url":"https://github.com/decodableco/decodable-pipeline-sdk","last_synced_at":"2026-04-09T00:34:25.154Z","repository":{"id":175893917,"uuid":"649703952","full_name":"decodableco/decodable-pipeline-sdk","owner":"decodableco","description":"An SDK for implementing Flink jobs based on Decodable","archived":false,"fork":false,"pushed_at":"2025-08-08T11:26:32.000Z","size":1046,"stargazers_count":13,"open_issues_count":9,"forks_count":3,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-08-08T11:27:27.765Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/decodableco.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-06-05T13:03:16.000Z","updated_at":"2025-07-25T21:35:52.000Z","dependencies_parsed_at":"2023-11-29T02:27:14.271Z","dependency_job_id":"cc9970e9-9064-4423-bf0a-eefb19c7ca4f","html_url":"https://github.com/decodableco/decodable-pipeline-sdk","commit_stats":null,"previous_names":["decodableco/decodable-pipeline-sdk"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/decodableco/decodable-pipeline-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decodableco%2Fdecodable-pipeline-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decodableco%2Fdecodable-pipeline-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decodableco%2Fdecodable-pipeline-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decodableco%2Fdecodable-pipeline-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/decodableco","download_url":"https://codeload.github.com/decodableco/decodable-pipeline-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decodableco%2Fdecodable-pipeline-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31580173,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T14:00:40.450Z","updated_at":"2026-04-09T00:34:25.145Z","avatar_url":"https://github.com/decodableco.png","language":"Java","funding_links":[],"categories":["Java"],"sub_categories":[],"readme":"# Decodable Pipeline SDK\n\n_Version 1.0.0.Beta9_\n\nThis repository contains a software development kit (SDK) for implementing [Apache Flink](https://flink.apache.org/) jobs\nand running them on Decodable as a [custom pipeline](https://docs.decodable.co/docs/create-pipelines-using-your-own-apache-flink-jobs).\n\n## Structure\n\n* _sdk_: The Decodable SDK\n* _examples_: Examples for using the SDK\n\n## Requirements\n\nThe following components are required in order to use this SDK:\n\n* Java 11\n* Docker (for integration tests)\n\n## Installation\n\nThe SDK is available on Maven Central.\nAdd the SDK dependency to the _pom.xml_ of your Maven project:\n\n```xml\n...\n\u003cdependency\u003e\n  \u003cgroupId\u003eco.decodable\u003c/groupId\u003e\n  \u003cartifactId\u003edecodable-pipeline-sdk\u003c/artifactId\u003e\n  \u003cversion\u003e{FLINK_VERSION}-1.0.0.Beta9\u003c/version\u003e\n\u003c/dependency\u003e\n...\n```\n\nOr, to your _build.gradle_ when using Gradle:\n\n```\n...\nimplementation 'co.decodable:decodable-pipeline-sdk:{FLINK_VERSION}-1.0.0.Beta9'\n...\n```\n\n## Usage\n\nSee the project under _examples/custom-pipelines-hello-world/_ for a complete example project\nwhich shows how to use the Decodable SDK for implementing and testing Flink jobs to be executed as custom pipelines on Decodable.\n\nRefer to the [API documentation](https://docs.decodable.co/api/pipeline-sdk.html) to learn how to use this SDK for implementing your custom Flink jobs.\n\nRefer to the [documentation](https://docs.decodable.co/docs/create-pipelines-using-your-own-apache-flink-jobs) for instructions on how to deploy your job as a custom pipeline on the Decodable platform.\n\n## Contributing\n\nWe look forward to any contributions to this SDK.\nThe project uses [GitHub Issues](https://github.com/decodableco/decodable-pipeline-sdk/issues) for tracking feature requests and bug reports.\nBefore picking up any larger work items, it is recommended to reach out via the [Decodable Community](decodablecommunity.slack.com) Slack space.\n\n### Building the SDK\n\nGradle is used for building the SDK.\n\nChange to the _sdk_ directory and run the following to produce the SDK binary:\n\n```bash\n./gradlew build\n```\n\nRun the following to apply the auto-formatter to the source code:\n\n```bash\n./gradlew spotlessApply\n```\n\nRun the following to install the SDK JAR into your local Maven repository:\n\n```bash\n./gradlew publishToMavenLocal\n```\n\n### Commit Conventions\n\nThis project uses [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) for its commit messages,\nwhich serve as the input for generated release notes.\nEach commit message must be in the following two forms:\n\n```\n#\u003cissue key\u003e \u003ctype\u003e: \u003cdescription\u003e\n\nExample:\n\n#42 feat: Providing support for the Flink Table API\n```\n\nOptionally, a message body may be specified too:\n\n```\n#42 feat: Providing support for the Flink Table API\n\nStreams can be accessed using Flink SQL now, also ...\n```\n\n### Release Process\n\nThis project runs a fully automated release process on GitHub Actions.\nYou must be a committer to this repository in order to perform a release.\nTo trigger the release of a new SDK version, execute the [release](https://github.com/decodableco/decodable-pipeline-sdk/actions/workflows/release.yml) workflow, specifying the version to be released (e.g. `1.1.0.Final`) and the next version for main (e.g. `1.2.0-SNAPSHOT`).\nThe release pipeline performs the following steps:\n\n* Updating versions in the SDK and example project\n* Deploying the SDK artifact to Maven Central\n* Publishing the API documentation\n* Creating a release on GitHub, including a changelog\n\n## License\n\nThis code base is available under the Apache License, version 2.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdecodableco%2Fdecodable-pipeline-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdecodableco%2Fdecodable-pipeline-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdecodableco%2Fdecodable-pipeline-sdk/lists"}