This is an automated email from the ASF dual-hosted git repository.
hubcio pushed a change to branch feat/surface-heartbeat-timeout
in repository https://gitbox.apache.org/repos/asf/iggy.git
from 7d511ee61 feat(server-ng): add cluster.heartbeat_timeout for VSR
liveness window
add 6513b2f55 fix(connectors): fix postgres source CDC producing no
messages (#3640)
add 2fdd6e84a feat(bench): record cluster topology in reports and surface
it in UI (#3737)
new 32727faff Merge branch 'master' into feat/surface-heartbeat-timeout
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 2 +
Cargo.lock | 2 +-
core/bench/dashboard/frontend/assets/style.css | 11 +
.../src/components/layout/benchmark_meta.rs | 3 +
.../frontend/src/components/layout/sidebar.rs | 31 +-
.../frontend/src/components/layout/sweep_view.rs | 56 +
.../src/components/selectors/benchmarks_list.rs | 2 +
.../components/selectors/dense_benchmark_row.rs | 5 +
core/bench/dashboard/frontend/src/state/ui.rs | 68 ++
core/bench/dashboard/shared/src/lib.rs | 7 +-
core/bench/dashboard/shared/src/subtext.rs | 52 +-
core/bench/report/src/types/cluster.rs | 125 +++
core/bench/report/src/types/mod.rs | 1 +
core/bench/report/src/types/report.rs | 49 +
core/bench/src/analytics/report_builder.rs | 147 ++-
core/bench/src/runner.rs | 5 +-
core/connectors/sources/postgres_source/README.md | 31 +-
.../sources/postgres_source/src/cdc_fixtures.rs | 89 ++
core/connectors/sources/postgres_source/src/lib.rs | 1100 ++++++++++++++++----
core/integration/tests/connectors/fixtures/mod.rs | 5 +-
.../tests/connectors/fixtures/postgres/cdc.rs | 206 ++++
.../connectors/fixtures/postgres/container.rs | 21 +-
.../tests/connectors/fixtures/postgres/mod.rs | 2 +
.../postgres/cdc_restart_connectors}/config.toml | 0
core/integration/tests/connectors/postgres/mod.rs | 1 +
.../connectors/postgres/postgres_source_cdc.rs | 584 +++++++++++
.../source_cdc_restart.toml} | 17 +-
core/server-ng/Cargo.toml | 2 +-
28 files changed, 2383 insertions(+), 241 deletions(-)
create mode 100644 core/bench/report/src/types/cluster.rs
create mode 100644 core/connectors/sources/postgres_source/src/cdc_fixtures.rs
create mode 100644 core/integration/tests/connectors/fixtures/postgres/cdc.rs
copy core/{connectors/sources/postgres_source =>
integration/tests/connectors/postgres/cdc_restart_connectors}/config.toml (100%)
create mode 100644
core/integration/tests/connectors/postgres/postgres_source_cdc.rs
copy core/integration/tests/connectors/{api/config.toml =>
postgres/source_cdc_restart.toml} (61%)