MCPcopy
hub / github.com/feast-dev/feast / registry_dump_command

Function registry_dump_command

sdk/python/feast/cli/cli.py:339–348  ·  view source on GitHub ↗

Print contents of the metadata registry

(ctx: click.Context)

Source from the content-addressed store, hash-verified

337@cli.command("registry-dump")
338@click.pass_context
339def registry_dump_command(ctx: click.Context):
340 """
341 Print contents of the metadata registry
342 """
343 repo = ctx.obj["CHDIR"]
344 fs_yaml_file = ctx.obj["FS_YAML_FILE"]
345 cli_check_repo(repo, fs_yaml_file)
346 repo_config = load_repo_config(repo, fs_yaml_file)
347
348 click.echo(registry_dump(repo_config, repo_path=repo))
349
350
351@cli.command("materialize")

Callers

nothing calls this directly

Calls 3

cli_check_repoFunction · 0.90
load_repo_configFunction · 0.90
registry_dumpFunction · 0.90

Tested by

no test coverage detected