{"id":28529590,"url":"https://github.com/hazelcast/hazelcast-jet-contrib","last_synced_at":"2025-07-07T03:32:42.140Z","repository":{"id":47182103,"uuid":"179637219","full_name":"hazelcast/hazelcast-jet-contrib","owner":"hazelcast","description":"Extension modules for Hazelcast Jet","archived":true,"fork":false,"pushed_at":"2021-10-26T08:00:44.000Z","size":14135,"stargazers_count":21,"open_issues_count":14,"forks_count":24,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-06-09T14:14:16.982Z","etag":null,"topics":["big-data","hazelcast","hazelcast-jet","java","stream-processing"],"latest_commit_sha":null,"homepage":"https://github.com/hazelcast/hazelcast-jet","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/hazelcast.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-04-05T07:29:19.000Z","updated_at":"2025-05-13T10:23:05.000Z","dependencies_parsed_at":"2022-09-11T01:50:18.378Z","dependency_job_id":null,"html_url":"https://github.com/hazelcast/hazelcast-jet-contrib","commit_stats":null,"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/hazelcast/hazelcast-jet-contrib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazelcast%2Fhazelcast-jet-contrib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazelcast%2Fhazelcast-jet-contrib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazelcast%2Fhazelcast-jet-contrib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazelcast%2Fhazelcast-jet-contrib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hazelcast","download_url":"https://codeload.github.com/hazelcast/hazelcast-jet-contrib/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazelcast%2Fhazelcast-jet-contrib/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264007113,"owners_count":23543119,"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","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":["big-data","hazelcast","hazelcast-jet","java","stream-processing"],"created_at":"2025-06-09T14:11:47.867Z","updated_at":"2025-07-07T03:32:42.133Z","avatar_url":"https://github.com/hazelcast.png","language":"Java","funding_links":[],"categories":["Caching"],"sub_categories":["Hazelcast"],"readme":"# hazelcast-jet-contrib\n\nThis repository includes various community supported and incubating\nmodules for [Hazelcast Jet](https://github.com/hazelcast/hazelcast-jet).\n\nAs a general guideline, the following types of modules are encouraged\nin this repository:\n\n* Various connectors, including both sources and sinks\n* [Service Factories](https://jet-start.sh/javadoc/4.3/com/hazelcast/jet/pipeline/ServiceFactory.html).\nthat potentially integrate with other systems.\n* Custom [aggregations](https://jet-start.sh/javadoc/4.3/com/hazelcast/jet/aggregate/AggregateOperation.html).\nThese should be generic enough that they should be reusable in other\n pipelines.\n\n## Building from source\n\nTo build the project, use the following command\n\n```\n./gradlew build\n```\n\nTo publish project modules to the Maven Local repository, use the command\n\n```\n./gradlew publishToMavenLocal\n```\n\n## List of modules\n\n### [InfluxDb Connector](influxdb)\n\nA Hazelcast Jet Connector for InfluxDb which enables Hazelcast Jet\npipelines to read/write data points from/to InfluxDb.\n\n### [Probabilistic Aggregations](probabilistic)\n\nA collection of probabilistic aggregations such as HyperLogLog.\n\n### [Redis Connectors](redis)\n\nHazelcast Jet connectors for various Redis data structures.\n\n### [MongoDB Connector](mongodb)\n\nA Hazelcast Jet connector for MongoDB for querying/inserting objects\nfrom/to MongoDB.\n\n### [Kafka Connect Connector](kafka-connect)\n\nA generic Kafka Connect source provides ability to plug any Kafka\nConnect source for data ingestion to Jet pipelines.\n\n### [Twitter Connector](twitter)\n\nA Hazelcast Jet connector for consuming data from Twitter stream\nsources in Jet pipelines.\n\n### [Pulsar Connector](pulsar)\n\nA Hazelcast Jet connector for consuming/producing messages from/to Apache Pulsar topics.\n\n### [XA Tests](xa-test)\n\nTests to check compatibility of the XA support in your JMS broker or\nJDBC database with Jet's fault tolerance.\n\n### [Hazelcast Jet Spring Boot Starter](hazelcast-jet-spring-boot-starter)\n\nA Spring Boot Starter for Hazelcast Jet which auto-configures Hazelcast\nJet if found on the classpath.\n\n### [HTTP(S) Listener Connector](http)\n\nA Hazelcast Jet Listener Connector for listening incoming HTTP requests\nas a source and sending messages(websocket) or events(server-sent-event)\nto the listening clients as a sink.\n\n\n## Snapshot Releases\n\nTo access snapshot builds add the following `dependency` and\n`repository` declarations to `dependencies` and `repositories` sections\nin your `pom.xml` respectively.\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003ecom.hazelcast.jet.contrib\u003c/groupId\u003e\n  \u003cartifactId\u003e${module.name}\u003c/artifactId\u003e\n  \u003cversion\u003e${module.version}\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n```xml\n\u003crepository\u003e\n    \u003cid\u003esonatype-snapshots\u003c/id\u003e\n    \u003cname\u003eSonatype Snapshot Repository\u003c/name\u003e\n    \u003curl\u003ehttps://oss.sonatype.org/content/repositories/snapshots\u003c/url\u003e\n    \u003creleases\u003e\n        \u003cenabled\u003efalse\u003c/enabled\u003e\n    \u003c/releases\u003e\n    \u003csnapshots\u003e\n        \u003cenabled\u003etrue\u003c/enabled\u003e\n    \u003c/snapshots\u003e\n\u003c/repository\u003e\n````\n\n## Contributing\n\nWe encourage pull requests and process them promptly.\n\nTo contribute:\n\n* see [Contribution Guideline](https://github.com/hazelcast/hazelcast-jet-contrib/blob/master/CONTRIBUTING.md)\n* see [Developing with Git](https://hazelcast.atlassian.net/wiki/display/COM/Developing+with+Git) for our Git process\n* see [README Template](https://github.com/hazelcast/hazelcast-jet-contrib/blob/master/templates/README.template.md)\n* complete the [Hazelcast Contributor Agreement](https://hazelcast.atlassian.net/wiki/display/COM/Hazelcast+Contributor+Agreement)\n\nSubmit your contribution as a pull request on GitHub.\n\n## License\n\nThis project is licensed under the Apache 2.0 license - see the\n[LICENSE](LICENSE) file for details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhazelcast%2Fhazelcast-jet-contrib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhazelcast%2Fhazelcast-jet-contrib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhazelcast%2Fhazelcast-jet-contrib/lists"}