README.md 12.5 KB
Newer Older
1
<p align="center"><a href="https://github.com/juicedata/juicefs"><img alt="JuiceFS Logo" src="docs/images/juicefs-logo.png" width="50%" /></a></p>
D
Davies Liu 已提交
2 3
<p align="center">
    <a href="https://travis-ci.com/juicedata/juicefs"><img alt="Build Status" src="https://travis-ci.com/juicedata/juicefs.svg?token=jKSPwswpc2ph4uMtwpHa&branch=main" /></a>
4
    <a href="https://join.slack.com/t/juicefs/shared_invite/zt-n9h5qdxh-0bJojPaql8cfFgwerDQJgA"><img alt="Join Slack" src="https://badgen.net/badge/Slack/Join%20JuiceFS/0abd59?icon=slack" /></a>
5
    <a href="https://goreportcard.com/report/github.com/juicedata/juicefs"><img alt="Go Report" src="https://goreportcard.com/badge/github.com/juicedata/juicefs" /></a>
H
Herald Yu 已提交
6
    <a href="README_CN.md"><img alt="中文手册" src="https://img.shields.io/badge/docs-%E4%B8%AD%E6%96%87%E6%89%8B%E5%86%8C-brightgreen" /></a>
D
Davies Liu 已提交
7
</p>
H
Herald Yu 已提交
8

