This page was recently updated. What do you think about it? Let us know!.
- 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 allow IP address. Learn how.
To get Unstructured’s IP address ranges, go to
https://assets.p6m.u10d.net/publicitems/ip-prefixes.json
and allow all of the
ip_prefix
fields’ values that are listed.These IP address ranges are subject to change. You can always find the latest ones in the preceding file. - 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.
For the destination connector, Unstructured recommends that all documents in the target collection have a field named
record_id
with aString
data type. Unstructured can use this field to do intelligent document overwrites. Without this field, duplicate documents might be written to the collection or, in some cases, the operation could fail altogether. -
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.
CLI, Python
-
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).
-
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).
--partition-by-api
option (CLI) or partition_by_api
(Python) parameter to specify where files are processed:
-
To do local file processing, omit
--partition-by-api
(CLI) orpartition_by_api
(Python), or explicitly specifypartition_by_api=False
(Python). Local file processing does not use an Unstructured API key or API URL, so you can also omit the following, if they appear:--api-key $UNSTRUCTURED_API_KEY
(CLI) orapi_key=os.getenv("UNSTRUCTURED_API_KEY")
(Python)--partition-endpoint $UNSTRUCTURED_API_URL
(CLI) orpartition_endpoint=os.getenv("UNSTRUCTURED_API_URL")
(Python)- The environment variables
UNSTRUCTURED_API_KEY
andUNSTRUCTURED_API_URL
-
To send files to the Unstructured Partition Endpoint for processing, specify
--partition-by-api
(CLI) orpartition_by_api=True
(Python). Unstructured also requires an Unstructured API key and API URL, by adding the following:--api-key $UNSTRUCTURED_API_KEY
(CLI) orapi_key=os.getenv("UNSTRUCTURED_API_KEY")
(Python)--partition-endpoint $UNSTRUCTURED_API_URL
(CLI) orpartition_endpoint=os.getenv("UNSTRUCTURED_API_URL")
(Python)- The environment variables
UNSTRUCTURED_API_KEY
andUNSTRUCTURED_API_URL
, representing your API key and API URL, respectively.
You must specify the API URL only if you are not using the default API URL for Unstructured Ingest, for example, if you are using a version of the Unstructured API that is hosted on your own compute infrastructure.The default API URL for Unstructured Ingest ishttps://api.unstructuredapp.io/general/v0/general
, which is the API URL for the Unstructured Partition Endpoint.If you do not have an API key, get one now.If the Unstructured API is hosted on your own compute infrastructure, the process for generating Unstructured API keys, and the Unstructured API URL that you use, are different. For details, contact Unstructured Sales at sales@unstructured.io.