diff options
Diffstat (limited to 'doc/book')
-rw-r--r-- | doc/book/cookbook/reverse-proxy.md | 14 | ||||
-rw-r--r-- | doc/book/working-documents/design-draft.md | 2 | ||||
-rw-r--r-- | doc/book/working-documents/load-balancing.md | 2 | ||||
-rw-r--r-- | doc/book/working-documents/testing-strategy.md | 75 |
4 files changed, 86 insertions, 7 deletions
diff --git a/doc/book/cookbook/reverse-proxy.md b/doc/book/cookbook/reverse-proxy.md index fb918778..c8fde28d 100644 --- a/doc/book/cookbook/reverse-proxy.md +++ b/doc/book/cookbook/reverse-proxy.md @@ -70,14 +70,16 @@ A possible configuration: ```nginx upstream s3_backend { - # if you have a garage instance locally + # If you have a garage instance locally. server 127.0.0.1:3900; - # you can also put your other instances + # You can also put your other instances. server 192.168.1.3:3900; - # domain names also work + # Domain names also work. server garage1.example.com:3900; - # you can assign weights if you have some servers - # that are more powerful than others + # A "backup" server is only used if all others have failed. + server garage-remote.example.com:3900 backup; + # You can assign weights if you have some servers + # that can serve more requests than others. server garage2.example.com:3900 weight=2; } @@ -96,6 +98,8 @@ server { proxy_pass http://s3_backend; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $host; + # Disable buffering to a temporary file. + proxy_max_temp_file_size 0; } } ``` diff --git a/doc/book/working-documents/design-draft.md b/doc/book/working-documents/design-draft.md index 3c8298b0..6560dbed 100644 --- a/doc/book/working-documents/design-draft.md +++ b/doc/book/working-documents/design-draft.md @@ -1,6 +1,6 @@ +++ title = "Design draft (obsolete)" -weight = 50 +weight = 900 +++ **WARNING: this documentation is a design draft which was written before Garage's actual implementation. diff --git a/doc/book/working-documents/load-balancing.md b/doc/book/working-documents/load-balancing.md index bf6bdd95..1a65fdd2 100644 --- a/doc/book/working-documents/load-balancing.md +++ b/doc/book/working-documents/load-balancing.md @@ -1,6 +1,6 @@ +++ title = "Load balancing data (obsolete)" -weight = 60 +weight = 910 +++ **This is being yet improved in release 0.5. The working document has not been updated yet, it still only applies to Garage 0.2 through 0.4.** diff --git a/doc/book/working-documents/testing-strategy.md b/doc/book/working-documents/testing-strategy.md new file mode 100644 index 00000000..7d6be8ef --- /dev/null +++ b/doc/book/working-documents/testing-strategy.md @@ -0,0 +1,75 @@ ++++ +title = "Testing strategy" +weight = 30 ++++ + + +## Testing Garage + +Currently, we have the following tests: + +- some unit tests spread around the codebase +- integration tests written in Rust (`src/garage/test`) to check that Garage operations perform correctly +- integration test for compatibility with external tools (`script/test-smoke.sh`) + +We have also tried `minio/mint` but it fails a lot and for now we haven't gotten a lot from it. + +In the future: + +1. We'd like to have a systematic way of testing with `minio/mint`, + it would add value to Garage by providing a compatibility score and reference that can be trusted. +2. We'd also like to do testing with Jepsen in some way. + +## How to instrument Garagae + +We should try to test in least invasive ways, i.e. minimize the impact of the testing framework on Garage's source code. This means for example: + +- Not abstracting IO/nondeterminism in the source code +- Not making `garage` a shared library (launch using `execve`, it's perfectly fine) + +Instead, we should focus on building a clean outer interface for the `garage` binary, +for example loading configuration using environnement variables instead of the configuration file if that's helpfull for writing the tests. + +There are two reasons for this: + +- Keep the soure code clean and focused +- Test something that is as close as possible as the true garage that will actually be running + +Reminder: rules of simplicity, concerning changes to Garage's source code. +Always question what we are doing. +Never do anything just because it looks nice or because we "think" it might be usefull at some later point but without knowing precisely why/when. +Only do things that make perfect sense in the context of what we currently know. + +## References + +Testing is a research field on its own. +About testing distributed systems: + + - [Jepsen](https://jepsen.io/) is a testing framework designed to test distributed systems. It can mock some part of the system like the time and the network. + - [FoundationDB Testing Approach](https://www.micahlerner.com/2021/06/12/foundationdb-a-distributed-unbundled-transactional-key-value-store.html#what-is-unique-about-foundationdbs-testing-framework). They chose to abstract "all sources of nondeterminism and communication are abstracted, including network, disk, time, and pseudo random number generator" to be able to run tests by simulating faults. + - [Testing Distributed Systems](https://asatarin.github.io/testing-distributed-systems/) - Curated list of resources on testing distributed systems + +About S3 compatibility: + - [ceph/s3-tests](https://github.com/ceph/s3-tests) + - (deprecated) [minio/s3verify](https://blog.min.io/s3verify-a-simple-tool-to-verify-aws-s3-api-compatibility/) + - [minio/mint](https://github.com/minio/mint) + +About benchmarking S3 (I think it is not necessarily very relevant for this iteration): + - [minio/warp](https://github.com/minio/warp) + - [wasabi-tech/s3-benchmark](https://github.com/wasabi-tech/s3-benchmark) + - [dvassallo/s3-benchmark](https://github.com/dvassallo/s3-benchmark) + - [intel-cloud/cosbench](https://github.com/intel-cloud/cosbench) - used by Ceph + +Engineering blog posts: + - [Quincy @ Scale: A Tale of Three Large-Scale Clusters](https://ceph.io/en/news/blog/2022/three-large-scale-clusters/) + +Interesting blog posts on the blog of the Sled database: + +- <https://sled.rs/simulation.html> +- <https://sled.rs/perf.html> + +Misc: + - [mutagen](https://github.com/llogiq/mutagen) - mutation testing is a way to assert our test quality by mutating the code and see if the mutation makes the tests fail + - [fuzzing](https://rust-fuzz.github.io/book/) - cargo supports fuzzing, it could be a way to test our software reliability in presence of garbage data. + + |