debezium

bash: C:/Program: No such file or directory

左心房为你撑大大i 提交于 2020-05-17 06:33:04
问题 I am new to Docker, Debezium, Bash, and Kafka. I am attempting to run the Debezium tutorial/example for MSSQL Server on Windows 10 here: https://github.com/debezium/debezium-examples/blob/master/tutorial/README.md#using-sql-server I am able to start the topology, per step one. However, when I go to step two and execute the following command: cat debezium-sqlserver-init/inventory.sql | docker exec -i tutorial_sqlserver_1 bash -c '/opt/mssql-tools/bin/sqlcmd -U sa -P $SA_PASSWORD' I get the

Debezium How do I correctly register the SqlServer connector with Kafka Connect - connection refused

僤鯓⒐⒋嵵緔 提交于 2020-05-09 08:04:31
问题 Question: How do I correctly register the SqlServer connector with Kafka Connect to connect to a standalone SQL Server Instance? Note: I am NOT running SQL Server in Docker. Error: Error: Caused by: com.microsoft.sqlserver.jdbc.SQLServerException: The TCP/IP connection to the host 127.0.0.1, port 1433 has failed. Error: "Connection refused (Connection refused). Verify the connection properties. Make sure that an instance of SQL Server is running on the host and accepting TCP/IP connections at

Debezium: Unable to setup watcher on Kafka-Connect Docker container. Error while fetching metadata with correlation id 2 … LEADER_NOT_AVAILABLE

橙三吉。 提交于 2020-04-11 18:01:08
问题 The bounty expires in 6 days . Answers to this question are eligible for a +250 reputation bounty. J Weezy is looking for an answer from a reputable source . Question: How do I setup watcher to watch a Kafka-Connect stream in real-time as changes are made to the database? I am getting Error while fetching metadata with correlation id 2 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} . What is causing the problem and how do I fix it? Context: This question is related to: Debezium How do I

Debezium: Unable to setup watcher on Kafka-Connect Docker container. Error while fetching metadata with correlation id 2 … LEADER_NOT_AVAILABLE

人走茶凉 提交于 2020-04-11 18:00:16
问题 The bounty expires in 6 days . Answers to this question are eligible for a +250 reputation bounty. J Weezy is looking for an answer from a reputable source . Question: How do I setup watcher to watch a Kafka-Connect stream in real-time as changes are made to the database? I am getting Error while fetching metadata with correlation id 2 : {dbhistory.Test.Posts=LEADER_NOT_AVAILABLE} . What is causing the problem and how do I fix it? Context: This question is related to: Debezium How do I

Mysql debezium connector for rds in production caused deadlocks

北城以北 提交于 2020-03-05 04:12:09
问题 We are creating a data pipeline from Mysql in RDS to elastic search for creating search indexes, and for this using debezium cdc with its mysql source and elastic sink connector. Now as the mysql is in rds we have to give the mysql user LOCK TABLE permission for two tables we wanted cdc, as mentioned in docs. We also have various other mysql users performing transactions which may require any of the two tables. As soon as we connected the mysql connector to our production database there was a

Mysql debezium connector for rds in production caused deadlocks

被刻印的时光 ゝ 提交于 2020-03-05 04:12:09
问题 We are creating a data pipeline from Mysql in RDS to elastic search for creating search indexes, and for this using debezium cdc with its mysql source and elastic sink connector. Now as the mysql is in rds we have to give the mysql user LOCK TABLE permission for two tables we wanted cdc, as mentioned in docs. We also have various other mysql users performing transactions which may require any of the two tables. As soon as we connected the mysql connector to our production database there was a

Debezium Connector for RDS Aurora

谁都会走 提交于 2020-01-24 20:57:30
问题 I'm trying to use debezium with rds/aurora/ and I'm thinking which connector to use MySQL connector or there is another connector for Aurora? Also, how can i connect debezium connector(localhost) to remote aws aurora db? Also, is someone using debezium with aurora to share some info. Also, how can i configure debezium to write into different kafka topics the different tables which we are monitoring? Regards 回答1: While creating AWS Aurora instance you must have chosen between Amazon Aurora

Kafka-MongoDB Debezium Connector : distributed mode

a 夏天 提交于 2020-01-16 08:44:43
问题 I am working on debezium mongodb source connector. Can I run connector in local machine in distributed mode by giving kafka bootstrap server address as remote machine (deployed in Kubernetes) and remote MongoDB url? I tried this and I see connector starts successfully, no errors, just few warnings but no data is flowing from mongodb. Using below command to run connector ./bin/connect-distributed ./etc/schema-registry/connect-avro-distributed.properties ./etc/kafka/connect-mongodb-source

Debezium mongodb connector 0.3.6 automatically stops tailing mongodb , until restarted at-least once

大城市里の小女人 提交于 2020-01-15 04:00:27
问题 I am using debezium mongodb connector 0.3.6 , running inside a docker container. I have been monitoring kafka-connect for some time ,and found that the connector stops tailing mongodb and sending change events to kafka brokers automatically. Upon investigation , I found that sometimes, after some time of inactivity, it's mongo connection is refused, and upon retrial, it connects successfully ,and sends the large number of records that it has not sent during inactive period. But this is not

Debezium from MySQL to Postgres with JDBC Sink - change of transforms.route.replacement gives a SinkRecordField error

最后都变了- 提交于 2020-01-06 08:05:23
问题 I am using this debezium-examples source.json { "name": "inventory-connector", "config": { "connector.class": "io.debezium.connector.mysql.MySqlConnector", "tasks.max": "1", "database.hostname": "mysql", "database.port": "3306", "database.user": "debezium", "database.password": "dbz", "database.server.id": "184054", "database.server.name": "dbserver1", "database.whitelist": "inventory", "database.history.kafka.bootstrap.servers": "kafka:9092", "database.history.kafka.topic": "schema-changes