| name | hops-data-discovery |
| description | Find available data in Hopsworks from feature groups, data sources, free-text search, and files. |
Data Discovery on Hopsworks
Concept
Find available data in a Hopsworks project across four surfaces: feature groups (and views / training data), free-text search, data sources, and files. Prefer the hops CLI for data discovery over writing Python.
Discovery enables feature reuse: a model that reuses an existing feature does not need a new feature pipeline, so search the feature registry first before engineering features from scratch. The commands below browse that registry (definitions, schemas, tags, statistics).
Commands / API
Feature groups (and views / training data)
hops fg list
hops fg info <name> --version 1
hops fg features <name> --version 1
hops fg preview <name> --version 1 --n 10
hops fv list
Free-text search
hops search ls <term>
hops search ls <term> --type feature_group
hops search ls <term> --global
Data sources (external connectors)
hops datasource list
hops datasource info <name>
Files (HopsFS)
hops files list [path]
Related skills
- hops-trino-sql — run SQL against the offline tables you discover.
- hops-fg / hops-fv — create and read these via the Python SDK.
- hops-data-source — mount a new external source as a feature group.