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

GODRIVER-3455 Make BSON benchmarks more representative of real use cases. #1974

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

matthewdale
Copy link
Collaborator

GODRIVER-3455

Summary

  • Make BenchmarkMarshal and BenchmarkUnmarshal BSON benchmarks parallel.
  • Add more test cases to BenchmarkMarshal and BenchmarkUnmarshal.
  • Make it easier to run encoding-specific benchmarks (e.g. BSON, ExtJSON, etc) by restructuring the subtests to make the encoding the top-level subtest.

Background & Motivation

@mongodb-drivers-pr-bot mongodb-drivers-pr-bot bot added the priority-3-low Low Priority PR for Review label Mar 5, 2025
Copy link
Contributor

API Change Report

No changes found!

@@ -194,6 +196,23 @@ func BenchmarkMarshal(b *testing.B) {
desc: "nested struct",
value: nestedInstance,
},
{
desc: "simple D",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This case doesn't seem like it will be any different than encodetestInstance. But if we keep it, suggest defining it globally and adding it to BenchmarkUnmarshal as well.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The marshaled BSON document is the same, but the input type is bson.D instead of a user-defined struct, so the marshal logic is significantly different (e.g. iterating over slice elements vs struct fields).

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My comment was unclear, I'm suggesting we do something like this:

var encodetestBsonD bson.D

func init() {
	b, err := bson.Marshal(encodetestInstance)
	if err != nil {
		log.Fatalf("error marshling struct: %v", err)
	}

	err = bson.Unmarshal(b, &encodetestBsonD)
	if err != nil {
		log.Fatalf("error unmarshaling BSON: %v", err)
	}
}

prestonvasquez
prestonvasquez previously approved these changes Mar 26, 2025
Copy link
Collaborator

@prestonvasquez prestonvasquez left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
priority-3-low Low Priority PR for Review
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants