0

Can someone tell me what is the purpose of transformation modules when it comes to ingesting data from Kafka to Memgraph?

KWriter
  • 1,024
  • 4
  • 22
  • You have two separate questions in your post. Can you create a new question about the database scheme since it is connected to the transformation modules? – KWriter Oct 06 '22 at 09:11
  • I've removed that question and I will create a new question. – KWriter Oct 06 '22 at 12:34

1 Answers1

0

Transformation module is a defined program that user can write. It receives data from Kafka and returns processed data in the form of Cypher queries. Common formats received from Kafka are JSON, Avro and Protobuf. You can create transformation modules in Python or C programing languages.

Memgraph has the whole documentation about transformation modules. Be sure to read it for specific details.

KWriter
  • 1,024
  • 4
  • 22