Ronny H d5a6f4b82c
Docs updates (#2458)
To test:
> cd docs && make html

Change logs:
* Updates the best practice for table extraction to use
`skip_infer_table_types` instead of `pdf_infer_table_structure`.
* Fixed CSS issue with a duplicate search box.
* Fixed RST warning message
* Fixed typo on the Intro page.
2024-01-25 20:31:28 +00:00

33 lines
1.2 KiB
ReStructuredText

Databricks Volumes
==================
Batch process all your records using ``unstructured-ingest`` to store structured outputs locally on your filesystem and upload those local files to a Databricks Volume.
First you'll need to install the Databricks Volume dependencies as shown here.
.. code:: shell
pip install "unstructured[databricks-volumes]"
Run Locally
-----------
The upstream connector can be any of the ones supported, but for convenience here, showing a sample command using the
upstream local connector.
.. tabs::
.. tab:: Shell
.. literalinclude:: ./code/bash/databricks_volumes.sh
:language: bash
.. tab:: Python
.. literalinclude:: ./code/python/databricks_volumes.py
:language: python
For a full list of the options the CLI accepts check ``unstructured-ingest <upstream connector> databricks-volumes --help``.
NOTE: Keep in mind that you will need to have all the appropriate extras and dependencies for the file types of the documents contained in your data storage platform if you're running this locally. You can find more information about this in the `installation guide <https://unstructured-io.github.io/unstructured/installing.html>`_.