-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from griddb/0.6-rc
Update for 0.6
- Loading branch information
Showing
11 changed files
with
157 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
GridDB Kafkaコネクタ | ||
|
||
# 概要 | ||
|
||
GridDB Kafkaコネクタは、[Apache Kafka](https://kafka.apache.org/)とGridDBデータベースとの間でデータのやり取りを可能にする | ||
ソフトウェアです。 | ||
|
||
# 動作環境 | ||
|
||
以下の環境でビルドとサンプルプログラムの実行を確認しています。 | ||
|
||
OS: Ubuntu 24.04(x64) | ||
Java: 17 | ||
Maven: 3.9.5 | ||
Kafka: 2.13-3.7.1 | ||
GridDB server: V5.6 CE, Ubuntu 22.04(x64) | ||
|
||
# ビルド | ||
|
||
```console | ||
$ cd GRIDDB_KAFKA_CONNECTOR_FOLDER | ||
$ mvn clean install | ||
``` | ||
|
||
# 実行 | ||
|
||
ビルド後、GRIDDB_KAFKA_CONNECTOR_FOLDER/target/griddb-kafka-connector-X.X.X.jarファイルをKAFKA_FOLDER/libsフォルダの下に配置してください。 | ||
そして、Kafkaサーバを起動してください。 | ||
|
||
※ X.X.Xはバージョンを意味します。 | ||
|
||
configフォルダ上に、GridDB KafkaコネクタのSink connector、Source connectorを動かすためのコンフィグファイルのサンプルがあります。 | ||
|
||
## サンプルの実行(Sink connector、Source connector) | ||
|
||
["Using Apache Kafka with GridDB database"](docs/GridDB-kafka-sink-connect-and-source-connect-guide.md)をご参照ください。 | ||
|
||
# 機能 | ||
|
||
以下のデータ型が利用可能です。 | ||
- GridDBのSTRING型, BOOL型, BYTE型, SHORT型, INTEGER型, LONG型, FLOAT型, DOUBLE型, TIMESTAMP型, BLOB型 | ||
|
||
以下のデータ型は利用できません。 | ||
- GridDbのGEOMETRY型, 配列型 | ||
|
||
## コミュニティ | ||
* Issues | ||
質問、不具合報告はissue機能をご利用ください。 | ||
* PullRequest | ||
GridDB Contributor License Agreement(CLA_rev1.1.pdf)に同意して頂く必要があります。 | ||
PullRequest機能をご利用の場合はGridDB Contributor License Agreementに同意したものとみなします。 | ||
|
||
# ライセンス | ||
|
||
GridDB KafkaコネクタのライセンスはApache License, version 2.0です。 | ||
|
||
# 商標 | ||
|
||
Apache Kafka, Kafka are either registered trademarks or trademarks of the Apache Software Foundation in the United States and/or other countries. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
sink_task_version=GriddbSinkTask_0.5.0 | ||
sink_connector_version=GriddbSinkConnector_0.5.0 | ||
source_task_version=GriddbSourceTask_0.5.0 | ||
source_connector_version=GriddbSourceConnector_0.5.0 | ||
sink_task_version=GriddbSinkTask_0.6.0 | ||
sink_connector_version=GriddbSinkConnector_0.6.0 | ||
source_task_version=GriddbSourceTask_0.6.0 | ||
source_connector_version=GriddbSourceConnector_0.6.0 |