Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jimver/s-query-examples
This repo hosts some example jet jobs that allow querying the internal state of jet transforms
https://github.com/jimver/s-query-examples
hazelcast hazelcast-jet query state
Last synced: about 2 months ago
JSON representation
This repo hosts some example jet jobs that allow querying the internal state of jet transforms
- Host: GitHub
- URL: https://github.com/jimver/s-query-examples
- Owner: Jimver
- Created: 2021-01-10T18:40:24.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-01T22:07:02.000Z (over 3 years ago)
- Last Synced: 2024-10-26T07:24:19.614Z (3 months ago)
- Topics: hazelcast, hazelcast-jet, query, state
- Language: Java
- Homepage:
- Size: 373 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# S-Query-examples
This repo hosts some examples that query the internal state of stateful operators in S-Query. (Based on Hazelcast Jet)S-Query is an adaptation of Hazelcast Jet which supports querying the internal state.
## Structure
The most important are the `dh`, `benchmark-getter-job` and `generic-query`/`generic-inc-query` modules.The `dh` module contains the Jet jobs for the Delivery Hero order tracking application in the S-Query paper.
Submodules:
- `dh-job` Job which contains the stateful operations happening on the stream and measures the time it takes to go from source to sink.
- `dh-direct-query` Job that queries the state of a given stateful operator using the direct object interface.
- `dh-queries` Job which queries the state with one of 4 complex SQL queries
- `dh-query-benchmark` Job which queries one of 4 complex SQL queries continuously and measures the latencies.The `benchmark-getter-job` is a Jet job which gets the 2PC times of S-Query/Jet. Internally (in S-Query) the time it takes to complete a 2 phase commit is measured and put to a List.
This job gets that list and prints the latencies to the console (in ns). Both phase 1 and phase 2 are individually measured.`generic-query` Is a helper job which can query any table with any type of query with the latest snapshot ID.
`generic-inc-query` Is similar to `generic-query` except it will query incremental snapshots, again with the latest snapshot id.
The `scripts` folder contains several scripts for transferring the jars to a remote machine/multiple remote machines.