Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow configuring MongoDB client UUID representation #36235

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
import java.util.Optional;
import java.util.OptionalInt;

import org.bson.UuidRepresentation;

import io.quarkus.runtime.annotations.ConfigDocSection;
import io.quarkus.runtime.annotations.ConfigGroup;
import io.quarkus.runtime.annotations.ConfigItem;
Expand Down Expand Up @@ -197,4 +199,10 @@ public class MongoClientConfig {
@ConfigItem(name = "health.database", defaultValue = "admin")
public String healthDatabase;

/**
* Configures the UUID representation to use when encoding instances of {@link java.util.UUID}
* and when decoding BSON binary values with subtype of 3.
*/
@ConfigItem
public Optional<UuidRepresentation> uuidRepresentation;
}
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,10 @@ private MongoClientSettings createMongoConfiguration(MongoClientConfig config) {
settings.readConcern(new ReadConcern(ReadConcernLevel.fromString(config.readConcern.get())));
}

if (config.uuidRepresentation.isPresent()) {
settings.uuidRepresentation(config.uuidRepresentation.get());
}

return settings.build();
}

Expand Down