mongodb - 使用 mongodb-source-connect 时出现 "The $changeStream stage is only supported on replica sets"错误

标签 mongodb apache-kafka avro apache-kafka-connect

新年快乐

我在这里是因为我在运行 kafka-mongodb-source-connect 时遇到错误
我试图运行 独立连接 连接avro-standalone.properties MongoSourceConnector.properties 以便 Connect 将 mongodb 中写入的数据写入 kafka 主题。

在尝试这一进展时,我遇到了这个错误,我找不到答案,所以我写在这里。

This is what i wanted to do


bin/connect-standalone etc/schema-registry/connect-avro-standalone.properties share/confluent-hub-components/mongodb-kafka-connect-mongodb/etc/MongoSourceConnector.properties

And this is connect-avro-standalone.properties


# Sample configuration for a standalone Kafka Connect worker that uses Avro serialization and
# integrates the the Schema Registry. This sample configuration assumes a local installation of
# Confluent Platform with all services running on their default ports.

# Bootstrap Kafka servers. If multiple servers are specified, they should be comma-separated.
bootstrap.servers=localhost:9092

# The converters specify the format of data in Kafka and how to translate it into Connect data.
# Every Connect user will need to configure these based on the format they want their data in
# when loaded from or stored into Kafka
key.converter=io.confluent.connect.avro.AvroConverter
key.converter.schema.registry.url=http://localhost:8081
value.converter=io.confluent.connect.avro.AvroConverter
value.converter.schema.registry.url=http://localhost:8081

# The internal converter used for offsets and config data is configurable and must be specified,
# but most users will always want to use the built-in default. Offset and config data is never
# visible outside of Connect in this format.
internal.key.converter=org.apache.kafka.connect.json.JsonConverter
internal.value.converter=org.apache.kafka.connect.json.JsonConverter
internal.key.converter.schemas.enable=false
internal.value.converter.schemas.enable=false

# Local storage file for offset data
offset.storage.file.filename=/tmp/connect.offsets

# Confluent Control Center Integration -- uncomment these lines to enable Kafka client interceptors
# that will report audit data that can be displayed and analyzed in Confluent Control Center
# producer.interceptor.classes=io.confluent.monitoring.clients.interceptor.MonitoringProducerInterceptor
# consumer.interceptor.classes=io.confluent.monitoring.clients.interceptor.MonitoringConsumerInterceptor

# These are provided to inform the user about the presence of the REST host and port configs
# Hostname & Port for the REST API to listen on. If this is set, it will bind to the interface used to listen to requests.
#rest.host.name=
#rest.port=8083

# The Hostname & Port that will be given out to other workers to connect to i.e. URLs that are routable from other servers.
#rest.advertised.host.name=
#rest.advertised.port=

# Set to a list of filesystem paths separated by commas (,) to enable class loading isolation for plugins
# (connectors, converters, transformations). The list should consist of top level directories that include
# any combination of:
# a) directories immediately containing jars with plugins and their dependencies
# b) uber-jars with plugins and their dependencies
# c) directories immediately containing the package directory structure of classes of plugins and their dependencies
# Examples:
# plugin.path=/usr/local/share/java,/usr/local/share/kafka/plugins,/opt/connectors,
# Replace the relative path below with an absolute path if you are planning to start Kafka Connect from within a
# directory other than the home directory of Confluent Platform.
plugin.path=share/java,/Users/anton/Downloads/confluent-5.3.2/share/confluent-hub-components

This is MongoSourceConnecor.properties


name=mongo-source
connector.class=com.mongodb.kafka.connect.MongoSourceConnector
tasks.max=1

# Connection and source configuration
connection.uri=mongodb://localhost:27017
database=test
collection=test

This is a main error i got


[2020-01-02 18:55:11,546] ERROR WorkerSourceTask{id=mongo-source-0} Task threw an uncaught and unrecoverable exception (org.apache.kafka.connect.runtime.WorkerTask:179)
com.mongodb.MongoCommandException: Command failed with error 40573 (Location40573): 'The $changeStream stage is only supported on replica sets' on server localhost:27017. The full response is {"ok": 0.0, "errmsg": "The $changeStream stage is only supported on replica sets", "code": 40573, "codeName": "Location40573"}

最佳答案

关于mongodb - 使用 mongodb-source-connect 时出现 "The $changeStream stage is only supported on replica sets"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59571945/

相关文章:

node.js - 如何从 docker 连接到在 aws ec2 主机 (linux) 上运行的 MongoDB

mysql - 哪里用MongoDB,哪里用MySQL?

javascript - 如何删除Mongoose中所有集合的所有文档

apache-kafka - 在 Google Cloud Run 上运行 Kafka Consumers

apache-kafka - 当 Schema Registry 与 Kafka 和 Avro 一起使用时,每个主题有一个或多个模式......?

javascript - 如何在数据库中存储 Mongoose 模式

docker - Kafka Broker for Hyperledger Fabric无法建立连接

docker - 手动安装Kafka连接器

hadoop - 来自AVRO文件的外部Hive表说它没有数据

java - 使用阅读器架构将 Avro 文件转换为 JSON