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

Data truncation issue. #11844

Open
huijikim00 opened this issue Dec 18, 2024 · 2 comments
Open

Data truncation issue. #11844

huijikim00 opened this issue Dec 18, 2024 · 2 comments

Comments

@huijikim00
Copy link

When a large amount of data is received at once in the servermap, a phenomenon occurs where the data gets truncated in the servermap.
Are there any options available to resolve this issue?

@huijikim00
Copy link
Author

Additionally, the following error log occurs.

[ServerExecutor4] INFO f.RateLimitClientStreamServerInterceptor:107 -- Too many requests. Bandwidth exceeded. SpanStream

@donghun-cho
Copy link
Contributor

There is a collector option.
Try adjusting the capacity, refill-greedy value

public Bandwidth spanBandwidth(@Value("${collector.receiver.grpc.span.stream.flow-control.rate-limit.capacity:5000}") long capacity,
@Value("${collector.receiver.grpc.span.stream.flow-control.rate-limit.refill-greedy:1000}") long refillTokens) {
return Bandwidth
.builder()
.capacity(capacity)
.refillGreedy(refillTokens, Duration.ofSeconds(1))
.build();

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

2 participants