Hi, Can I please ask a question about fast registr...
# ask-the-community
g
Hi, Can I please ask a question about fast registration? I use the command
pyflyte --pkgs {wf_info.package} serialize --in-container-config-path {DOCKER_CONFIG_PATH} --image {base_image_url} fast workflows -f {tmp_output} --deref-symlinks
to serialize the pb. My question is, what changes will pick up by this command? Is it the changes which is included within
{wf_info.package}
or
{wf_info.package}
+ all the its dependencies?
s
you can use this command before registering and fast-registering, which essentially means flytekit takes into account your dependencies when registering instead of fast registering.
g
Thanks for the reply! Can I ask what do you mean by "instead of fast registering"?
Will fast registering act differently when it comes to serializing pb?
s
yes. fast registration leads to "no container build deploys" of flyte workflows.
g
Thanks