This page was recently updated. What do you think about it? Let us know!.

Batch process all your records to store structured outputs in Snowflake.

The requirements are as follows.

  • A Snowflake account and its identifier.

  • The Snowflake username and its password in the account.

  • The Snowflake hostname and its port number in the account.

  • The name of the Snowflake database in the account.

  • The name of the schema in the database.

  • The name of the table in the schema.

    Snowflake requires the target table to have a defined schema before Unstructured can write to the table. The recommended table schema for Unstructured is as follows:

    SQL
    CREATE TABLE ELEMENTS (
      ID VARCHAR(36) NOT NULL DEFAULT UUID_STRING(),
      RECORD_ID VARCHAR,
      ELEMENT_ID VARCHAR,
      TEXT VARCHAR,
      EMBEDDINGS ARRAY,
      TYPE VARCHAR,
      SYSTEM VARCHAR,
      LAYOUT_WIDTH NUMBER,
      LAYOUT_HEIGHT NUMBER,
      POINTS VARCHAR,
      URL VARCHAR,
      VERSION VARCHAR,
      DATE_CREATED TIMESTAMP_TZ,
      DATE_MODIFIED TIMESTAMP_TZ,
      DATE_PROCESSED TIMESTAMP_TZ,
      PERMISSIONS_DATA VARCHAR,
      RECORD_LOCATOR VARCHAR,
      CATEGORY_DEPTH NUMBER,
      PARENT_ID VARCHAR,
      ATTACHED_FILENAME VARCHAR,
      FILETYPE VARCHAR,
      LAST_MODIFIED TIMESTAMP_TZ,
      FILE_DIRECTORY VARCHAR,
      FILENAME VARCHAR,
      LANGUAGES ARRAY,
      PAGE_NUMBER VARCHAR,
      LINKS VARCHAR,
      PAGE_NAME VARCHAR,
      LINK_URLS ARRAY,
      LINK_TEXTS ARRAY,
      SENT_FROM ARRAY,
      SENT_TO ARRAY,
      SUBJECT VARCHAR,
      SECTION VARCHAR,
      HEADER_FOOTER_TYPE VARCHAR,
      EMPHASIZED_TEXT_CONTENTS ARRAY,
      EMPHASIZED_TEXT_TAGS ARRAY,
      TEXT_AS_HTML VARCHAR,
      REGEX_METADATA VARCHAR,
      DETECTION_CLASS_PROB NUMBER,
      PRIMARY KEY (ID)
    );
    

The Snowflake connector dependencies:

CLI, Python
pip install "unstructured-ingest[snowflake]"

You might also need to install additional dependencies, depending on your needs. Learn more.

These environment variables:

  • SNOWFLAKE_ACCOUNT - The ID of the Snowflake account, represented by --account (CLI) or account (Python).
  • SNOWFLAKE_USER - The name of the Snowflake user, represented by --user (CLI) or user (Python).
  • SNOWFLAKE_PASSWORD - The user’s password, represented by --password (CLI) or password (Python).
  • SNOWFLAKE_HOST - The hostname for the Snowflake account, represented by --host (CLI) or host (Python).
  • SNOWFLAKE_PORT - The host’s port number, represented by --port (CLI) or port (Python).
  • SNOWFLAKE_DATABASE - The name of the Snowflake database, represented by --database (CLI) or database (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: