MongoDB
MongoDB source connector
Descriptionâ
Read data from MongoDB.
Key featuresâ
Optionsâ
name | type | required | default value |
---|---|---|---|
uri | string | yes | - |
database | string | yes | - |
collection | string | yes | - |
schema | object | yes | - |
common-options | config | no | - |
uri [string]â
MongoDB uri
database [string]â
MongoDB database
collection [string]â
MongoDB collection
schema [object]â
fields [Config]â
Because MongoDB
does not have the concept of schema
, when engine reads MongoDB
, it will sample MongoDB
data and infer the schema
. In fact, this process will be slow and may be inaccurate. This parameter can be manually specified. Avoid these problems.
such as:
schema {
fields {
id = int
key_aa = string
key_bb = string
}
}
common optionsâ
Source Plugin common parameters, refer to Source Plugin for details
Exampleâ
mongodb {
uri = "mongodb://username:password@127.0.0.1:27017/mypost?retryWrites=true&writeConcern=majority"
database = "mydatabase"
collection = "mycollection"
schema {
fields {
id = int
key_aa = string
key_bb = string
}
}
result_table_name = "mongodb_result_table"
}
Changelogâ
2.2.0-beta 2022-09-26â
- Add MongoDB Source Connector
2.3.0 2022-12-30â
- common-options is not a required option