Stephen Wakely

Results 60 comments of Stephen Wakely

The count is a bit suspicious. That's a lot of events to drop! Are you able to confirm if this error occurs on the latest version of Vector (0.33.1)? 0.26...

> I also encountered this problem when using s3 sink. Any suggestions? The issue is not specific to any particular sink. The issue seems to be when the Vector loses...

@yanjun-li @Abhinav04 Is it possible that multiple Vector pods are sharing the same persistent volume?

I can see that this would be useful, but we would have to make it very clear in the docs that there are limitations. The general expectation a user would...

I think it would be worth providing a way to determine if a reload should occur. It could be quite resource intensive to load the data every time so would...

To get rid of the spelling errors you can add pgtable [here](https://github.com/vectordotdev/vector/blob/master/.github/actions/spelling/allow.txt).

You can wrap `Client` in `std::sync::Arc`. This way we aren't cloning the connection, rather a reference counted reference to the connection. However I do think it would be preferable to...

I can reproduce this on Ubuntu 22.04 by creating some docker logs using `flog`: ```sh docker run -it --rm mingrammer/flog -l -d 10 ``` The manually edit the log file:...

Thank you for writing this. It is definitely something that could be quite useful. The biggest show stopper to getting this implemented is the lack of `async` within `VRL`. Any...