C
Changjian Gao 已提交
9
**JuiceFS** is a high-performance [POSIX](https://en.wikipedia.org/wiki/POSIX) file system released under GNU Affero General Public License v3.0. It is specially optimized for the cloud-native environment. Using the JuiceFS to store data, the data itself will be persisted in object storage (e.g. Amazon S3), and the metadata corresponding to the data can be persisted in various database engines such as Redis, MySQL, and SQLite according to the needs of the scene.
D
Davies Liu 已提交
10

C
Changjian Gao 已提交
11
JuiceFS can simply and conveniently connect massive cloud storage directly to big data, machine learning, artificial intelligence, and various application platforms that have been put into production environment, without modifying the code, you can use massive cloud storage as efficiently as using local storage.
D
Davies Liu 已提交
12

13 14
📺 **Video**: [What is JuiceFS?](https://www.youtube.com/watch?v=8RdZoBG-D6Y)

H
Herald Yu 已提交
15
## Highlighted Features
D
Davies Liu 已提交
16

H
Herald Yu 已提交
17 18 19 20 21 22 23 24 25 26
1. **Fully POSIX-compatible**: Use like a local file system, seamlessly docking with existing applications, no business intrusion.
2. **Fully Hadoop-compatible**: JuiceFS [Hadoop Java SDK](docs/en/hadoop_java_sdk.md) is compatible with Hadoop 2.x and Hadoop 3.x. As well as variety of components in Hadoop ecosystem.
3. **S3-compatible**:  JuiceFS [S3 Gateway](docs/en/s3_gateway.md) provides S3-compatible interface.
4. **Cloud Native**: JuiceFS provides [Kubernetes CSI driver](docs/en/how_to_use_on_kubernetes.md) to help people who want to use JuiceFS in Kubernetes.
5. **Sharing**: JuiceFS is a shared file storage that can be read and written by thousands clients.
6. **Strong Consistency**: The confirmed modification will be immediately visible on all servers mounted with the same file system .
7. **Outstanding Performance**: The latency can be as low as a few milliseconds and the throughput can be expanded to nearly unlimited. [Test results](docs/en/benchmark.md)
8. **Data Encryption**: Supports data encryption in transit and at rest, read [the guide](docs/en/encrypt.md) for more information.
9. **Global File Locks**: JuiceFS supports both BSD locks (flock) and POSIX record locks (fcntl).
10. **Data Compression**: JuiceFS supports use [LZ4](https://lz4.github.io/lz4) or [Zstandard](https://facebook.github.io/zstd) to compress all your data.
D
Davies Liu 已提交
27 28 29

---

30
[Architecture](#architecture) | [Getting Started](#getting-started) | [Advanced Topics](#advanced-topics) | [POSIX Compatibility](#posix-compatibility) | [Performance Benchmark](#performance-benchmark) | [Supported Object Storage](#supported-object-storage) | [Who is using](#who-is-using) | [Roadmap](#roadmap) | [Reporting Issues](#reporting-issues) | [Contributing](#contributing) | [Community](#community) | [Usage Tracking](#usage-tracking) | [License](#license) | [Credits](#credits) | [FAQ](#faq)
D
Davies Liu 已提交
31 32 33 34 35

---

## Architecture

C
Changjian Gao 已提交
36
JuiceFS consists of three parts:
D
Davies Liu 已提交
37

H
Herald Yu 已提交
38 39 40
1. **JuiceFS Client**: Coordinate the implementation of object storage and metadata storage engines, as well as file system interfaces such as POSIX, Hadoop, Kubernetes, and S3 gateway.
2. **Data Storage**: Store the data itself, support local disk and object storage.
3. **Metadata Engine**: Metadata corresponding to the stored data, supporting multiple engines such as Redis, MySQL, and SQLite;
D
Davies Liu 已提交
41

H
Herald Yu 已提交
42
![JuiceFS Architecture](docs/images/juicefs-arch-new.png)
D
Davies Liu 已提交
43

H
Herald Yu 已提交
44
JuiceFS relies on Redis to store file system metadata. Redis is a fast, open-source, in-memory key-value data store and very suitable for storing the metadata. All the data will store into object storage through JuiceFS client. [Learn more](docs/en/architecture.md)
D
Davies Liu 已提交
45

H
Herald Yu 已提交
46
![JuiceFS Storage Format](docs/images/juicefs-storage-format-new.png)
D
Davies Liu 已提交
47

48
Any file stored in JuiceFS will be split into fixed-size **"Chunk"**, and the default upper limit is 64 MiB. Each Chunk is composed of one or more **"Slice"**. The length of the slice is not fixed, depending on the way the file is written. Each slice will be further split into fixed-size **"Block"**, which is 4 MiB by default. Finally, these blocks will be stored in the object storage. At the same time, JuiceFS will store each file and its Chunks, Slices, Blocks and other metadata information in metadata engines. [Learn more](docs/en/how_juicefs_store_files.md)
49

H
Herald Yu 已提交
50
![How JuiceFS stores your files](docs/images/how-juicefs-stores-files-new.png)
D
Davies Liu 已提交
51

H
Herald Yu 已提交
52
Using JuiceFS, files will eventually be split into Chunks, Slices and Blocks and stored in object storage. Therefore, you will find that the source files stored in JuiceFS cannot be found in the file browser of the object storage platform. There is a chunks directory and a bunch of digitally numbered directories and files in the bucket. Don't panic, this is the secret of the high-performance operation of the JuiceFS!
D
Davies Liu 已提交
53

H
Herald Yu 已提交
54
## Getting Started
D
Davies Liu 已提交
55

H
Herald Yu 已提交
56
To create a JuiceFS, you need the following 3 preparations:
D
Davies Liu 已提交
57

H
Herald Yu 已提交
58 59 60
1. Redis database for metadata storage
2. Object storage is used to store data blocks
3. JuiceFS Client
D
Davies Liu 已提交
61

C
Changjian Gao 已提交
62
Please refer to [Quick Start Guide](docs/en/quick_start_guide.md) to start using JuiceFS immediately!
63

S
Suave Su 已提交
64 65
### Command Reference

66
There is a [command reference](docs/en/command_reference.md) to see all options of the subcommand.
S
Suave Su 已提交
67

D
Davies Liu 已提交
68 69
### Kubernetes

70
[Using JuiceFS on Kubernetes](docs/en/how_to_use_on_kubernetes.md) is so easy, have a try.
D
Davies Liu 已提交
71

72 73 74 75
### Hadoop Java SDK

If you wanna use JuiceFS in Hadoop, check [Hadoop Java SDK](docs/en/hadoop_java_sdk.md).

76
## Advanced Topics
77

78 79
- [Redis Best Practices](docs/en/redis_best_practices.md)
- [How to Setup Object Storage](docs/en/how_to_setup_object_storage.md)
C
Changjian Gao 已提交
80
- [Cache Management](docs/en/cache_management.md)
81
- [Fault Diagnosis and Analysis](docs/en/fault_diagnosis_and_analysis.md)
82
- [FUSE Mount Options](docs/en/fuse_mount_options.md)
H
Herald Yu 已提交
83
- [Using JuiceFS on Windows](docs/en/juicefs_on_windows.md)
84
- [S3 Gateway](docs/en/s3_gateway.md)
85

86 87
Please refer to [JuiceFS User Manual](docs/en/README.md) for more information.

D
Davies Liu 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
## POSIX Compatibility

JuiceFS passed all of the 8813 tests in latest [pjdfstest](https://github.com/pjd/pjdfstest).

```
All tests successful.

Test Summary Report
-------------------
/root/soft/pjdfstest/tests/chown/00.t          (Wstat: 0 Tests: 1323 Failed: 0)
  TODO passed:   693, 697, 708-709, 714-715, 729, 733
Files=235, Tests=8813, 233 wallclock secs ( 2.77 usr  0.38 sys +  2.57 cusr  3.93 csys =  9.65 CPU)
Result: PASS
```

C
Changjian Gao 已提交
103
Besides the things covered by pjdfstest, JuiceFS provides:
104

105
- Close-to-open consistency. Once a file is closed, the following open and read are guaranteed see the data written before close. Within same mount point, read can see all data written before it immediately.
106 107
- Rename and all other metadata operations are atomic guaranteed by Redis transaction.
- Open files remain accessible after unlink from same mount point.
C
Changjian Gao 已提交
108
- Mmap is supported (tested with FSx).
109 110
- Fallocate with punch hole support.
- Extended attributes (xattr).
C
Changjian Gao 已提交
111 112
- BSD locks (flock).
- POSIX record locks (fcntl).
113

D
Davies Liu 已提交
114 115
## Performance Benchmark

116 117
### Basic benchmark

118
JuiceFS provides a subcommand to run a few basic benchmarks to understand how it works in your environment:
119

120
![JuiceFS Bench](docs/images/juicefs-bench.png)
121

D
Davies Liu 已提交
122 123 124 125 126 127
### Throughput

Performed a sequential read/write benchmark on JuiceFS, [EFS](https://aws.amazon.com/efs) and [S3FS](https://github.com/s3fs-fuse/s3fs-fuse) by [fio](https://github.com/axboe/fio), here is the result:

![Sequential Read Write Benchmark](docs/images/sequential-read-write-benchmark.svg)

128
It shows JuiceFS can provide 10X more throughput than the other two, read [more details](docs/en/fio.md).
D
Davies Liu 已提交
129 130 131 132 133 134 135

### Metadata IOPS

Performed a simple mdtest benchmark on JuiceFS, [EFS](https://aws.amazon.com/efs) and [S3FS](https://github.com/s3fs-fuse/s3fs-fuse) by [mdtest](https://github.com/hpc/ior), here is the result:

![Metadata Benchmark](docs/images/metadata-benchmark.svg)

136
It shows JuiceFS can provide significantly more metadata IOPS than the other two, read [more details](docs/en/mdtest.md).
D
Davies Liu 已提交
137

138 139 140 141 142 143 144 145 146 147 148
### Analyze performance

There is a virtual file called `.accesslog` in the root of JuiceFS to show all the operations and the time they takes, for example:

```bash
$ cat /jfs/.accesslog
2021.01.15 08:26:11.003330 [uid:0,gid:0,pid:4403] write (17669,8666,4993160): OK <0.000010>
2021.01.15 08:26:11.003473 [uid:0,gid:0,pid:4403] write (17675,198,997439): OK <0.000014>
2021.01.15 08:26:11.003616 [uid:0,gid:0,pid:4403] write (17666,390,951582): OK <0.000006>
```

S
Sandy Xu 已提交
149
The last number on each line is the time (in seconds) current operation takes. You can use this directly to debug and analyze performance issues, or try `./juicefs profile /jfs` to monitor real time statistics. Please run `./juicefs profile -h` or refer to [here](docs/en/operations_profiling.md) to learn more about this subcommand.
150

D
Davies Liu 已提交
151 152 153 154 155 156 157
## Supported Object Storage

- Amazon S3
- Google Cloud Storage
- Azure Blob Storage
- Alibaba Cloud Object Storage Service (OSS)
- Tencent Cloud Object Storage (COS)
158
- QingStor Object Storage
D
Davies Liu 已提交
159 160 161 162 163
- Ceph RGW
- MinIO
- Local disk
- Redis

H
Herald Yu 已提交
164
JuiceFS supports almost all object storage services. [Learn more](docs/en/how_to_setup_object_storage.md#supported-object-storage).
D
Davies Liu 已提交
165

166
## Who is using
D
Davies Liu 已提交
167

168 169 170
It's considered as beta quality, the storage format is not stabilized yet. If you want to use it in a production environment, please do a careful and serious evaluation first. If you are interested in it, please test it as soon as possible and give us [feedback](https://github.com/juicedata/juicefs/discussions).

You are welcome to tell us after using JuiceFS and share your experience with everyone. We have also collected a summary list in [ADOPTERS.md](ADOPTERS.md), which also includes other open source projects used with JuiceFS.
D
Davies Liu 已提交
171 172 173 174

## Roadmap

- Stabilize storage format
175
- Support FoundationDB as meta engine
D
Davies Liu 已提交
176 177 178 179 180
- User and group quotas
- Directory quotas
- Snapshot
- Write once read many (WORM)
- Trash
D
Davies Liu 已提交
181 182 183 184 185 186 187 188 189 190 191

## Reporting Issues

We use [GitHub Issues](https://github.com/juicedata/juicefs/issues) to track community reported issues. You can also [contact](#community) the community for getting answers.

## Contributing

Thank you for your contribution! Please refer to the [CONTRIBUTING.md](CONTRIBUTING.md) for more information.

## Community

192
Welcome to join the [Discussions](https://github.com/juicedata/juicefs/discussions) and the [Slack channel](https://join.slack.com/t/juicefs/shared_invite/zt-n9h5qdxh-0bJojPaql8cfFgwerDQJgA) to connect with JuiceFS team members and other users.
D
Davies Liu 已提交
193 194 195

## Usage Tracking

D
Davies Liu 已提交
196
JuiceFS by default collects **anonymous** usage data. It only collects core metrics (e.g. version number), no user or any sensitive data will be collected. You could review related code [here](pkg/usage/usage.go).
D
Davies Liu 已提交
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215

These data help us understand how the community is using this project. You could disable reporting easily by command line option `--no-usage-report`:

```bash
$ ./juicefs mount --no-usage-report
```

## License

JuiceFS is open-sourced under GNU AGPL v3.0, see [LICENSE](LICENSE).

## Credits

The design of JuiceFS was inspired by [Google File System](https://research.google/pubs/pub51), [HDFS](https://hadoop.apache.org) and [MooseFS](https://moosefs.com), thanks to their great work.

## FAQ

### Why doesn't JuiceFS support XXX object storage?

C
Changjian Gao 已提交
216
JuiceFS already supported many object storage, please check [the list](docs/en/how_to_setup_object_storage.md#supported-object-storage) first. If this object storage is compatible with S3, you could treat it as S3. Otherwise, try reporting issue.
D
Davies Liu 已提交
217 218 219

### Can I use Redis cluster?

D
Davies Liu 已提交
220
The simple answer is no. JuiceFS uses [transaction](https://redis.io/topics/transactions) to guarantee the atomicity of metadata operations, which is not well supported in cluster mode. Sentinal or other HA solution for Redis are needed.
C
Changjian Gao 已提交
221

C
Changjian Gao 已提交
222 223
See ["Redis Best Practices"](docs/en/redis_best_practices.md) for more information.

C
Changjian Gao 已提交
224 225 226
### What's the difference between JuiceFS and XXX?

See ["Comparison with Others"](docs/en/comparison_with_others.md) for more information.
C
Changjian Gao 已提交
227

228
For more FAQs, please see the [full list](docs/en/faq.md).