Important
Helios features are now enabled during weekly update windows and are no longer directly tied to SingleStore engine releases. Refer to the release notes to view the latest features available in your Helios cluster.
createLink
On this page
Creates a named connection link to a MongoDB® instance for use in data ingest.
Syntax
db.runCommand({createLink: <string>,uri: <string>,})
|
Option |
Type |
Description |
|---|---|---|
|
|
String |
Specifies the name of the link. |
|
|
String |
The URI for the remote MongoDB® instance, in |
Example
The following example defines a link named lnkExample:
db.runCommand({createLink: "lnkExample",uri: "mongodb://admin:pa55w0rd@svchost:27017",});
Last modified: