{
  "id": "register-providers",
  "title": "Register providers",
  "url": "https://redis.io/docs/latest/develop/ai/featureform/register-providers/",
  "summary": "Register storage, compute, and catalog providers in a Redis Feature Form workspace, and configure secret backends.",
  "tags": [],
  "last_updated": "2026-07-30T11:11:54+01:00",
  "page_type": "content",
  "content_hash": "1ce083971aff79448723e611de0535fcdec5a28ffdbeee7ae1c89f37e045dae5",
  "sections": [
    {
      "id": "overview",
      "title": "Overview",
      "role": "overview",
      "text": "Register the providers and secret backends Redis Feature Form needs before you author features or transformations. Providers connect the workspace to external systems for storage, compute, serving, or catalog-backed access, and definitions files reference them by name."
    },
    {
      "id": "prerequisites",
      "title": "Prerequisites",
      "role": "content",
      "text": "Before you register providers, make sure you have:\n\n- A workspace. See [Manage workspaces](https://redis.io/docs/latest/develop/ai/featureform/manage-workspace) for the workspace lifecycle commands.\n- The `ff` CLI installed and able to reach the Feature Form server.\n  - The CLI connects to `localhost:9090` by default; override with `--server <host:port>` or by setting `ServerAddress` in `~/.featureform/config.yaml`.\n- A secret provider registered to back any credentials your provider commands reference. Each workspace ships with a default `env` secret provider that reads from Feature Form server's process environment. To use Vault, Kubernetes secrets, or AWS Secrets Manager instead, register that backend before you register providers that reference it. See [Configure secret providers](#configure-secret-providers).\n\nThe examples on this page use placeholder names like `demo-workspace`, `demo_postgres`, and `spark-main`. Substitute the names you want to use in your own deployment.\n\n\n**Best practice:** keep the default health check on. Registration surfaces connectivity and secret-resolution problems at the point you can fix them, rather than as silent failures during materialization or serving. Reserve `--skip-health-check` for cases where you've already validated the provider through another channel."
    },
    {
      "id": "configure-secret-providers",
      "title": "Configure secret providers",
      "role": "configuration",
      "text": "Each workspace starts with a default `env` secret provider that resolves references such as `env:PG_PASSWORD` from Feature Form server's process environment. Production deployments typically move off `env` because it mixes secrets with general configuration, offers no rotation or audit, and surfaces values in process listings. Vault, Kubernetes secrets, and AWS Secrets Manager each address those gaps."
    },
    {
      "id": "check-the-built-in-env-secret-provider",
      "title": "Check the built-in `env` secret provider",
      "role": "content",
      "text": "[code example]"
    },
    {
      "id": "register-another-secret-provider",
      "title": "Register another secret provider",
      "role": "content",
      "text": "Each backend has different preconditions on the Feature Form server. Pick the one that matches how your server is deployed.\n\n**Environment secret provider** — best for local development and bootstrap. The server reads variables from its own process environment. Use a prefix (`--env-prefix FF_`) to avoid collisions with other system variables.\n\n[code example]\n\n**Vault** — best for shared deployments that need rotation and audit. The server must be able to authenticate to Vault: export `VAULT_TOKEN` for token auth, or configure Kubernetes auth (when the server runs in-cluster) or AppRole. The backend uses the KV v2 secrets engine.\n\n[code example]\n\n**Kubernetes secrets** — best when the server runs inside a Kubernetes cluster and provider credentials are already managed as `Secret` resources. The server's service account needs `get` and `list` permissions on `secrets` in the target namespace.\n\n[code example]\n\n**AWS Secrets Manager** — best when provider credentials already live in AWS. The server authenticates using the standard AWS credentials chain (IAM role on the host, instance profile, or `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` in the server environment).\n\n[code example]"
    },
    {
      "id": "update-or-delete-a-secret-provider",
      "title": "Update or delete a secret provider",
      "role": "content",
      "text": "[code example]"
    },
    {
      "id": "register-postgres-as-an-offline-store-and-compute-provider",
      "title": "Register Postgres as an offline store and compute provider",
      "role": "content",
      "text": "Register Postgres when your analytical data lives in Postgres and you want Feature Form to manage feature engineering against it. As an `offline-store`, Postgres holds dataset candidates for feature engineering and the Feature Form-managed datasets that result, such as transformed datasets, training sets, and feature views. As a `compute` provider, Postgres runs the workloads Feature Form orchestrates, such as SQL transformations on primary datasets.\n\nPoint `--pg-host` at the Postgres instance you want Feature Form to use — typically a managed instance such as Amazon RDS or Aurora in production. To use the Postgres service bundled with the Helm chart for local or non-production work, set `--pg-host` to `<release-name>-featureform-provider-postgres`, where `<release-name>` is your Helm release name.\n\n[code example]\n\nSee the [PostgreSQL documentation](https://www.postgresql.org/docs/) for connection and SSL options."
    },
    {
      "id": "register-redis-as-an-online-store",
      "title": "Register Redis as an online store",
      "role": "content",
      "text": "Register Redis when Redis is your low-latency inference database for serving features. As an `online-store`, Redis holds the latest materialized feature values and serves them to applications at inference time.\n\nPoint `--redis-host` at the Redis deployment you want Feature Form to use — typically a managed deployment such as Redis Cloud in production. To use the Redis service bundled with the Helm chart for local or non-production work, set `--redis-host` to `<release-name>-featureform-redis`, where `<release-name>` is your Helm release name.\n\n[code example]\n\nIn the quickstart definitions file, the feature view references this provider with `inference_store=\"demo_redis\"`. To provision a managed Redis deployment, see the [Redis Cloud quick start](https://redis.io/docs/latest/operate/rc/rc-quickstart)."
    },
    {
      "id": "register-s3-as-an-offline-store",
      "title": "Register S3 as an offline store",
      "role": "content",
      "text": "Register S3 when Feature Form needs an object-storage-backed offline location. As an `offline-store`, S3 holds historical feature values as files (typically Parquet) that training sets read from. Choose S3 when dataset size or retention exceeds what a relational store fits.\n\n[code example]\n\nUse `--s3-endpoint` for MinIO or LocalStack-style endpoints when needed. See the [Amazon S3 documentation](https://docs.aws.amazon.com/AmazonS3/latest/userguide/) for bucket and IAM setup."
    },
    {
      "id": "register-spark-as-a-compute-provider",
      "title": "Register Spark as a compute provider",
      "role": "content",
      "text": "Register Spark when you need a compute provider for transformation or materialization workloads at scale. As a `compute` provider, Spark runs the transformation and materialization jobs that produce feature values. Choose Spark when dataset size exceeds what a single SQL engine can handle.\n\n[code example]\n\nSee the [Apache Spark documentation](https://spark.apache.org/docs/latest/) for cluster and master configuration."
    },
    {
      "id": "register-an-iceberg-catalog",
      "title": "Register an Iceberg catalog",
      "role": "content",
      "text": "Register an Iceberg catalog provider when you need catalog-backed offline storage. As an `offline-store`, the catalog tracks versioned table snapshots over object storage. The workspace reads historical feature values from those tables, with schema evolution and time-travel queries.\n\n[code example]\n\nThis example uses the REST catalog backend; the exact required fields depend on which backend (REST, Hive, Glue, and so on) you choose. See the [Apache Iceberg documentation](https://iceberg.apache.org/docs/latest/) for catalog backend options."
    },
    {
      "id": "verify-registration",
      "title": "Verify registration",
      "role": "content",
      "text": "[code example]\n\nA successful list returns one row per registered provider:\n\n[code example]\n\nPass `--output json` or `--output yaml` for machine-readable output. If the list is empty or `get` returns an error, the register command did not complete. Rerun `ff provider register` to see its health-check output, and confirm the provider name and workspace match the ones you registered."
    },
    {
      "id": "update-or-delete-a-provider",
      "title": "Update or delete a provider",
      "role": "content",
      "text": "[code example]\n\nUse `--force` on `update` when changing values that may break running workloads, such as host, port, or broker addresses."
    },
    {
      "id": "next-steps",
      "title": "Next steps",
      "role": "content",
      "text": "With providers registered, the workspace is ready to receive feature definitions. See [Define and deploy features](https://redis.io/docs/latest/develop/ai/featureform/define-and-deploy-features) for authoring a definitions file and running `ff apply`."
    }
  ],
  "examples": [
    {
      "id": "check-the-built-in-env-secret-provider-ex0",
      "language": "bash",
      "code": "ff secret-provider list --workspace demo-workspace\nff secret-provider get env --workspace demo-workspace",
      "section_id": "check-the-built-in-env-secret-provider"
    },
    {
      "id": "register-another-secret-provider-ex0",
      "language": "bash",
      "code": "ff secret-provider register local-env \\\n  --workspace demo-workspace \\\n  --type env \\\n  --env-prefix FF_",
      "section_id": "register-another-secret-provider"
    },
    {
      "id": "register-another-secret-provider-ex1",
      "language": "bash",
      "code": "ff secret-provider register vault-main \\\n  --workspace demo-workspace \\\n  --type vault \\\n  --vault-address https://vault.example.com \\\n  --vault-token-path /var/run/secrets/vault-token",
      "section_id": "register-another-secret-provider"
    },
    {
      "id": "register-another-secret-provider-ex2",
      "language": "bash",
      "code": "ff secret-provider register k8s-main \\\n  --workspace demo-workspace \\\n  --type k8s \\\n  --k8s-namespace featureform \\\n  --k8s-secret-name provider-secrets",
      "section_id": "register-another-secret-provider"
    },
    {
      "id": "register-another-secret-provider-ex3",
      "language": "bash",
      "code": "ff secret-provider register aws-main \\\n  --workspace demo-workspace \\\n  --type aws \\\n  --aws-region us-west-2",
      "section_id": "register-another-secret-provider"
    },
    {
      "id": "update-or-delete-a-secret-provider-ex0",
      "language": "bash",
      "code": "ff secret-provider update local-env \\\n  --workspace demo-workspace \\\n  --env-prefix PROD_\n\nff secret-provider delete local-env \\\n  --workspace demo-workspace \\\n  --yes",
      "section_id": "update-or-delete-a-secret-provider"
    },
    {
      "id": "register-postgres-as-an-offline-store-and-compute-provider-ex0",
      "language": "bash",
      "code": "ff provider register demo_postgres \\\n  --workspace demo-workspace \\\n  --type postgres \\\n  --pg-host featureform-prod.cluster-abc123.us-west-2.rds.amazonaws.com \\\n  --pg-port 5432 \\\n  --pg-database featureform_test \\\n  --pg-user testuser \\\n  --pg-password-secret env:PG_PASSWORD \\\n  --pg-ssl-mode require",
      "section_id": "register-postgres-as-an-offline-store-and-compute-provider"
    },
    {
      "id": "register-redis-as-an-online-store-ex0",
      "language": "bash",
      "code": "ff provider register demo_redis \\\n  --workspace demo-workspace \\\n  --type redis \\\n  --redis-host redis-12345.c1.us-west-2-2.ec2.cloud.redislabs.com \\\n  --redis-port 12345",
      "section_id": "register-redis-as-an-online-store"
    },
    {
      "id": "register-s3-as-an-offline-store-ex0",
      "language": "bash",
      "code": "ff provider register data-lake \\\n  --workspace demo-workspace \\\n  --type s3 \\\n  --s3-bucket featureform-data \\\n  --s3-region us-west-2 \\\n  --s3-access-key-id-secret env:AWS_ACCESS_KEY_ID \\\n  --s3-secret-access-key-secret env:AWS_SECRET_ACCESS_KEY",
      "section_id": "register-s3-as-an-offline-store"
    },
    {
      "id": "register-spark-as-a-compute-provider-ex0",
      "language": "bash",
      "code": "ff provider register spark-main \\\n  --workspace demo-workspace \\\n  --type spark \\\n  --spark-master spark://spark-master:7077",
      "section_id": "register-spark-as-a-compute-provider"
    },
    {
      "id": "register-an-iceberg-catalog-ex0",
      "language": "bash",
      "code": "ff provider register iceberg-main \\\n  --workspace demo-workspace \\\n  --type iceberg_catalog \\\n  --iceberg-warehouse s3://featureform-data/warehouse \\\n  --iceberg-catalog-name featureform \\\n  --iceberg-rest-uri https://iceberg.example.com",
      "section_id": "register-an-iceberg-catalog"
    },
    {
      "id": "verify-registration-ex0",
      "language": "bash",
      "code": "ff provider list --workspace demo-workspace\nff provider get demo_postgres --workspace demo-workspace",
      "section_id": "verify-registration"
    },
    {
      "id": "verify-registration-ex1",
      "language": "text",
      "code": "NAME           TYPE      WORKSPACE        CREATED               UPDATED\ndemo_postgres  postgres  demo-workspace   2026-05-12T10:14:02Z  2026-05-12T10:14:02Z\ndemo_redis     redis     demo-workspace   2026-05-12T10:14:18Z  2026-05-12T10:14:18Z",
      "section_id": "verify-registration"
    },
    {
      "id": "update-or-delete-a-provider-ex0",
      "language": "bash",
      "code": "ff provider update demo_postgres \\\n  --workspace demo-workspace \\\n  --pg-port 5433\n\nff provider delete demo_postgres --workspace demo-workspace",
      "section_id": "update-or-delete-a-provider"
    }
  ]
}
