Mark Paluch

Results 867 comments of Mark Paluch

Config server has switched from a custom Vault integration to Spring Cloud Vault which uses Spring Vault beans to configure the Vault integration and to interact with Vault. With this...

Working backward, if an application experiences a high load on the `/health` endpoint, this isn't something Spring can cater for, but rather the rate at which these endpoints are hit...

Spring Vault provides health check methods, see [`VaultSysOperations.health()`](https://docs.spring.io/spring-vault/docs/current/api/org/springframework/vault/core/VaultSysOperations.html#health--).

Can you provide a bit more details such as stack traces?

`TIMED_WAITING` is the state when a thread is blocked and awaits a response from a future or a lock. To diagnose the issue, we would require a proper reproducer.

Thanks for submitting a pull request. The generated code looks very different from the one that we had. We can only merge this if the resulting code is going to...

Thanks for the context. Given that Kotlinpoet doesn't seem to want to improve their dev experience and is rather limiting, I start to dislike the entire move into Kotlinpoet.

Thanks for the report. We haven't seen such an issue for quite a long time. What codec are you using? Without a reproducer, there's likely no chance of diagnosing the...

We start collecting metrics inside the I/O components (`CommandHandler`) to not spread latency code across the entire codebase. What you're asking is capturing the time where the command was actually...

Using the asynchronous API allows you to optimize for various aspects of the actual execution. The example optimizes for throughput (pipelining) without awaiting command completion. `MULTI` cannot fail on Redis...