Skip to main content

MongoDB

A MongoDB Source in Flowlyze reads data from MongoDB using a connection string and configurable queries.

Settings

FieldDescription
ConnectionStringFull connection string with protocol and authentication, e.g. mongodb+srv://user:pwd@host:27017/?authSource=admin.
DatabaseName of the database where the data lives.
QueryTypefind — simple query using a BsonDocument filter (e.g. {"customer_id":234}). aggregate — an aggregation pipeline with read-only stages only.
QueryThe filter for find, or the pipeline for aggregate.
CollectionCollection to query. Used only in find mode.
MaxRowsMaximum number of rows (documents) to read. The value cannot exceed 100,000.