hazelcast-jet
hazelcast-jet copied to clipboard
c++ client api for jet
Hi, Does a c++ client API which can access a jet member exist at the moment?
I have a very performance centric project and the data insertion stage has to be written in c++. Since I think Jet is a more streaming data performance centric implementation over Hazelcast IMDG, I want to use Jet but could not find a c++ client implementation sample.
Hi,
Jet cluster has multiple APIs. The Pipeline API and DAG API (used to define and execute streaming jobs) can be used just via Java client.
You can use the C++ client for the data storage APIs. The data insertion stage can use C++ client to push the data to Jet cluster. The streaming job picks it from the storage.
See this demo that combines C++ client to exchange data with Java API to run the processing.