Inserting streaming data/events into graph database

Hello,

I have a java application that reads streaming event (edges) from a Kafka server and does some analysis.

I need to insert these events into tiger graph database. However, I could not find a java library for tiger graph to do that.

If there is no Java library, can you guys give me some pointer on how to insert a stream of events (edges) into the graph database inside my java application?

Hi,

My understanding you want to insert a list of events as updates to the graph. If this is correct, I would suggest sending http post request to the tigerGraph REST server.

Please follow the section POST /graph/{graph_name} below

https://doc.tigergraph.com/RESTPP-API-User-Guide.html#RESTPPAPIUserGuide-POST/ddl/{graph_name}

A json format is used to post data. Hope this helps.

Mingxi