Skip to main content

Documentation Index

Fetch the complete documentation index at: https://private-7c7dfe99-page-updates.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Example of settings:
SOURCE(MONGODB(
    host 'localhost'
    port 27017
    user ''
    password ''
    db 'test'
    collection 'dictionary_source'
    options 'ssl=true'
))
Or using a URI:
SOURCE(MONGODB(
    uri 'mongodb://localhost:27017/clickhouse'
    collection 'dictionary_source'
))

Setting fields:
SettingDescription
hostThe MongoDB host.
portThe port on the MongoDB server.
userName of the MongoDB user.
passwordPassword of the MongoDB user.
dbName of the database.
collectionName of the collection.
optionsMongoDB connection string options. Optional.
uriURI for establishing the connection (alternative to individual host/port/db fields).
More information about the engine