Skip to content

tobi/cow-tree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

COW-Tree - Clone a directory

Overview

The COW Tree Cloning Program is a C utility that creates a copy-on-write (COW) clone of a directory tree at a different mount location. It uses operating system native features like clonefile to efficiently clone files and directories while preserving copy-on-write semantics. This speeds up these opeations and saves diskspace.

Usage

cow-tree [from] [to]

Please note that this will make files writeable, if you don't want this add --no-permission-changes

Use Cases

One particularly powerful use case for COW-Tree is hydrating a local cache from a network mount, especially when using content-addressable storage package managers like uv (Universal Versioning).

  1. Efficient Local Caching: When working with large repositories or package collections stored on network mounts, COW-Tree can quickly create a local, copy-on-write clone of the entire directory structure. This allows for fast, local access to files without duplicating the entire dataset.

  2. Optimizing Package Manager Performance: Content-addressable storage package managers like uv benefit greatly from COW-Tree. By cloning the package cache locally:

    • Initial setup time is significantly reduced, as only metadata is copied, not the full content.
    • Subsequent package operations become much faster, as they can work with local files instead of network-mounted ones.
    • Storage space is optimized, as only modified or new files consume additional space.
  3. Reduced Network Load: By creating a local COW clone, network traffic is minimized. Only changes and new files need to be synced, reducing strain on network resources.

  4. Improved Build and CI/CD Performance: In development and CI/CD environments, having a local, efficiently cloned cache of packages can dramatically speed up build times and reduce dependencies on network reliability.

  5. Quick Environment Replication: COW-Tree allows for rapid creation of multiple local environments, each starting as an efficient clone but able to diverge as needed without affecting the original or other clones.

These use cases make COW-Tree an invaluable tool for developers and system administrators working with large, network-stored repositories or package collections, especially in conjunction with modern package management systems like uv.

Features

  • Recursively clones directory structures from source to target
  • Uses copy-on-write semantics for efficient storage utilization
  • Handles repeated runs by updating the target location while preserving modifications
  • Supports symbolic links, preserving their targets in the cloned structure
  • Maintains file timestamps and permissions, except it makes files user writeable if they aren't already

Compilation

To compile the program, use the following command: make

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published