Skip to content

Commit

Permalink
add a troubleshooting section in README
Browse files Browse the repository at this point in the history
  • Loading branch information
imor committed Dec 20, 2024
1 parent a0ff967 commit cdc8ca0
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,3 +207,19 @@ CDC stream is not the only kind of data a data pipeline performs. There's also f
### Performance

Currently the data source and sinks copy table row and CDC events one at a time. This is expected to be slow. Batching, and other strategies will likely improve the performance drastically. But at this early stage the focus is on correctness rather than performance. There are also zero benchmarks at this stage, so commentary about performance is closer to speculation than reality.

## Troubleshooting

If you see the following error when running tests with `cargo test` on macOS:

```
called `Result::unwrap()` on an `Err` value: Os { code: 24, kind: Uncategorized, message: "Too many open files" }
```

Then raise the limit of open files per process with this command:

```
ulimit -n 10000
```

Now the tests should pass again.

0 comments on commit cdc8ca0

Please sign in to comment.