{"id":19723503,"url":"https://github.com/remind101/kinesumer","last_synced_at":"2025-10-25T09:02:58.875Z","repository":{"id":35005974,"uuid":"39099596","full_name":"remind101/kinesumer","owner":"remind101","description":"Kinesis consumer library in Go","archived":false,"fork":false,"pushed_at":"2016-12-09T07:22:44.000Z","size":552,"stargazers_count":10,"open_issues_count":4,"forks_count":2,"subscribers_count":82,"default_branch":"master","last_synced_at":"2025-06-18T00:43:31.995Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/remind101.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}},"created_at":"2015-07-14T20:48:57.000Z","updated_at":"2018-07-16T21:09:30.000Z","dependencies_parsed_at":"2022-09-15T23:13:10.814Z","dependency_job_id":null,"html_url":"https://github.com/remind101/kinesumer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/remind101/kinesumer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remind101%2Fkinesumer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remind101%2Fkinesumer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remind101%2Fkinesumer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remind101%2Fkinesumer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/remind101","download_url":"https://codeload.github.com/remind101/kinesumer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remind101%2Fkinesumer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278723919,"owners_count":26034691,"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-10-07T02:00:06.786Z","response_time":59,"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":[],"created_at":"2024-11-11T23:22:25.740Z","updated_at":"2025-10-07T05:34:16.875Z","avatar_url":"https://github.com/remind101.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"Kinesumer\n===\n[![Circle CI](https://circleci.com/gh/remind101/kinesumer.svg?style=svg\u0026circle-token=ab11c0337d5aa1aca644e0420b228e86eecdd862)](https://circleci.com/gh/remind101/kinesumer)\n\nKinesumer is a simple [Go](http://golang.org/) client library for Amazon AWS [Kinesis](http://aws.amazon.com/kinesis/). It aims to be a native Go alternative to Amazon's [KCL](https://github.com/awslabs/amazon-kinesis-client). Kinesumer includes a tool (called `kinesumer`) that lets you tail Kinesis streams and check the status of Kinesumer workers.\n\nFeatures\n---\n* Automatically manages one consumer goroutine per shard.\n* Handles shard splitting and merging properly.\n* Provides a simple channel interface for incoming Kinesis records.\n* Provides a tool for managing Kinesis streams:\n\t* Tailing a stream\n\nUsing the package\n---\nInstall\n```bash\ngo get github.com/remind101/kinesumer\n```\n\nExample Program\n```golang\npackage main\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\n\t\"github.com/remind101/kinesumer\"\n)\n\nfunc main() {\n\tk, err := kinesumer.NewDefault(\n\t\t\"Stream\",\n\t)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tk.Begin()\n\tdefer k.End()\n\tfor i := 0; i \u003c 100; i++ {\n\t\trec := \u003c-k.Records()\n\t\tfmt.Println(string(rec.Data()))\n\t}\n}\n```\n\nUsing the tool\n---\nInstall\n```bash\ngo get -u github.com/remind101/kinesumer/cmd/kinesumer\n```\n\nTo tail a stream make sure you have AWS credentials ready (either in ~/.aws or in env vars) and run:\n```bash\nkinesumer tail -s STREAM_NAME\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremind101%2Fkinesumer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fremind101%2Fkinesumer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremind101%2Fkinesumer/lists"}