{
  "id": "query-data",
  "title": "Query data",
  "url": "https://redis.io/docs/latest/develop/ai/featureform/query-data/",
  "summary": "Inspect the Redis Feature Form catalog and query datasets, training sets, and feature views with the ff CLI.",
  "tags": [],
  "last_updated": "2026-07-30T11:11:54+01:00",
  "page_type": "content",
  "content_hash": "bb6d348f908792d37f9e7df7f0a1f01e80b1aa776eb082f3448997b20093f043",
  "sections": [
    {
      "id": "overview",
      "title": "Overview",
      "role": "overview",
      "text": "After you apply resources, two commands help you inspect the result: `ff catalog` reports where each resource was materialized, and `ff dataframe query` reads sampled rows from datasets, training sets, and feature views."
    },
    {
      "id": "inspect-materialized-locations",
      "title": "Inspect materialized locations",
      "role": "content",
      "text": "The Feature Form catalog records where each resource is physically materialized. It is distinct from systems such as Unity Catalog, Glue, or an Iceberg catalog. Each catalog entry shows the logical resource name, owning provider, status, physical table/path/namespace, and update timestamps."
    },
    {
      "id": "list-catalog-entries",
      "title": "List catalog entries",
      "role": "content",
      "text": "[code example]"
    },
    {
      "id": "inspect-one-resource",
      "title": "Inspect one resource",
      "role": "content",
      "text": "[code example]\n\nUse the catalog together with graph views: graph explains why a resource exists; catalog shows where it's materialized."
    },
    {
      "id": "query-datasets-training-sets-and-feature-views",
      "title": "Query datasets, training sets, and feature views",
      "role": "content",
      "text": "Use `ff dataframe query` to inspect rows from a dataset, training set, or feature view after it's been applied."
    },
    {
      "id": "query-a-dataset",
      "title": "Query a dataset",
      "role": "content",
      "text": "[code example]"
    },
    {
      "id": "supported-kinds",
      "title": "Supported kinds",
      "role": "compatibility",
      "text": "- `dataset`\n- `training_set`\n- `feature_view`"
    },
    {
      "id": "useful-flags",
      "title": "Useful flags",
      "role": "content",
      "text": "- `--columns`\n- `--filter`\n- `--limit`\n- `--output table|json|csv`\n\nThe dataframe command uses the gRPC Flight endpoint. Connection failures usually indicate transport or endpoint mismatches with the Feature Form server."
    }
  ],
  "examples": [
    {
      "id": "list-catalog-entries-ex0",
      "language": "bash",
      "code": "ff catalog list --workspace <workspace-id>",
      "section_id": "list-catalog-entries"
    },
    {
      "id": "inspect-one-resource-ex0",
      "language": "bash",
      "code": "ff catalog get demo_transactions --workspace <workspace-id>",
      "section_id": "inspect-one-resource"
    },
    {
      "id": "query-a-dataset-ex0",
      "language": "bash",
      "code": "ff dataframe query demo_transactions \\\n  --workspace <workspace-id> \\\n  --server localhost:9090 \\\n  --kind dataset \\\n  --limit 10 \\\n  --insecure",
      "section_id": "query-a-dataset"
    }
  ]
}
