Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 17 additions & 3 deletions src/content/docs/management/global-search/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ slug: 'management/global-search'
## What Is Global Search?
Global Search is an enhancement of the existing search functionality within Keboola.
It allows you to search for entities by name across all projects within an organization, even those you don't have direct access to.
The search is conducted only through entity names to ensure confidentiality. If a user searches for an entity within a project they don't have access to,
they will be notified that access must be requested.
The search runs over entity **names** only — and, for tables, also their **column names** — never the data stored inside them. This ensures confidentiality.
If a user searches for an entity within a project they don't have access to, they will be notified that access must be requested.

## Searching
You can perform a search across the entire organization using the global search interface:
Expand All @@ -33,7 +33,7 @@ The currently supported types:

- **Flow**
- **Bucket** (under Storage)
- **Table** (under Storage)
- **Table** (under Storage) — also findable by its **column names**, not just the table name
- **Transformation**
- **Configuration** (under Components)
- **Workspace**
Expand All @@ -43,8 +43,22 @@ The currently supported types:
Once a search is performed, the system will return a list of entities that match the query. The results will include detailed information about the entities found,
such as entity type, name, and source project.

When a table is matched through one of its column names rather than the table name itself, the result row shows which column matched (for example, *Matched column: email*),
so it is clear why the table is relevant to your query.

![Global Search results for the query "email" showing the customers and orders tables, each labeled with the column it matched on](/management/global-search/global-search-matched-column.png)

***Note:** Folders are not displayed in search results because they do not support detailed searches and rely on metadata.*

## Matching
By default, Global Search performs a relevance-based name search:

- **Name matching** — matches entity names (and, for tables, column names). A match on a table name ranks higher than a match on one of its columns.
- **Exact ID** — searching for an entity's exact ID returns that entity directly, which is useful for finding an entity that has since been renamed.
- **Regex mode** *(advanced, opt-in)* — enable the **Regex** toggle in the search bar to run a regular-expression search against entity names. Regex matching applies to the whole name (for example, `report` does not match `monthlyReport` — use `.*report.*`) and is case-insensitive.

![Global Search with the Regex toggle enabled, the pattern "(customers|orders)" matching the customers and orders tables](/management/global-search/global-search-regex.png)

## Sharing and Accessing Results
If a user attempts to search for an entity within a project they don’t have access to, they will be notified that they need to request access to that project.
This ensures that no sensitive or restricted information is exposed.
Expand Down
Loading