All Projects → bersler → OpenLogReplicator

bersler / OpenLogReplicator

Licence: GPL-3.0 License
Open Source Oracle database CDC written purely in C++. Reads transactions directly from database redo log files and streams in JSON or Protobuf format to: Kafka, RocketMQ, flat file, network stream (plain TCP/IP or ZeroMQ)

Programming Languages

C++
36643 projects - #6 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to OpenLogReplicator

Debezium
Change data capture for a variety of databases. Please log issues at https://issues.redhat.com/browse/DBZ.
Stars: ✭ 5,937 (+5200.89%)
Mutual labels:  kafka-producer, cdc, change-data-capture
oracdc
Oracle database CDC (Change Data Capture)
Stars: ✭ 51 (-54.46%)
Mutual labels:  cdc, oracle-database, change-data-capture
scylla-cdc-source-connector
A Kafka source connector capturing Scylla CDC changes
Stars: ✭ 19 (-83.04%)
Mutual labels:  kafka-producer, cdc, change-data-capture
debezium-incubator
Previously used repository for new Debezium modules and connectors in incubation phase (archived)
Stars: ✭ 89 (-20.54%)
Mutual labels:  cdc, change-data-capture
Realtime
Listen to your to PostgreSQL database in realtime via websockets. Built with Elixir.
Stars: ✭ 4,278 (+3719.64%)
Mutual labels:  cdc, change-data-capture
funboost
pip install funboost,python全功能分布式函数调度框架,。支持python所有类型的并发模式和全球一切知名消息队列中间件,python函数加速器,框架包罗万象,一统编程思维,兼容50% python编程业务场景,适用范围广。只需要一行代码即可分布式执行python一切函数。旧名字是function_scheduling_distributed_framework
Stars: ✭ 351 (+213.39%)
Mutual labels:  zeromq, rocketmq
azure-sql-db-change-stream-debezium
SQL Server Change Stream sample using Debezium
Stars: ✭ 74 (-33.93%)
Mutual labels:  cdc, change-data-capture
kafka-connect-http
Kafka Connect connector that enables Change Data Capture from JSON/HTTP APIs into Kafka.
Stars: ✭ 81 (-27.68%)
Mutual labels:  cdc, change-data-capture
pgcapture
A scalable Netflix DBLog implementation for PostgreSQL
Stars: ✭ 94 (-16.07%)
Mutual labels:  cdc, change-data-capture
southpaw
⚾ Streaming left joins in Kafka for change data capture
Stars: ✭ 48 (-57.14%)
Mutual labels:  cdc, change-data-capture
MySqlCdc
MySQL/MariaDB binlog replication client for .NET
Stars: ✭ 71 (-36.61%)
Mutual labels:  cdc, change-data-capture
distmq
Distributed Message Queue based on Raft
Stars: ✭ 32 (-71.43%)
Mutual labels:  zeromq, rocketmq
Real-time-Data-Warehouse
Real-time Data Warehouse with Apache Flink & Apache Kafka & Apache Hudi
Stars: ✭ 52 (-53.57%)
Mutual labels:  cdc, change-data-capture
mysql-cluster
Scalable MySQL Cluster with ProxySQL Load Balancer and Orchestrator
Stars: ✭ 42 (-62.5%)
Mutual labels:  database-replication
SpringBootIntegration
SpringBoot集成学习项目 SpringBoot Integration
Stars: ✭ 20 (-82.14%)
Mutual labels:  rocketmq
ecars
Sample application for Lightning Web Components and Salesforce Platform runtime and compute capabilities. Part of the sample gallery. Electric car manufacturer use case. Get inspired and learn best practices.
Stars: ✭ 132 (+17.86%)
Mutual labels:  change-data-capture
redis-microservices-demo
Microservice application with various Redis use-cases with RediSearch, RedisGraph and Streams. The data are synchronize between MySQL and Redis using Debezium as a CDC engine
Stars: ✭ 48 (-57.14%)
Mutual labels:  cdc
utPLSQL-SQLDeveloper
Extension for running unit tests straight from SQL Developer
Stars: ✭ 45 (-59.82%)
Mutual labels:  oracle-database
spring-boot-starter-rocketmq
Starter for messaging using Apache RocketMQ
Stars: ✭ 98 (-12.5%)
Mutual labels:  rocketmq
Westworld-Style-Behavior-Pad-Interface
UPDATE 20210705: Adding ZeroMQ functions in to allow full-duplex comms with deep parts of the hosts' cognitive processes, and expose speech recognition background processes, visual processes, etc. ORIGINAL DESCRIPTION >>>This is a working version of the iconic Behavior Pad "Rose Graph" Interface that the Westworld Techs use to set Host Behaviora…
Stars: ✭ 25 (-77.68%)
Mutual labels:  zeromq

