Skip to main content
GuideServerConfigure and deploy Tabsdata servers on your machine.TutorialsConfigure data integration workflows within a running Tabsdata server.Advanced TutorialsBuild end-to-end workflows between two specific systems.API ReferenceCLI ReferenceRelease Notes
Version: 2.0.0

MongoDBDestConn

class
class MongoDBDestConn(
uri: UriSpec,
credentials: CredentialsSpec,
conn_cfg: CfgSpec | None = None,
)

Bases: Conn

Categories: destination

MongoDB connection used by MongoDBDest.

Registered on a collection; the runtime resolves it and hands it to the plugin at run time.

Parameters

parameter

MongoDB connection URI WITHOUT credentials, e.g. mongodb://host:27017/?.... Must start with mongodb:// or mongodb+srv://. The plugin splices in the user / password from credentials at write time. Accepts a plain string or a Secret.

parameter

UserPassword for the connection.

parameter
conn_cfgCfgSpec | None (dict | None)

Optional connector config; pymongo.* keys are forwarded to pymongo.MongoClient (see CfgSpec).