Page MenuHomePhabricator

[chronik] Add failover_proxy to bitcoinsuite-chronik-client
Needs RevisionPublic

Authored by hazzarust on Thu, Apr 3, 09:39.

Details

Reviewers
Fabien
Group Reviewers
Restricted Owners Package(Owns No Changed Paths)
Restricted Project
Summary

This code implements a fault-tolerant proxy client for connecting to Chronik blockchain indexers. Key features include:

Automatic failover between multiple Chronik endpoints
Conversion between HTTP/HTTPS URLs and their WebSocket equivalents
HTTP request handling (GET/POST) with error management
WebSocket connection establishment and validation
Subscription management for scripts, Lokad IDs, tokens, and blocks
Automatic reconnection with retention of previous subscriptions
Connection timeouts and status tracking
Error handling for server indexing states and connection failures

The client maintains state about working endpoints and can cycle through multiple servers when the current one becomes unavailable.

Test Plan

Please set BUILD_DIR env to export BUILD_DIR="/path/to/build_dir
UNIX: ./contrib/teamcity/build-configurations.py build-bitcoinsuite-chronik-client

Event Timeline

hazzarust created this revision.

Tail of the build log:

running 1 test
test test_chronik_version ... ok

test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 2.06s

     Running tests/failover_proxy_test.rs (/work/target/debug/deps/failover_proxy_test-c2934d124792a348)

running 8 tests
test test_append_ws_urls_combines_mixed_urls ... ok
test test_append_ws_urls_empty_input ... ok
test test_append_ws_urls_combines_valid_urls ... ok
test test_append_ws_urls_invalid_url ... ok
test test_derive_endpoint_index_default_working_index ... ok
test test_derive_endpoint_index_working_index_3 ... ok
test test_invalid_script_subscriptions ... ok
test test_script_subscription_validation ... ok

test result: ok. 8 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s

     Running tests/test_chronik_client.rs (/work/target/debug/deps/test_chronik_client-11e41fdb35201110)

running 14 tests
test test_slpv1_token ... ok
test test_broadcast_txs ... ok
test test_chronik_info ... ok
test test_raw_tx_missing ... ok
test test_broadcast_tx ... ok
test test_blocks ... ok
test test_raw_tx ... ok
test test_tx ... ok
test test_tx_missing ... ok
test test_blockchain_info ... ok
test test_history ... ok
test test_block ... ok
test test_block_txs ... FAILED
test test_slpv2_token ... ok

failures:

---- test_block_txs stdout ----
Error: HTTP request error

Caused by:
   0: error sending request for url (https://chronik.e.cash/block-txs/00000000000053807791091d70e691abff37fc4f8196df306ade8fd8fc40b9e8?page=0): error trying to connect: dns error: failed to lookup address information: Name or service not known
   1: error trying to connect: dns error: failed to lookup address information: Name or service not known
   2: dns error: failed to lookup address information: Name or service not known
   3: failed to lookup address information: Name or service not known

Location:
    /work/modules/bitcoinsuite-chronik-client/src/lib.rs:308:14


failures:
    test_block_txs

test result: FAILED. 13 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 4.15s

error: test failed, to rerun pass `-p bitcoinsuite-chronik-client --test test_chronik_client`
Build build-bitcoinsuite-chronik-client failed with exit code 101
Fabien requested changes to this revision.Fri, Apr 4, 07:50
Fabien added a subscriber: Fabien.

If it's not ready to review please don't put it in the review queue

modules/bitcoinsuite-chronik-client/src/failover_proxy.rs
1 ↗(On Diff #53352)

Macro whatyearisit:

modules/bitcoinsuite-chronik-client/src/handler.rs
78 ↗(On Diff #53352)

unrelated ?

modules/bitcoinsuite-chronik-client/src/hex.rs
1 ↗(On Diff #53352)

Macro whatyearisit:

9 ↗(On Diff #53352)

what is the 4B in the name ? 4 bits ?

107 ↗(On Diff #53352)

You can introduce (and make use of) this file in its own diff, it's unrelated to the failover proxy

modules/bitcoinsuite-chronik-client/src/lib.rs
6 ↗(On Diff #53352)

no longer needed ?

320 ↗(On Diff #53352)

can we just use crate::hex and avoid all the boilerplate ?

This revision now requires changes to proceed.Fri, Apr 4, 07:50