OpenLogReplicator

Open Source Oracle database CDC written purely in C++. Reads transactions directly from database redo log files and streams in JSON or Protobuf format to:

  • Kafka
  • RocketMQ
  • flat file
  • network stream (plain TCP/IP or ZeroMQ)

Please mind that the code has 2 branches:

  1. master - branch with stable code - updated monthly
  2. nightly - unstable current branch with daily code updates

Updating Protobuf code:

  1. cd proto
  2. export PATH=/opt/protobuf/bin:$PATH
  3. protoc OraProtoBuf.proto --cpp_out=.
  4. mv OraProtoBuf.pb.cc ../src/OraProtoBuf.pb.cpp
  5. mv OraProtoBuf.pb.h ../src/OraProtoBuf.pb.h

Compilation for Debug:

  1. git clone https://github.com/bersler/OpenLogReplicator
  2. cd OpenLogReplicator
  3. autoreconf -f -i
  4. ./configure CFLAGS='-fsanitize=address' CXXFLAGS='-g -O0 -fsanitize=address' LDFLAGS='-fsanitize=address' --with-rapidjson=/opt/rapidjson --with-rdkafka=/opt/librdkafka --with-instantclient=/opt/instantclient_19_14 --with-protobuf=/opt/protobuf --with-zeromq=/usr --with-rocketmq=/opt/rocketmq-client-cpp-2.2.0
  5. make

Compilation for Release:

  1. git clone https://github.com/bersler/OpenLogReplicator
  2. cd OpenLogReplicator
  3. autoreconf -f -i
  4. ./configure CXXFLAGS='-O3' --with-rapidjson=/opt/rapidjson --with-rdkafka=/opt/librdkafka --with-instantclient=/opt/instantclient_19_14 --with-protobuf=/opt/protobuf --with-zeromq=/usr --with-rocketmq=/opt/rocketmq-client-cpp-2.2.0
  5. make

Step 3 is optional and required if you downloaded the files from GIT and timestamps of files may be changed.

Running:

  1. cp config/OpenLogReplicator.example.json config/OpenLogReplicator.json
  2. vi config/OpenLogReplicator.json
  3. export LD_LIBRARY_PATH=/opt/instantclient_19_14:/opt/protobuf/lib:/opt/librdkafka/lib:/opt/rocketmq-client-cpp-2.2.0/bin
  4. ./src/OpenLogReplicator

The documentation for the OpenLogReplicator program can be found on https://www.bersler.com/openlogreplicator/

Please do not create issues claiming that the documentation is missing. It is still being created. This is not speed up the process, but will it will down it down. Instead of writing documenation and finishing the code the time is spent on answering questions.

The currently available chapters are:

  1. Getting started: https://www.bersler.com/openlogreplicator/getting-started/
  2. Installation: https://www.bersler.com/openlogreplicator/installation/
  3. Configuration: https://www.bersler.com/openlogreplicator/configuration/
  4. Tutorials: https://www.bersler.com/openlogreplicator/tutorials/
  5. FAQ: https://www.bersler.com/openlogreplicator/faq/
  6. Support: https://www.bersler.com/openlogreplicator/support/
  7. Contribution: https://www.bersler.com/openlogreplicator/contribution/

I have also opened a gitter chat at https://gitter.im/bersler/OpenLogReplicator

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].