-
Notifications
You must be signed in to change notification settings - Fork 62
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
Improve/geyser reconnect on error #270
base: main
Are you sure you want to change the base?
Conversation
@@ -11,7 +11,7 @@ WS_ADDR=ws://0.0.0.0:8900 | |||
# PROMETHEUS_ADDR=your_prometheus_address_here | |||
|
|||
## Fanout size and retries configuration | |||
FANOUT_SIZE=32 | |||
FANOUT_SIZE=18 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you reduce ?
let mut last_finalized_slot: Slot = 0; | ||
loop { | ||
tokio::select! { | ||
confirmed_block = confirmed_blocks_stream.next() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel the streams are not working well, the performance issues that I found was related to stream when I moved back to channel it is not working very well. May be thing that you can check on your side.
@@ -206,7 +207,7 @@ impl LiteRpcServer for LiteBridge { | |||
.get_latest_block(commitment_config) | |||
.await; | |||
|
|||
log::trace!("glb {blockhash} {slot} {block_height}"); | |||
info!("glb {blockhash} {slot} {block_height}"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why info no need.
NOTE: THIS IS A DRAFT
what's missing: