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

how does it scale with multi core / threads? #346

Open
ouvaa opened this issue Mar 5, 2024 · 3 comments
Open

how does it scale with multi core / threads? #346

ouvaa opened this issue Mar 5, 2024 · 3 comments

Comments

@ouvaa
Copy link

ouvaa commented Mar 5, 2024

do you have anything for 48 threads performance benchmarks?

most golang software cant scale beyond 24 cores.

@lni
Copy link
Owner

lni commented May 30, 2024

I don't have access to any machine with more than 24 cores. Also interested to know what makes you believe that 24 cores is the typical optimal for Golang, any concrete stats/benchmark results on that?

@sprappcom
Copy link

@lni golang/go#65064

@lni
Copy link
Owner

lni commented Jun 16, 2024

Thanks for the link.

I haven't tested on anything more than 24 physical cores, as that is already enough to support thousands of replicas per server. When more replicas are required in the whole, you definitely want them to be spread across many different servers.

The biggest performance bottleneck is the fsync performance, not the thread count, having faster SSDs with good fsync performance is the key here. Having more cores might help, but I think it is far less so when compared to faster cores and faster SSDs.

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

No branches or pull requests

3 participants