Elasticsearch
Connect Elasticsearch to your preprocessing pipeline, and use the Unstructured Ingest CLI or the Unstructured Ingest Python library to batch process all your documents and store structured outputs locally on your filesystem.
You will need:
The Elasticsearch prerequisites.
-
For the Unstructured Platform, only Elastic Cloud instances are supported.
-
For Unstructured Ingest, Elastic Cloud instances and self-manged Elasticsearch instances are supported.
-
For Elastic Cloud, you will need an Elastic Cloud service instance.
-
For self-managed Elasticsearch, you will need a self-managed Elasticsearch instance.
-
You will need the name of the index on the instance. See Create index and Get index.
The Elasticsearch index that you use must have a schema that is compatible with the schema of the documents that Unstructured produces for you. Unstructured cannot provide a schema that is guaranteed to work in all circumstances. This is because these schemas will vary based on your source files’ types; how you want Unstructured to partition, chunk, and generate embeddings; any custom post-processing code that you run; and other factors.
You can adapt the following index schema example for your own needs:
See also:
-
For Elastic Cloud, you will need the Elastic Cloud service instance’s API key. If you are using Unstructured Ingest, you will also need the instance’s Cloud ID. To get these, see your Elasticsearch Service web console.
-
For self-managed Elasticsearch, you will need:
- The self-managed instance’s hostname and port number. See Networking.
- If you’re using basic authentication to the self-managed instance, the user’s name and password.
- If you’re using token-based authentication to the self-managed instance, the bearer token or API key for the instance. See Token-based authentication services and Create API key.
- If you’re using certificate authentication to the self-managed instance, the path to the Certificate Authority (CA) file on the instance, and the certificate fingerprint. See SSL certificate API and Where can I see my Certificate Fingerprint?.
The Elasticsearch connector dependencies:
You might also need to install additional dependencies, depending on your needs. Learn more.
The following environment variables:
ELASTICSEARCH_HOST
- The hostname and port number, defined as<hostname>:<port-number>
and represented by--hosts
(CLI) orhosts
(Python).ELASTICSEARCH_INDEX_NAME
- The name of the search index, represented by--index-name
(CLI) orindex_name
(Python).
If you’re using Elastic Cloud to connect to ElasticSearch:
ELASTIC_CLOUD_ID
- The instance’s Cloud ID, represented by--cloud-id
(CLI) orcloud_id
(Python).ELASTIC_CLOUD_API_KEY
- The corresponding Cloud API key value, represented by--api-key-id
(CLI) orapi_key_id
(Python).
If you’re using basic authentication to the instance:
ELASTICSEARCH_USERNAME
- The user’s name, represented by--username
(CLI) orusername
(Python).ELASTICSEARCH_PASSWORD
- The user’s password, represented by--password
(CLI) orpassword
(Python).
If you’re using token-based authentication to the instance instead:
ELASTICSEARCH_BEARER_TOKEN
- The bearer token’s value, represented by--bearer-auth
(CLI) orbearer_auth
(Python).ELASTIC_CLOUD_API_KEY_ID
- The API key’s value, represented by--api-key
(CLI) orapi_key
(Python).
If you’re using certificates:
ELASTICSEARCH_CA_CERTS
- The path to the Certificate Authority (CA) file, represented by--ca-certs
(CLI) orca_certs
(Python).ELASTICSEARCH_SSL_ASSERT_FINGERPRINT
- The certificate’s fingerprint, represented by--ssl-assert-fingerprint
orssl_assert_fingerprint
(Python).
Now call the Unstructured CLI or Python. The destination connector can be any of the ones supported. This example uses the local destination connector:
This example sends data to Unstructured API services for processing by default. To process files locally instead, see the instructions at the end of this page.
For the Unstructured Ingest CLI and the Unstructured Ingest Python library, you can use the --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 Unstructured API services for processing, specify
--partition-by-api
(CLI) orpartition_by_api=True
(Python).Unstructured API services 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.