MongoDB
A MongoDB Source in Flowlyze reads data from MongoDB using a connection string and configurable queries.
Settings
| Field | Description |
|---|---|
| ConnectionString | Full connection string with protocol and authentication, e.g. mongodb+srv://user:pwd@host:27017/?authSource=admin. |
| Database | Name of the database where the data lives. |
| QueryType | find — simple query using a BsonDocument filter (e.g. {"customer_id":234}). aggregate — an aggregation pipeline with read-only stages only. |
| Query | The filter for find, or the pipeline for aggregate. |
| Collection | Collection to query. Used only in find mode. |
| MaxRows | Maximum number of rows (documents) to read. The value cannot exceed 100,000. |