MongoDB
Batch process all your records to store structured outputs in MongoDB.
You will need:
The MongoDB prerequisites for a MongoDB Atlas deployment:
-
A MongoDB Atlas account. Create an account.
-
A MongoDB Atlas cluster. Create a cluster.
-
The cluster must be reachable from your application environment. Learn how.
-
The cluster must be configured to use your IP address. Learn how.
-
The cluster must have at least one database. Create a database.
-
The database must have at least one user, and that user must have sufficient access to the database. Create a database user. Give the user database access.
-
The database must have at least one collection. Create a collection.
-
The connection string for the cluster. For MongoDB Atlas, this connection string must include the protocol, username, password, host, and cluster name. For example:
To get the connection string in MongoDB Atlas, do the following:
-
Log in to your MongoDB Atlas console.
-
In the sidebar, under Databases, click Clusters.
-
Click on the cluster you want to connect to.
-
Click Connect, or click the Cmd Line Tools tab and then click Connect Instructions.
-
Click Drivers.
-
Under Add your connection string into your application code, copy the connection string. You can then close the Connect dialog in MongoDB Atlas.
Before you use this connection string, be sure to fill in any placeholders in the string, such as your MongoDB Atlas database user’s password value.
-
The MongoDB connector dependencies:
You might also need to install additional dependencies, depending on your needs. Learn more.
For a MongoDB Atlas deployment, the following environment variables:
-
MONGODB_DATABASE
- The name of the database, represented by--database
(CLI) ordatabase
(Python). -
MONGODB_COLLECTION
- The name of the collection in the database, represented by--collection
(CLI) orcollection
(Python). -
MONGODB_URI
- The connection string for the cluster, represented by--uri
(CLI) oruri
(Python).
For a local MongoDB server, the following environment variables:
-
MONGODB_HOST
- The host for the local MongoDB server, represented by--host
(CLI) orhost
(Python). -
MONGODB_PORT
- The port for the local MongoDB server, represented by--port
(CLI) orport
(Python).
These environment variables:
UNSTRUCTURED_API_KEY
- Your Unstructured API key value.UNSTRUCTURED_API_URL
- Your Unstructured API URL.
Now call the Unstructured Ingest CLI or the Unstructured Ingest Python library. The source connector can be any of the ones supported. This example uses the local source connector: