Glean connector reference

Important

This feature is in Beta. Workspace admins can control access to this feature from the Previews page. See Manage Azure Databricks previews.

This page has reference information for the managed Glean connector, including the supported source tables and their destination table schemas.

Supported source tables

The Glean connector supports the following source tables under the default source schema. Both tables are ingested as full-refresh snapshots, so each sync replaces the destination table with the latest data.

Source table Primary key Description Sync mode
insights Company-wide Glean usage insights for search, Assistant, and agents, from the Glean Client API insights endpoint. Ingested as a single row. Full refresh
shortcuts The shortcuts (go links) defined in your Glean deployment, from the Glean Client API listshortcuts endpoint. Ingested as one row per shortcut. Full refresh

Connector options

The Glean connector has no additional configuration options beyond the pipeline settings available for all managed connectors. See Ingest data from Glean.

Destination table schemas

insights

Field Data type
overview_response VARIANT
assistant_response VARIANT
agents_response VARIANT

Note

This table does not support SCD type 2 because it has VARIANT columns.

shortcuts

Field Data type
id BIGINT
input_alias STRING
alias STRING
title STRING
description STRING
destination_url STRING
destination_document_id STRING
intermediate_url STRING
edit_url STRING
view_prefix STRING
url_template STRING
unlisted BOOLEAN
is_external BOOLEAN
create_time STRING
update_time STRING
created_by STRING
updated_by STRING
added_roles STRING
removed_roles STRING
roles STRING
destination_document STRING
permissions STRING

Pagination

The shortcuts table reads from the Glean Client API listshortcuts endpoint and pages through results using the cursor returned in the response meta. The connector continues requesting pages until meta.hasNextPage is false. The insights table reads a single response from the insights endpoint and is not paginated.