{"id":20903821,"url":"https://github.com/ivpal/vertx-ignite-streamer","last_synced_at":"2026-04-25T13:38:15.114Z","repository":{"id":93268476,"uuid":"365569274","full_name":"ivpal/vertx-ignite-streamer","owner":"ivpal","description":"vertx-ignite-streamer provides streaming events from Vert.x event bus to key-value pairs into Apache Ignite instance.","archived":false,"fork":false,"pushed_at":"2021-05-08T17:26:52.000Z","size":62,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-29T12:24:59.562Z","etag":null,"topics":["apache-ignite","vertx"],"latest_commit_sha":null,"homepage":"","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/ivpal.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":"2021-05-08T17:07:12.000Z","updated_at":"2021-05-08T17:22:36.000Z","dependencies_parsed_at":null,"dependency_job_id":"fa675030-967e-425b-977b-69485e6ee463","html_url":"https://github.com/ivpal/vertx-ignite-streamer","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ivpal/vertx-ignite-streamer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivpal%2Fvertx-ignite-streamer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivpal%2Fvertx-ignite-streamer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivpal%2Fvertx-ignite-streamer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivpal%2Fvertx-ignite-streamer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ivpal","download_url":"https://codeload.github.com/ivpal/vertx-ignite-streamer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivpal%2Fvertx-ignite-streamer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32264431,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T09:15:33.318Z","status":"ssl_error","status_checked_at":"2026-04-25T09:15:31.997Z","response_time":59,"last_error":"SSL_read: 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":["apache-ignite","vertx"],"created_at":"2024-11-18T13:15:05.808Z","updated_at":"2026-04-25T13:38:15.071Z","avatar_url":"https://github.com/ivpal.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vertx-ignite-streamer\n\nvertx-ignite-streamer provides streaming events from Vert.x event bus to key-value pairs into Apache Ignite instance.\n\n## Usage\n### Gradle\n```groovy\nrepositories {\n    maven { url 'https://jitpack.io' }\n}\n\ndependencies {\n    implementation 'com.github.ivpal:vertx-ignite-streamer:1.0.0-SNAPSHOT'\n}\n```\n### Maven\n```xml\n\u003crepositories\u003e\n    \u003crepository\u003e\n        \u003cid\u003ejitpack.io\u003c/id\u003e\n        \u003curl\u003ehttps://jitpack.io\u003c/url\u003e\n    \u003c/repository\u003e\n\u003c/repositories\u003e\n\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.ivpal\u003c/groupId\u003e\n    \u003cartifactId\u003evertx-ignite-streamer\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.0-SNAPSHOT\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### Java code example:\n```java\nvar config = new IgniteConfiguration();\nvar clusterManager = new IgniteClusterManager(config);\nvar vertxOptions = new VertxOptions().setClusterManager(clusterManager);\nfinal var cacheName = \"words\";\nfinal var address = \"address\";\n\nVertx.clusteredVertx(vertxOptions)\n    .onSuccess(vertx -\u003e {\n        var ignite = clusterManager.getIgniteInstance();\n        ignite.createCache(cacheName);\n        var streamer = ignite.\u003cString, String\u003edataStreamer(cacheName);\n        streamer.allowOverwrite(true);\n        streamer.perThreadBufferSize(1);\n        streamer.autoFlushFrequency(1000);\n\n        var vertxStreamer = new VertxStreamer\u003cString, String, String\u003e();\n        vertxStreamer.setAddress(address);\n        vertxStreamer.setVertx(vertx);\n        vertxStreamer.setIgnite(ignite);\n        vertxStreamer.setStreamer(streamer);\n        vertxStreamer.setSingleTupleExtractor(msg -\u003e new Map.Entry\u003c\u003e() {\n            @Override\n            public String getKey() {\n                return msg.split(\":\")[0];\n            }\n\n            @Override\n            public String getValue() {\n                return msg.split(\":\")[1];\n            }\n\n            @Override\n            public String setValue(String value) {\n                return null;\n            }\n        });\n        vertxStreamer.start();\n\n        vertx.eventBus().send(address, \"key:value\");\n\n        // Because we set autoFlushFrequency to 1000\n        vertx.setTimer(1000, event -\u003e {\n            var value = ignite.\u003cString, String\u003ecache(cacheName).get(\"key\"); // should be \"value\"\n        });\n    });\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fivpal%2Fvertx-ignite-streamer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fivpal%2Fvertx-ignite-streamer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fivpal%2Fvertx-ignite-streamer/lists"}