How to write a Java adapter for Oracle GoldenGate?

According to this article [1], Oracle GoldenGate for Big Data

... also includes Oracle GoldenGate for Java, which allows customers to easily deliver additional large data systems and support the specific use cases that their environment requires.

What is the function signature for these plugins?

[1] http://www.oracle.com/us/products/middleware/data-integration/goldengate-for-big-data-ds-2415102.pdf

+5
source share
1 answer

If you want to replicate in Java, use one of the two GoldenGate modules:

  • GoldenGate for BigData - ready to use adapters for replication directly to HDFS, HBase, Flume, Kafka, Cassandra, MongoDB, JDBC. Documentation Details

  • GoldenGate for Application Adapters - allows you to write directly to a flat file and JMS. Documentation Details

The documentation also has examples .

0
source

Source: https://habr.com/ru/post/1245672/


All Articles