{"id":34552676,"url":"https://github.com/usedatabrew/blink","last_synced_at":"2025-12-24T08:03:39.622Z","repository":{"id":237936421,"uuid":"717769767","full_name":"usedatabrew/blink","owner":"usedatabrew","description":"OpenSource data platform to build event-driven systems. It's like Deebezium for golang :)","archived":false,"fork":false,"pushed_at":"2024-07-13T11:43:56.000Z","size":7502,"stargazers_count":14,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2024-07-13T12:50:36.036Z","etag":null,"topics":["data-engineering","data-processing","debezium","etl","etl-pipeline","kafka","stream-processing","stream-processor","streaming"],"latest_commit_sha":null,"homepage":"https://docs.databrew.tech/open-source/prerequisites","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/usedatabrew.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2023-11-12T14:40:52.000Z","updated_at":"2024-07-13T11:43:18.000Z","dependencies_parsed_at":"2024-05-28T01:32:07.132Z","dependency_job_id":"bb0bcd9d-b39d-4b62-84d7-a19506e545dc","html_url":"https://github.com/usedatabrew/blink","commit_stats":null,"previous_names":["usedatabrew/blink"],"tags_count":79,"template":false,"template_full_name":null,"purl":"pkg:github/usedatabrew/blink","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usedatabrew%2Fblink","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usedatabrew%2Fblink/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usedatabrew%2Fblink/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usedatabrew%2Fblink/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/usedatabrew","download_url":"https://codeload.github.com/usedatabrew/blink/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usedatabrew%2Fblink/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27998473,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-24T02:00:07.193Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["data-engineering","data-processing","debezium","etl","etl-pipeline","kafka","stream-processing","stream-processor","streaming"],"created_at":"2025-12-24T08:02:59.213Z","updated_at":"2025-12-24T08:03:39.617Z","avatar_url":"https://github.com/usedatabrew.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \u003cp align=\"center\"\u003e DataBrew - Blink \u003c/p\u003e\n\n### \u003cp align=\"center\"\u003e OpenSource data streaming \u0026 processing engine to build event-driven systems \u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"./images/preview.png\" width=\"150px\" alt=\"Project social preview\"\u003e\n\u003c/p\u003e\n\n---\n\n[![Build on push to main](https://github.com/usedatabrew/blink/actions/workflows/build_main.yaml/badge.svg)](https://github.com/usedatabrew/blink/actions/workflows/build_main.yaml)\n![Latest version (latest semver)](https://img.shields.io/docker/v/usedatabrew/blink)\n\nBlink gives your ability to create event driven systems by adopting CDC or enabling integration with third-party systems like\nAirTable or stripe to stream your data directly to your systems. \n\n# Table of Contents\n\n1. [Installation](#getting-started)\n2. [Running Blink locally](#running-blink-locally)\n3. [Docs](https://docs.databrew.tech/get-started-with-open-source.html)\n\n## Getting started\n\nLet's give Blink a try. Check out different options to start Blink on your local machine\n\n### Run with Docker on Linux\n\nCurrently, we offer only Linux-based arm64 build for docker\nCreate a config with the name `blink.yaml` and run the docker image\n\n```shell\ndocker run -v ./blink.yaml:/app/blink.yaml usedatabrew/blink start\n```\n\n### Install Golang binary\n\n![Latest version (latest semver)](https://img.shields.io/docker/v/usedatabrew/blink)\n\n```shell\ngo install github.com/usedatabrew/blink@v1.16.9\n```\n\n### Running Blink locally\n\nTo run Blink locally - you have to create a config file that will define streams\n\n```yaml\nservice:\n  pipeline_id: 1\nsource:\n  driver: playground\n  config:\n    data_type: market\n    publish_interval: 1\n    historical_batch: false\n  stream_schema:\n    - stream: market\n      columns:\n        - name: company\n          nativeConnectorType: String\n          databrewType: String\n          nullable: false\n          pk: false\n        - name: currency\n          nativeConnectorType: String\n          databrewType: String\n          nullable: false\n          pk: false\nprocessors:\n  - driver: sql\n    config:\n      query: \"select * from streams.market where currency = 'USD'\"\nsink:\n  driver: stdout\n  config: {}\n```\n\n```shell\nblink start -c blink-config.yaml\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fusedatabrew%2Fblink","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fusedatabrew%2Fblink","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fusedatabrew%2Fblink/lists"}