Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hden/debezium-embedded-jdbc
Debezium DatabaseHistory and OffsetBackingStore implementations backed by JDBC.
https://github.com/hden/debezium-embedded-jdbc
Last synced: 3 months ago
JSON representation
Debezium DatabaseHistory and OffsetBackingStore implementations backed by JDBC.
- Host: GitHub
- URL: https://github.com/hden/debezium-embedded-jdbc
- Owner: hden
- License: apache-2.0
- Created: 2019-04-13T08:38:47.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-02T10:51:49.000Z (4 months ago)
- Last Synced: 2024-10-03T12:16:40.198Z (4 months ago)
- Language: Clojure
- Homepage:
- Size: 245 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# debezium-embedded-jdbc [![CircleCI](https://circleci.com/gh/hden/debezium-embedded-jdbc/tree/master.svg?style=svg)](https://circleci.com/gh/hden/debezium-embedded-jdbc/tree/master) [![codecov](https://codecov.io/gh/hden/debezium-embedded-jdbc/branch/master/graph/badge.svg)](https://codecov.io/gh/hden/debezium-embedded-jdbc)
Debezium DatabaseHistory and OffsetBackingStore implementations backed by JDBC.
## Usage
[![Clojars Project](https://img.shields.io/clojars/v/hden/debezium-embedded-jdbc.svg)](https://clojars.org/hden/debezium-embedded-jdbc)
### JDBCOffsetBackingStore
```connector.properties
offset.storage=io.debezium.contrib.jdbc.JDBCOffsetBackingStore
offset.storage.jdbc.url=jdbc:sqlite:
offset.storage.jdbc.table=offsets
offset.storage.jdbc.instance.id=debezium
```### JDBCDatabaseHistory
```connector.properties
database.history=io.debezium.contrib.jdbc.JDBCDatabaseHistory
database.history.jdbc.url=jdbc:sqlite:
database.history.jdbc.table=schema
database.history.jdbc.instance.id=debezium
```## License
Apache 2.0