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

MongoHealthIndicator not compliant with Mongo stable API with strict setting #41101

Closed
jorgelc opened this issue Jun 14, 2024 · 10 comments
Closed
Assignees
Labels
type: bug A general bug
Milestone

Comments

@jorgelc
Copy link

jorgelc commented Jun 14, 2024

MongoHealthIndicator uses isMaster command, which is not part of Mongo's stable API https://www.mongodb.com/docs/v5.0/reference/stable-api-changelog/

If the underlying Mongo connection is configured to use the stable API and strict setting, the health indicator yields an error, as Mongo rejects the isMaster command.

Affected versions: Tested with sprinboot 3.3.0, potentially since 3.0.0

To reproduce it, create a blank springboot project including spring-boot-starter-data-mongodb, spring-boot-starter-web and spring-boot-starter-actuator dependencies. Then, set up both Mongo stable API version and strict to true by creating the following bean:

	@Bean
	public MongoClientSettings mongoClientSettings() {
		return MongoClientSettings.builder()
			.applicationName("testApp")
			.serverApi(ServerApi.builder()
				.strict(true)
				.version(ServerApiVersion.V1)
				.build())
			.build();
	}

For reference, such project has been created here https://github.com/jorgelc/mongo-stable-api-springboot-health, with steps about how to reproduced the error and compare the behaviour with when strict is set to false.

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged label Jun 14, 2024
@wilkinsona wilkinsona added type: bug A general bug and removed status: waiting-for-triage An issue we've not yet triaged labels Jun 14, 2024
@wilkinsona wilkinsona added this to the 3.2.x milestone Jun 14, 2024
@wilkinsona
Copy link
Member

Thank you. I've reproduced the problem.

I think we should switch to the hello command. It's supported in MongoDB 5.0 and later and Mongo 4.x reached end of life in February 2024.

@jorgelc
Copy link
Author

jorgelc commented Jun 14, 2024

Thanks @wilkinsona

We implemented that as a temporary workaround locally and it worked for us, but it would be nice to have that supported out of the box.

@jyemin
Copy link

jyemin commented Jun 14, 2024

Just FYI, the hello command was backported all the way to MongoDB 3.6, so this should be a safe change even for EOL'd MongoDB releases.

@pkunk
Copy link

pkunk commented Jun 20, 2024

FYI: This is not compatible with Azure Cosmos MongoDB API:
https://learn.microsoft.com/en-us/azure/cosmos-db/mongodb/feature-support-60#database-commands

@wilkinsona
Copy link
Member

wilkinsona commented Jun 20, 2024

Thanks, @pkunk, but I'm not sure there's much we can do about that. I don't see any mention of isMaster in the list of supported database commands either so it's not clear that this would have worked before. I'd recommend raising this with Microsoft to see if they can improve Cosmos' compliance with the MongoDB API.

In the meantime, anyone who's affected can work around the non-compliance by defining their own bean named mongoHealthIndicator or mongoHealthContributor.

@SimonedeGijt
Copy link

We have the same @pkunk . Did you already raise this with Microsoft? Would be great if I can follow the progress on this item :)

@pkunk
Copy link

pkunk commented Sep 9, 2024

We have the same @pkunk . Did you already raise this with Microsoft?

No. We just use custom mongoHealthIndicator bean.

@SimonedeGijt
Copy link

I created a post now, would be great if many people can vote on it 😄 : https://feedback.azure.com/d365community/idea/c7b19748-9276-ef11-a4e6-000d3a059eeb

@gahl-levy
Copy link

Hey @pkunk @SimonedeGijt @wilkinsona . I'm Gahl from the Cosmos DB Product Team. The hello command is already supported in Cosmos DB for MongoDB vCore and Cosmos DB for MongoDB RU. We're adding it to our docs now. Sorry for the confusion here and thanks for pointing this out!

@wilkinsona
Copy link
Member

Good news! Thanks very much, @gahl-levy.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: bug A general bug
Projects
None yet
Development

No branches or pull requests

7 participants