Mark Paluch

Results 1231 comments of Mark Paluch

Let me see whether I understand your request correctly. You're looking for a way to create a timeseries collection that derives its `CollectionOptions` from a `Class` but you want to...

Looking at the design, we could introduce `CollectionOperations` (similar to `IndexOperations`) to create/drop/check for existence and collection lookup. We have several methods interacting on the collection level and adding yet...

See also https://github.com/spring-projects/spring-vault/issues/760

Applying customizations in the early application startup (before starting `SpringApplication.run(…)`) to not have access to `PropertySources` or `Environment` because these objects do not yet exist. Paging @mhalbritter from the Boot...

Ideally, we could create an `Environment` with all the file-based and env-variable property sources that mimic Spring Boot's `Environment` for binding `@ConfigurationProperties`. The alternative could be a customization hook in...

I am not able to reproduce the issue given the empty SQL string (`\n `). Getting a full stack trace along with a simple reproducer (without using mocks, just the...

Thanks for your suggestion. This seems a neat idea at first glance, however it shows that this is an approach to address an underlying problem that seems to be solved...

Sure. Thanks for reaching out. Do you want to come up with a pull request?

Sure, we have `PostgresqlException` and `ErrorDetails` as API to surface more details. Something along the lines of `PostgresqlException.isConnectionError(Throwable)` with a proper description of SQL states that qualify would make sense....

We generally do not support `bypassDocumentValidation` because none of our interfaces accepts such a flag (for insert, update, replace, bulk). There's no way to access Mongo's `…Options` models from outside....