{"id":20578110,"url":"https://github.com/timeplus-io/kafka-connect-timeplus","last_synced_at":"2026-04-20T15:05:10.024Z","repository":{"id":115243903,"uuid":"581600449","full_name":"timeplus-io/kafka-connect-timeplus","owner":"timeplus-io","description":"The Timeplus sink connector allows moving data from Kafka to Timeplus Cloud","archived":false,"fork":false,"pushed_at":"2024-01-15T17:55:16.000Z","size":91,"stargazers_count":2,"open_issues_count":2,"forks_count":1,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-06T11:39:37.973Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.confluent.io/hub/timeplus/kafka-timeplus-connector-sink","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/timeplus-io.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}},"created_at":"2022-12-23T17:17:16.000Z","updated_at":"2024-07-15T19:42:17.000Z","dependencies_parsed_at":"2024-01-15T19:24:23.413Z","dependency_job_id":null,"html_url":"https://github.com/timeplus-io/kafka-connect-timeplus","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/timeplus-io/kafka-connect-timeplus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timeplus-io%2Fkafka-connect-timeplus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timeplus-io%2Fkafka-connect-timeplus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timeplus-io%2Fkafka-connect-timeplus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timeplus-io%2Fkafka-connect-timeplus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/timeplus-io","download_url":"https://codeload.github.com/timeplus-io/kafka-connect-timeplus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timeplus-io%2Fkafka-connect-timeplus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32052560,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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-11-16T06:10:37.163Z","updated_at":"2026-04-20T15:05:10.006Z","avatar_url":"https://github.com/timeplus-io.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Timeplus Sink Connector\n\nA Kafka Connect plugin for Timeplus.\n\n## Build\n\nTo build the project, run `mvn clean install`. If you want to include all dependency to simplify your deployment, run `mvn clean compile assembly:single`\n\n## Configurations\n\nThe following configurations are supported\n\n| key                        | value                                              |\n| -------------------------- | -------------------------------------------------- |\n| name                       | ID for the plugin instance                         |\n| connector.class            | com.timeplus.kafkaconnect.TimeplusSinkConnector    |\n| timeplus.sink.address      | Address to Timeplus Cloud or self-managed Timeplus Or Proton Address |\n| timeplus.sink.workspace    | Timeplus workspace ID, when set to empty, will use Proton as target  |\n| timeplus.sink.apikey       | API Key for the workspace, 60 chars long           |\n| timeplus.sink.stream       | destination stream name                            |\n| timeplus.sink.createStream | whether to create the stream if not exist          |\n| timeplus.sink.dataFormat   | stream data format. Either `raw` or `json`, when target Proton, only `raw` mode is supported |\n\nHere is an example configuration of timeplus cloud as target:\n\n```properties\nname: TimeplusSink\nconnector.class: com.timeplus.kafkaconnect.TimeplusSinkConnector\ntasks.max: 1\ntopics: my_topic\ntimeplus.sink.address: https://us.timeplus.cloud\ntimeplus.sink.workspace: abc123\ntimeplus.sink.apikey: 60_char_API_Key\ntimeplus.sink.stream: data_from_kafka\ntimeplus.sink.createStream: true\ntimeplus.sink.dataFormat: raw\nkey.converter: org.apache.kafka.connect.storage.StringConverter\nvalue.converter: org.apache.kafka.connect.storage.StringConverter\n```\n\nHere is an example configuration of using Proton as target:\n\n```properties\nname: TimeplusSink\nconnector.class: com.timeplus.kafkaconnect.TimeplusSinkConnector\ntasks.max: 1\ntopics: my_topic\ntimeplus.sink.address: http://localhost:3218\ntimeplus.sink.workspace: \u003cleave empty\u003e\ntimeplus.sink.apikey: \u003cleave empty\u003e\ntimeplus.sink.stream: data_from_kafka\ntimeplus.sink.createStream: true\ntimeplus.sink.dataFormat: raw\nkey.converter: org.apache.kafka.connect.storage.StringConverter\nvalue.converter: org.apache.kafka.connect.storage.StringConverter\n```\n\nin case your want to externalize your API key, you can use configuration files refer to this [document](https://rmoff.net/2019/05/24/putting-kafka-connect-passwords-in-a-separate-file-/-externalising-secrets/)\n\nPlease check https://docs.timeplus.com/docs/kafka-connect for more details.\n\n## Integration Test\n\nto run integration test, you need have a timeplus cloud account and set following enironment , build your local docker image and then run the integration using mvn:\n\n```sh\nexport TIMEPLUS_API_KEY=\u003cyour api key\u003e\nexport TIMEPLUS_ADDRESS=https://us.timeplus.cloud\nexport TIMEPLUS_WORKSPACE=\u003cyour workspace id\u003e\n\nmake docker\nmvn test -Dtest=com.timeplus.kafkaconnect.integration.IntegrationTest\n```\n\n## Support\n\nplease email gang@timeplus.com if you have any question when using this plugin.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimeplus-io%2Fkafka-connect-timeplus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimeplus-io%2Fkafka-connect-timeplus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimeplus-io%2Fkafka-connect-timeplus/lists"}