web3-proxy/TODO.md
2022-09-27 00:35:33 +00:00

33 KiB
Raw Blame History

Todo

MVP

These are roughly in order of completition

  • simple proxy
  • better locking. when lots of requests come in, we seem to be in the way of block updates
  • load balance between multiple RPC servers
  • support more than just ETH
  • option to disable private rpc and send everything to primary
  • support websocket clients
    • we support websockets for the backends already, but we need them for the frontend too
  • health check nodes by block height
  • Dockerfile
  • docker-compose.yml
  • after connecting to a server, check that it gives the expected chainId
  • the ethermine rpc is usually fastest. but its in the private tier. since we only allow synced rpcs, we are going to not have an rpc a lot of the time
  • if not backends. return a 502 instead of delaying?
  • move from warp to axum
  • handle websocket disconnect and reconnect
  • eth_sendRawTransaction should return the most common result, not the first
  • use redis and redis-cell for rate limits
  • it works for a few seconds and then gets stuck on something.
    • its working with one backend node, but multiple breaks. something to do with pending transactions
    • dashmap entry api is easy to deadlock! be careful with it!
  • the web3proxyapp object gets cloned for every call. why do we need any arcs inside that? shouldn't they be able to connect to the app's? can we just use static lifetimes
  • refactor Connection::spawn. have it return a handle to the spawned future of it running with block and transaction subscriptions
  • refactor Connections::spawn. have it return a handle that is selecting on those handles?
  • some production configs are occassionally stuck waiting at 100% cpu
    • they stop processing new blocks. i'm guessing 2 blocks arrive at the same time, but i thought our locks would handle that
    • even after removing a bunch of the locks, the deadlock still happens. i can't reliably reproduce. i just let it run for awhile and it happens.
    • running gdb shows the thread at tokio tungstenite thread is spinning near 100% cpu and none of the rest of the program is proceeding
    • fixed by https://github.com/gakonst/ethers-rs/pull/1287
  • when sending with private relays, brownie's tx.wait can think the transaction was dropped. smarter retry on eth_getTransactionByHash and eth_getTransactionReceipt (maybe only if we sent the transaction ourselves)
  • if web3 proxy gets an http error back, retry another node
  • endpoint for health checks. if no synced servers, give a 502 error
  • rpc errors propagate too far. one subscription failing ends the app. isolate the providers more (might already be fixed)
  • incoming rate limiting (by ip)
  • connection pool for redis
  • automatically route to archive server when necessary
    • originally, no processing was done to params; they were just serde_json::RawValue. this is probably fastest, but we need to look for "latest" and count elements, so we have to use serde_json::Value
    • when getting the next server, filtering on "archive" isn't going to work well. need to check inner instead
  • if the requested block is ahead of the best block, return without querying any backend servers
  • http servers should check block at the very start
  • subscription id should be per connection, not global
  • when under load, i'm seeing "http interval lagging!". sometimes it happens when not loaded.
    • we were skipping our delay interval when block hash wasn't changed. so if a block was ever slow, the http provider would get the same hash twice and then would try eth_getBlockByNumber a ton of times
  • inspect any jsonrpc errors. if its something like "header not found" or "block with id $x not found" retry on another node (and add a negative score to that server)
    • this error seems to happen when we use load balanced backend rpcs like pokt and ankr
  • RESPONSE_CACHE_CAP in bytes instead of number of entries
  • if we don't cache errors, then in-flight request caching is going to bottleneck
    • i think now that we retry header not found and similar, caching errors should be fine
  • RESPONSE_CACHE_CAP from config
  • web3_sha3 rpc command
  • test that launches anvil and connects the proxy to it and does some basic queries
    • need to have some sort of shutdown signaling. doesn't need to be graceful at this point, but should be eventually
  • if the fastest server has hit rate limits, we won't be able to serve any traffic until another server is synced.
    • thundering herd problem if we only allow a lag of 0 blocks
    • we can improve this by only publishing the synced connections once a threshold of total available soft and hard limits is passed. how can we do this without hammering redis? at least its only once per block per server
    • instead of tracking pending_synced_connections, have a mapping of where all connections are individually. then each change, re-check for consensus.
  • synced connections swap threshold set to 1 so that it always serves something
  • cli tool for creating new users
  • incoming rate limiting by api key
  • sort forked blocks by total difficulty like geth does
  • refactor result type on active handlers to use a cleaner success/error so we can use the try operator
  • give users different rate limits looked up from the database
  • Add a "weight" key to the servers. Sort on that after block. keep most requests local
  • cache db query results for user data. db is a big bottleneck right now
  • allow blocking public requests
  • Got warning: "WARN subscribe_new_heads:send_block: web3_proxy::connection: unable to get block from https://rpc.ethermine.org: Deserialization Error: expected value at line 1 column 1. Response: error code: 1015". this is cloudflare rate limiting on fetching a block, but this is a private rpc. why is there a block subscription?
  • im seeing ethspam occasionally try to query a future block. something must be setting the head block too early
    • we were sorting best block the wrong direction. i flipped a.cmp(b) to b.cmp(a) so that the largest would be first, but then i used 'max_by' which looks at the end of the list
  • HTTP GET to the websocket endpoints should redirect instead of giving an ugly error
  • load the redirected page from config
  • prettier output for create_user command. need the key in hex
  • drop redis-cell in favor of a simpler (and faster) implementation.
    • redis-cell was giving me weird errors and it isn't worth debugging it right now.
  • create user script should allow setting the api key
  • disable redis persistence in dev
  • attach a request id to every web request
  • attach user id (not IP!) to each request
  • fantom_1 | 2022-08-10T22:19:43.522465Z WARN web3_proxy::jsonrpc: forwarding error err=missing field jsonrpc at line 1 column 60
    • i think the server isn't following the spec. we need a context attached to more errors so we know which one
    • make jsonrpc default to "2.0" (including the custom deserializer that handles the RawValues)
  • if the eth_call (or similar) params include a block, we can cache for that
  • when block subscribers receive blocks, store them in a block_map
  • eth_blockNumber without a backend request
  • if we send a transaction to private rpcs and then people query it on public rpcs things, some interfaces might think the transaction is dropped (i saw this happen in a brownie script of mine). how should we handle this?
    • send getTransaction rpc requests to the private rpc tier
  • I'm hitting infura rate limits very quickly. I feel like that means something is very inefficient
    • whenever blocks were slow, we started checking as fast as possible
  • create user script should allow setting requests per minute
  • cache api keys that are not in the database
  • improve consensus block selection. Our goal is to find the highest work chain with a block over a minimum threshold of sum_soft_limit.
    • i saw a fork of like 300 blocks. probably just because a node was restarted and had fallen behind. need some checks to ignore things that are far behind. this improvement should fix this problem
    • A new block arrives at a connection.
    • It checks that it isn't the same that it already has (which is a problem with polling nodes)
    • If its new to this node...
      • if the block does not have total work, check our cache. otherwise, query the node
      • save the block num and hash so that http polling doesn't send duplicates
      • send the deduped block through a channel to be handled by the connections grouping.
    • The connections group...
      • input = rpc, new_block
      • adds the block and rpc to it's internal maps
        • connection_heads: HashMap<rpc_name, blockhash>
        • block_map: DashMap<blockhash, Arc>
        • block_num: DashMap<U64, H256>
        • blockchain: DiGraphMap<blockhash, ?>
      • iterate the rpc_map to find the highest_work_block
      • update synced connections
      • send the block through new head_block_sender
    • rewrite cannonical_block to work as long as there are no forks
    • rewrite cannonical_block (again) and related functions to handle forks
      • got a very large number of possible heads here. i think maybe a server was very far out of sync. we should drop servers behind by too much eth_1 | 2022-08-10T23:26:06.377129Z WARN web3_proxy::connections: chain is forked! 261 possible heads. 1/2/5/5 rpcs have 0xd403…3c5d eth_1 | 2022-08-10T23:26:08.917603Z WARN web3_proxy::connections: chain is forked! 262 possible heads. 1/2/5/5 rpcs have 0x0538…bfff eth_1 | 2022-08-10T23:26:10.195014Z WARN web3_proxy::connections: chain is forked! 262 possible heads. 1/2/5/5 rpcs have 0x0538…bfff eth_1 | 2022-08-10T23:26:10.195658Z WARN web3_proxy::connections: chain is forked! 262 possible heads. 2/3/5/5 rpcs have 0x0538…bfff
      • todo!("handle equal") and also less and greater
      • "chain is forked" message is wrong. it includes nodes just being on different heights of the same chain. need a smarter check
        • i think there is also a bug because i've seen "server not synced" a couple times
  • bug around eth_getBlockByHash sometimes causes tokio to lock up
    • i keep a mapping of blocks so that i can go from hash -> block. it has some consistent hashing it does to split them up across multiple maps each with their own lock. so a lot of the time reads dont block writes because they are in different internal maps. this was fine. but after changing my fork detection logic to use the same rules as erigon, i discovered that when you get blocks from a websocket subscription in erigon and geth, theres a missing field (https://github.com/ledgerwatch/erigon/issues/5190). so i added a query to get the block that includes the missing field.
    • but i did this in a way where i was holding the write lock open while doing the query. the "new" block that has the missing field ends up in the same bucket and it also wants a write lock. oops. entry api has very sharp edges. don't ever await inside a match on DashMap::entry
  • requests for "Get transactions receipts" are routed to the private_rpcs and not the balanced_rpcs. do this better.
    • quick fix, send to balanced_rpcs for now. we will just live with errors on new transactions.
    • this was intentional so that recently confirmed transactions go to a server that is more likely to have the tx.
    • but under heavy load, we hit their rate limits. need a "retry_until_success" function that goes to balanced_rpcs. or maybe store in redis the txids that we broadcast privately and use that to route.
  • some of the DashMaps grow unbounded! Make/find a "SizedDashMap" that cleans up old rows with some garbage collection task
    • moka is exactly what we need
  • if block data limit is 0, say Unknown in Debug output
  • basic request method stats (using the user_id and other fields that are in the tracing frame)
  • refactor from_anyhow_error to have consistent error codes and http codes. maybe implement the Error trait
  • improve rpc weights. i think theres still a potential thundering herd
  • improved logging with useful instrumentation
  • right now the block_map is unbounded. move this to redis and do some calculations to be sure about RAM usage
  • synced connections swap threshold should come from config
  • right now we send too many getTransaction queries to the private rpc tier and i are being rate limited by some of them. change to be serial and weight by hard/soft limit.
  • ip blocking gives a 500 and not the proper error code
  • need a reconnect that doesn't unwrap
  • need a retrying_reconnect that is used everywhere reconnect is. have exponential backoff here
  • it looks like our reconnect logic is not always firing. we need to make reconnect more robust!
    • i am pretty sure that this is actually servers that fail to connect on initial setup (maybe the rpcs that are on the wrong chain are just timing out and they aren't set to reconnect?)
  • chain rolled back 1/1/1 con_head=15510065 (0xa4a3…d2d8) rpc_head=15510065 (0xa4a3…d2d8) rpc=local_erigon_archive
    • include the old head number and block in the log
  • exponential backoff when reconnecting a connection
  • once the merge happens, we don't want to use total difficulty and instead just care about the number
  • rewrite rate limiting to have a tiered cache. do not put redis in the hot path
    • instead, we should check a local cache for the current rate limit (+1) and spawn an update to the local cache from redis in the background.
    • when there are a LOT of concurrent requests, we see errors. i thought that was a problem with redis cell, but it happens with my simpler rate limit. now i think the problem is actually with bb8
    • https://docs.rs/redis/latest/redis/aio/struct.ConnectionManager.html or https://crates.io/crates/deadpool-redis?
    • WARN http_request: redis_rate_limit::errors: redis error err=Response was of incompatible type: "Response type not string compatible." (response was int(500237)) id=01GC6514JWN5PS1NCWJCGJTC94 method=POST
  • web3_proxy_error_count{path = "backend_rpc/request"} is inflated by a bunch of reverts. do not log reverts as warn.
    • erigon gives method=eth_call reqid=986147 t=1.151551ms err="execution reverted"
  • database migration to change user_keys.requests_per_minute to bigunsigned (max of 18446744073709551615)
  • change user creation script to have a "unlimited requests per minute" flag that sets it to u64::MAX (18446744073709551615)
  • in /status, block hashes has a lower count than block numbers. how is that possible?
    • we weren't calling sync. now we are
  • opt-in debug mode that inspects responses for reverts and saves the request to the database for the user.
  • Api keys need option to lock to IP, cors header, referer, user agent, etc
  • /user/logout to clear bearer token and jwt
  • bearer tokens should expire
  • login endpoint needs its own rate limiter
    • we don't want an rpc request limit of 0 to block logins
    • for security, we want these limits low.
  • user login should return the bearer token and the user keys
  • use siwe messages and signatures for sign up and login
  • check for bearer token on /rpc
  • ip blocking logs a warn. we don't need that
  • Ulid instead of Uuid for user keys
  • get to /, when not serving a websocket, should have a simple welcome page. maybe with a button to update your wallet.
  • active requests per second per api key
  • parallel requests per api key
  • distribution of methods per api key (eth_call, eth_getLogs, etc.)
  • [-] let users choose a % to log (or maybe x/second). someone like curve logging all reverts will be a BIG database very quickly
    • this must be opt-in or spawned since it will slow things down and will make their calls less private
    • we currently default to 0.0 and don't expose a way to edit it. we have a database row, but we don't use it
  • [-] add configurable size limits to all the Caches
  • endpoint for creating/modifying api keys and their advanced security features
  • BUG: i think if all backend servers stop, the server doesn't properly reconnect. It appears to stop listening on 8854, but not shut down.
  • option to rotate api key
  • read the cookie key from a file. easy to re-use and no giant blob of hex in our app config
  • if no bearer token found in redis (likely because it expired), send 401 unauthorized
  • user create script should allow a description field
  • user create script should allow multiple keys per user

V1

These are not yet ordered.

  • instead of Option<...> in our frontend function signatures, use result and then the try operator so that we get our errors wrapped in json
  • revert logs should have a maximum age and a maximum count to keep the database from being huge
  • user login should also return a jwt (jsonwebtoken rust crate should make it easy)
  • [-] if we request an old block, more servers can handle it than we currently use.
    • instead of the one list of just heads, store our intermediate mappings (rpcs_by_hash, rpcs_by_num, blocks_by_hash) in SyncedConnections. this shouldn't be too much slower than what we have now
    • remove the if/else where we optionally route to archive and refactor to require a BlockNumber enum
    • then check syncedconnections for the blockNum. if num given, use the cannonical chain to figure out the winning hash
    • this means if someone requests a recent but not ancient block, they can use all our servers, even the slower ones. need smart sorting for priority here
  • script that looks at config and estimates max memory used by caches
  • favicon
  • warn if no servers have transaction subscriptions
    • if no servers have transaction subscriptions, and a user tries to subscribe, make sure the error is user friendly
  • only allow transaction and full block subscriptions if the user is registered?
  • eth_subscribe logs (https://geth.ethereum.org/docs/rpc/pubsub)
  • make private transactions opt in (its already in the database, but not our code)
  • write a function for receipts that tries balanced_rpcs and only if they all error should it try private relays
    • automatic retries with a timeout or until all the servers have been tried.
      • i had the websocket die on me in the middle of a long test. only one in-flight request failed because of it. the rest delayed. figure out how to catch these ones since websocket fails sadly seem common
  • nice output when cargo doc is run
  • cache more things locally or in redis
  • stats when forks are resolved (and what chain they were on?)
  • failsafe. if no blocks or transactions in some time, warn and reset the connection
  • emit stats for user's successes, retries, failures, with the types of requests, chain, rpc
  • cli for creating and editing api keys
  • Only subscribe to transactions when someone is listening and if the server has opted in to it
  • When sending eth_sendRawTransaction, retry errors
  • If we need an archive server and no servers in sync, exit immediately with an error instead of waiting 60 seconds
  • 60 second timeout is too short. Maybe do that for free tier and larger timeout for paid. Problem is that some queries can take over 1000 seconds
  • when handling errors from axum parsing the Json...Enum, the errors don't get wrapped in json. i think we need a axum::Layer
  • don't "unwrap" anywhere. give proper errors
  • handle log subscriptions
    • probably as a paid feature
  • on ETH, we no longer use total difficulty, but other chains might
    • if total difficulty is not on the block and we aren't on ETH, fetch the full block instead of just the header
    • if total difficulty is set and non-zero, use it for consensus instead of just the number
  • if we subscribe to a server that is syncing, it gives us null block_data_limit. when it catches up, we don't ever send queries to it. we need to recheck block_data_limit
  • we need concurrent requests limits. these should NOT throw rate limit exceeded, instead they should wait on a dashmap of semaphores. or maybe an unbounded cache of semaphores. if the request timeout is exceeded, then we can return a rate limit exceeded error

new endpoints for users (not totally sure about the exact paths, but these features are all needed):

  • GET /u/:api_key
    • proxies to web3 websocket
  • POST /u/:api_key
    • proxies to web3
  • GET /user/login/$address
    • returns a JSON string for the user to sign
  • POST /user/login/$address
    • returns a JSON string including the api key
    • sets session cookie
  • GET /user/$address
    • checks for api key in session cookie or header
    • returns a JSON string including user stats
      • balance in USD
      • deposits history (currency, amounts, transaction id)
      • number of requests used (so we can calculate average spending over a month, burn rate for a user etc, something like "Your balance will be depleted in xx days)
      • the email address of a user if he opted in to get contacted via email
      • all the success/retry/fail counts and latencies (but that may better come from somewhere else)
  • POST /user/$address
    • opt-in link email address
    • checks for api key in session cookie or header
    • allows modifying user settings

V2

These are not ordered. I think some rows also accidently got deleted here. Check git history.

  • handle user payments
    • separate daemon (or users themselves) call POST /users/process_transaction
      • checks a transaction to see if it modifies a user's balance. records results in a sql database
      • we will have our own event subscriber watching for "deposit" events, but sometimes events get missed and users might incorrectly "transfer" the tokens directly to an address instead of using the dapp
  • refactor so configs can change while running
    • this will probably be a rather large change, but is necessary when we have autoscaling
    • create the app without applying any config to it
    • have a blocking future watching the config file and calling app.apply_config() on first load and on change
    • work started on this in the "config_reloads" branch. because of how we pass channels around during spawn, this requires a larger refactor.
  • if a rpc fails to connect at start, retry later instead of skipping it forever (need config hot reloads first)
  • jwt auth so people can easily switch from infura
  • automated soft limit
  • interval for http subscriptions should be based on block time. load from config is easy, but better to query. currently hard coded to 13 seconds

in another repo: event subscriber

  • watch for transfer events to our contract and submit them to /payment/$tx_hash
  • cli tool that support can run to manually check and submit a transaction

"Maybe some day" and other Miscellaneous Things

  • tool to revoke bearer tokens that clears redis
  • eth_getBlockByNumber and similar calls served from the block map
    • will need all Block and Block in caches or fetched efficiently
    • so maybe we don't want this. we can just use the general request cache for these. they will only require 1 request and it means requests won't get in the way as much on writes as new blocks arrive.
    • after looking at my request logs, i think its worth doing this. no point hitting the backends with requests for blocks multiple times. will also help with cache hit rates since we can keep recent blocks in a separate cache
  • Public bsc server got “0” for block data limit (ninicoin)
  • cli tool for resetting api keys
  • cli tool for checking config
  • benchmarks of the different Cache implementations (futures vs dash)
  • Advanced load testing scripts so we can find optimal cost servers
  • send logs to sentry
  • i think all the async methods in ethers need tracing instrument. something like cfgif(tracing, tracing::instrument)
    • if they do that, i think my request_id will show up on their logs
  • page that prints a graphviz dotfile of the blockchain
  • search for all the "TODO" and todo!(...) items in the code and move them here
  • instead of giving a rate limit error code, delay the connection's response at the start. reject if incoming requests is super high?
  • add the backend server to the header?
  • have a low-latency option that always tries at least two servers in parallel and then returns the first success?
    • this doubles our request load though. maybe only if the first one doesn't respond very quickly?
  • zero downtime deploys
  • graceful shutdown. stop taking new requests and don't stop until all outstanding queries are handled
  • are we using Acquire/Release/AcqRel properly? or do we need other modes?
  • use https://github.com/ledgerwatch/interfaces to talk to erigon directly instead of through erigon's rpcdaemon (possible example code which uses ledgerwatch/interfaces: https://github.com/akula-bft/akula/tree/master)
  • subscribe to pending transactions and build an intelligent gas estimator
  • flashbots specific methods
  • if no redis set, but public rate limits are set, exit with an error
  • i saw "WebSocket connection closed unexpectedly" but no log about reconnecting
    • need better logs on this because afaict it did reconnect
  • if archive servers are added to the rotation while they are still syncing, they might get requests too soon. keep archive servers out of the configs until they are done syncing. full nodes should be fine to add to the configs even while syncing, though its a wasted connection
  • better document load tests: docker run --rm --name spam shazow/ethspam --rpc http://$LOCAL_IP:8544 | versus --concurrency=100 --stop-after=10000 http://$LOCAL_IP:8544; docker stop spam
  • if the call is something simple like "symbol" or "decimals", cache that too. though i think this could bite us.
  • add a subscription that returns the head block number and hash but nothing else
  • if chain split detected, what should we do? don't send transactions?
  • archive check works well for local servers, but public nodes (especially on other chains) seem to give unreliable results. likely because of load balancers. maybe have a "max block data limit"
  • https://docs.rs/derive_builder/latest/derive_builder/
  • Detect orphaned transactions
  • https://crates.io/crates/reqwest-middleware easy retry with exponential back off
    • Though I think we want retries that go to other backends instead
  • Some of the pub things should probably be "pub(crate)"
  • Maybe storing pending txs on receipt in a dashmap is wrong. We want to store in a timer_heap (or similar) when we actually send. This way there's no lock contention until the race is over.
  • Support "safe" block height. It's planned for eth2 but we can kind of do it now but just doing head block num-3
  • Archive check on BSC gave “archive” when it isnt. and FTM gave 90k for all servers even though they should be archive
  • cache eth_getLogs in a database?
  • stats for "read amplification". how many backend requests do we send compared to frontend requests we received?
  • fully test retrying when "header not found"
    • i saw "header not found" on a simple eth_getCode query to a public load balanced bsc archive node on block 1
  • weird flapping fork could have more useful logs. like, howd we get to 1/1/4 and fork. geth changed its mind 3 times?
    • should we change our code to follow the same consensus rules as geth? our first seen still seems like a reasonable choice
    • other chains might change all sorts of things about their fork choice rules 2022-07-22T23:52:18.593956Z WARN block_receiver: web3_proxy::connections: chain is forked! 1 possible heads. 1/1/4 rpcs have 0xa906…5bc1 rpc=Web3Connection { url: "ws://127.0.0.1:8546", data: 64, .. } new_block_num=15195517 2022-07-22T23:52:18.983441Z WARN block_receiver: web3_proxy::connections: chain is forked! 1 possible heads. 1/1/4 rpcs have 0x70e8…48e0 rpc=Web3Connection { url: "ws://127.0.0.1:8546", data: 64, .. } new_block_num=15195517 2022-07-22T23:52:19.350720Z WARN block_receiver: web3_proxy::connections: chain is forked! 2 possible heads. 1/2/4 rpcs have 0x70e8…48e0 rpc=Web3Connection { url: "ws://127.0.0.1:8549", data: "archive", .. } new_block_num=15195517 2022-07-22T23:52:26.041140Z WARN block_receiver: web3_proxy::connections: chain is forked! 2 possible heads. 2/4/4 rpcs have 0x70e8…48e0 rpc=Web3Connection { url: "http://127.0.0.1:8549", data: "archive", .. } new_block_num=15195517
    • threshold should check actual available request limits (if any) instead of just the soft limit
  • foreign key on_update and on_delete
  • database creation timestamps
  • better error handling. we warn too often for validation errors and use the same error code for most every request
  • use &str more instead of String. lifetime annotations get really annoying though
  • tarpit instead of reject requests (unless theres a lot)
  • tune database connection pool size. i think a single web3_proxy currently maxes out our server
  • subscribing to transactions should be configurable per server. listening to paid servers can get expensive
  • archive servers should be lowest priority
  • docker build context is really big. we must be including target or something
  • ip detection needs work so that everything doesnt show up as 172.x.x.x
  • status page leaks our urls which contain secrets. change that to use names
  • PR to add this to sea orm prelude:
    #[cfg(feature = "with-uuid")]
    pub use uuid::Builder as UuidBuilder;
    
  • rate limit thoughts:
    • if someone subscribes to all pending transactions, how should that count against rate limits
    • when those rate limits are hit, what should happen?
    • missing pending transactions might be okay, but not missing confirmed blocks
  • for easier errors in the axum code, i think we need to have our own type that wraps anyhow::Result+Error
  • fix ip detection when running in dev
  • double check weight sorting code
  • sea-orm brings in async-std, but we are using tokio. benchmark switching
  • this query always times out, but erigon can serve it quickly: curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"debug_traceBlockByNumber","params":["latest"],"id":1}' 127.0.0.1:8544' 127.0.0.1:8544 {"jsonrpc":"2.0","id":null,"error":{"code":-32099,"message":"deadline has elapsed"}}
    • figure out rate limits for private rpcs. eden v1 gives 500 error instead of a code for rate limits
  • https://gitlab.com/moka-labs/tiered-cache-example
  • web3connection3.block(...) might wait forever. be sure to do it safely
  • search for all "todo!"
  • when using a bunch of slow public servers, i see "no servers in sync" even when things should be right
    • maybe iterate connection heads by total weight? i still think we need to include parent hashes
  • i see "No block found" sometimes for a single server's block. Not sure why since reads should happen after writes
  • whats going on here? why is it rolling back? maybe total_difficulty was a LOT higher?
    • 2022-09-05T19:21:39.763630Z WARN web3_proxy::rpcs::blockchain: chain rolled back 1/6/7 head=15479604 (0xf809…6a2c) rpc=infura_free
    • i wish i had more logs. its possible that 15479605 came immediatly after
  • keep it working without redis and a database
  • web3 on rpc1 exited without errors. maybe promote some shutdown messages from debug to info?
  • better handling for offline http servers
    • if we get a connection refused, we should remove the server's block info so it is taken out of rotation
  • web3_proxy_cli command should read database settings from config
  • how should we handle reverting transactions? they won't confirm for a while after we send them
  • allow configuration of the expiration time of bearer tokens. currently defaults to 4 weeks
  • Ulid instead of Uuid for database ids
    • might have to use Uuid in sea-orm and then convert to Ulid on display
  • emit stat when an IP/key goes over rate limits
  • readme command should run create_user commands via docker-compose
  • helper for UUID <-> ULID
  • Wrapping extractors in Result makes them optional and gives you the reason the extraction failed
  • save errors if there is a cache hit?