Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 948 Bytes

File metadata and controls

30 lines (23 loc) · 948 Bytes

MongoDB Extension

The MongoDB data transfer extension provides source and sink capabilities for reading from and writing to a MongoDB database.

Note: When specifying the MongoDB extension as the Source or Sink property in configuration, utilize the name MongoDB.

Settings

Source and sink settings require both ConnectionString and DatabaseName parameters. The source takes an optional Collection parameter (if this parameter is not set, it will read from all collections). The sink requires the Collection parameter and will insert all records received from a source into that collection, as well as an optional BatchSize parameter (default value is 100) to batch the writes into the collection.

Source

{
    "ConnectionString": "",
    "DatabaseName: "",
    "Collection": ""
}

Sink

{
    "ConnectionString": "",
    "DatabaseName: "",
    "Collection": "",
    "BatchSize: 100
}