Coda (file system)
Distributed file system
title: "Coda (file system)" type: doc version: 1 created: 2026-02-28 author: "Wikipedia contributors" status: active scope: public tags: ["network-file-systems", "distributed-file-systems", "distributed-file-systems-supported-by-the-linux-kernel", "carnegie-mellon-university-software"] description: "Distributed file system" topic_path: "technology/operating-systems" source: "https://en.wikipedia.org/wiki/Coda_(file_system)" license: "CC BY-SA 4.0" wikipedia_page_id: 0 wikipedia_revision_id: 0
::summary Distributed file system ::
::data[format=table title="Infobox filesystem"]
| Field | Value |
|---|---|
| name | Coda |
| developer | Carnegie Mellon University |
| introduction_date | 1987 |
| OS | Linux kernel, NetBSD FreeBSD |
| :: |
| name = Coda | developer = Carnegie Mellon University | full_name = | introduction_date = 1987 | introduction_os = | partition_id = | directory_struct = | file_struct = | bad_blocks_struct = | max_file_size = | max_files_no = | max_filename_size = | max_volume_size = | dates_recorded = | date_range = | date_resolution = | forks_streams = | attributes = | file_system_permissions = | compression = | encryption = | data_deduplication = | copy_on_write = | OS = Linux kernel, NetBSD FreeBSD| | name = Coda | title = | logo = | logo caption = | logo_size = | logo_alt = | screenshot = | caption = | screenshot_size = | screenshot_alt = | collapsible = | author = | released = | discontinued = | latest release version = 8.0.2 | latest release date = | latest preview version = | latest preview date = | repo = | programming language = C | operating system = | platform = | size = | language = | language count = | language footnote = | genre = Distributed file system | license = GPL v2 | website =
Coda is a distributed file system developed as a research project at Carnegie Mellon University since 1987 under the direction of Mahadev Satyanarayanan. It descended directly from an older version of Andrew File System (AFS-2) and offers many similar features. The InterMezzo file system was inspired by Coda.
Features
Coda has many features that are desirable for network file systems, and several features not found elsewhere.
- Disconnected operation for mobile computing.
- Is freely available under the GPL
- High performance through client-side persistent caching
- Server replication
- Security model for authentication, encryption and access control
- Continued operation during partial network failures in server network
- Network bandwidth adaptation
- Good scalability
- Well defined semantics of sharing, even in the presence of network failure
Coda uses a local cache to provide access to server data when the network connection is lost. During normal operation, a user reads and writes to the file system normally, while the client fetches, or "hoards", all of the data the user has listed as important in the event of network disconnection. If the network connection is lost, the Coda client's local cache serves data from this cache and logs all updates. This operating state is called disconnected operation. Upon network reconnection, the client moves to reintegration state; it sends logged updates to the servers. Then it transitions back to normal connected-mode operation.
Also different from AFS is Coda's data replication method. AFS uses a pessimistic replication strategy with its files, only allowing one read/write server to receive updates and all other servers acting as read-only replicas. Coda allows all servers to receive updates, allowing for a greater availability of server data in the event of network partitions, a case which AFS cannot handle.
These unique features introduce the possibility of semantically diverging copies of the same files or directories, known as "conflicts". Disconnected operation's local updates can potentially clash with other connected users' updates on the same objects, preventing reintegration. Optimistic replication can potentially cause concurrent updates to different servers on the same object, preventing replication. The former case is called a "local/global" conflict, and the latter case a "server/server" conflict. Coda has extensive repair tools, both manual and automated, to handle and repair both types of conflicts.
Supported platforms
Coda has been developed on Linux and support for it appeared in the 2.1 Linux kernel series. It has also been ported to FreeBSD. Subsequently, obsoleted there, an effort is under way to bring it back. Efforts have been made to port Coda to Microsoft Windows, from the Windows 95/Windows 98 era, Windows NT to Windows XP, by means of open-source projects like the DJGCC DOS C Compiler and Cygwin.
References
References
- (July 5, 2020). "Coda progress".
- (1999-01-06). "New release: 5.0.pre1".
- (1998-01-06). "Linux Kernel mailing list, [PATCH] Coda".
- "GitHub - trasz/Freebsd at coda".
- Braam, P. J.. (1999). "Porting the coda file system to windows". USENIX Association.
- "Coda Support for Windows XP".
::callout[type=info title="Wikipedia Source"] This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page. ::