Skip to content

Commit c0b7dea

Browse files
committed
Update schema
1 parent ce1f287 commit c0b7dea

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

schema/canonical_beacon_.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1302,7 +1302,7 @@ Data is partitioned **hourly** on **epoch_start_date_time** for the following ne
13021302

13031303
- **mainnet**: `2020-12-01` to `2026-04-11`
13041304
- **holesky**: `2023-09-23` to `2025-10-26`
1305-
- **sepolia**: `2022-06-20` to `2026-04-10`
1305+
- **sepolia**: `2022-06-20` to `2026-04-11`
13061306

13071307
### Examples
13081308

@@ -1405,7 +1405,7 @@ echo """
14051405
### Availability
14061406
Data is partitioned in chunks of **50** on **index** for the following networks:
14071407

1408-
- **mainnet**: `0` to `2244750`
1408+
- **mainnet**: `0` to `2245450`
14091409
- **holesky**: `0` to `1923800`
14101410
- **sepolia**: `0` to `1900`
14111411

schema/clickhouse/default/libp2p_recv_rpc_local.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE TABLE default.libp2p_recv_rpc_local
44
`updated_date_time` DateTime CODEC(DoubleDelta, ZSTD(1)),
55
`event_date_time` DateTime64(3) CODEC(DoubleDelta, ZSTD(1)),
66
`peer_id_unique_key` Int64,
7-
`meta_client_name` LowCardinality(String),
7+
`meta_client_name` LowCardinality(String) COMMENT 'Name of the client that collected the data. The table contains data from multiple clients',
88
`meta_client_id` String CODEC(ZSTD(1)),
99
`meta_client_version` LowCardinality(String),
1010
`meta_client_implementation` LowCardinality(String),
@@ -25,3 +25,4 @@ ENGINE = ReplicatedReplacingMergeTree('/clickhouse/{installation}/{cluster}/tabl
2525
PARTITION BY toYYYYMM(event_date_time)
2626
ORDER BY (event_date_time, unique_key, meta_network_name, meta_client_name)
2727
SETTINGS index_granularity = 8192
28+
COMMENT 'Contains RPC messages received from peers. Collected from deep instrumentation within forked consensus layer clients. Control messages are split into separate tables referencing this via rpc_meta_unique_key. Partition: monthly by `event_date_time`.'

schema/libp2p_.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ echo """
10451045

10461046
## libp2p_recv_rpc
10471047

1048-
1048+
Contains RPC messages received from peers. Collected from deep instrumentation within forked consensus layer clients. Control messages are split into separate tables referencing this via rpc_meta_unique_key. Partition: monthly by `event_date_time`.
10491049

10501050
### Availability
10511051
Data is partitioned **daily** on **event_date_time** for the following networks:
@@ -2842,7 +2842,7 @@ Data is partitioned **daily** on **event_date_time** for the following networks:
28422842
docker run --rm -it clickhouse/clickhouse-server clickhouse local --query --query="""
28432843
SELECT
28442844
*
2845-
FROM url('https://data.ethpandaops.io/xatu/mainnet/databases/default/libp2p_identify/2026/4/5.parquet', 'Parquet')
2845+
FROM url('https://data.ethpandaops.io/xatu/mainnet/databases/default/libp2p_identify/2026/4/6.parquet', 'Parquet')
28462846
LIMIT 10
28472847
FORMAT Pretty
28482848
"""

0 commit comments

Comments
 (0)