0.1.dev2184+g1e0cbe7.d20250401

flytekit.tools.fast_registration

Directory

Classes

Class Description
FastPackageOptions FastPackageOptions is used to set configuration options when packaging files.

Methods

Method Description
compress_tarball() Compress code tarball using pigz if available, otherwise gzip.
compute_digest() Walks the entirety of the source dir to compute a deterministic md5 hex digest of the dir contents.
download_distribution() Downloads a remote code distribution and overwrites any local files.
fast_package() Takes a source directory and packages everything not covered by common ignores into a tarball.
get_additional_distribution_loc() .
print_ls_tree()

Variables

Property Type Description
FAST_FILEENDING str
FAST_PREFIX str
PICKLE_FILE_PATH str

Methods

compress_tarball()

def compress_tarball(
    source: os.PathLike,
    output: os.PathLike,
)

Compress code tarball using pigz if available, otherwise gzip

Parameter Type
source os.PathLike
output os.PathLike

compute_digest()

def compute_digest(
    source: Union[os.PathLike, List[os.PathLike]],
    filter: Optional[callable],
) -> str

Walks the entirety of the source dir to compute a deterministic md5 hex digest of the dir contents.

Parameter Type
source Union[os.PathLike, List[os.PathLike]]
filter Optional[callable]

download_distribution()

def download_distribution(
    additional_distribution: str,
    destination: str,
)

Downloads a remote code distribution and overwrites any local files.

Parameter Type
additional_distribution str
destination str

fast_package()

def fast_package(
    source: os.PathLike,
    output_dir: os.PathLike,
    deref_symlinks: bool,
    options: Optional[FastPackageOptions],
) -> os.PathLike

Takes a source directory and packages everything not covered by common ignores into a tarball named after a hexdigest of the included files.

Parameter Type
source os.PathLike
output_dir os.PathLike
deref_symlinks bool
options Optional[FastPackageOptions]

get_additional_distribution_loc()

def get_additional_distribution_loc(
    remote_location: str,
    identifier: str,
) -> str
Parameter Type
remote_location str
identifier str
def print_ls_tree(
    source: os.PathLike,
    ls: typing.List[str],
)
Parameter Type
source os.PathLike
ls typing.List[str]

flytekit.tools.fast_registration.FastPackageOptions

FastPackageOptions is used to set configuration options when packaging files.

class FastPackageOptions(
    ignores: list[Ignore],
    keep_default_ignores: bool,
    copy_style: Optional[CopyFileDetection],
    show_files: bool,
)
Parameter Type
ignores list[Ignore]
keep_default_ignores bool
copy_style Optional[CopyFileDetection]
show_files bool