Skip to content
Closed
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
3158c06
keep track of export partition zk requests
arthurpassos Nov 27, 2025
ba581eb
vibe coded getexportpartitioninfo
arthurpassos Nov 27, 2025
efa0b03
move vibe coded getpartitionexports inside the updating task
arthurpassos Nov 27, 2025
acf5fd1
rmv unexistent increment
arthurpassos Nov 28, 2025
fadf2f7
lock part inside task
arthurpassos Nov 28, 2025
d51d703
tmp
arthurpassos Dec 3, 2025
ef5807b
okish
arthurpassos Dec 9, 2025
64accc3
add setting to control locking behavior (inside/outside task), deny e…
arthurpassos Dec 10, 2025
a63e05d
Merge branch 'antalya-25.8' into export_replicated_mt_partition_v2
arthurpassos Dec 10, 2025
3817e50
clear part references from partition task when status changes, proper…
arthurpassos Dec 11, 2025
85e14f9
settings history
arthurpassos Dec 11, 2025
0d183bf
improvements
arthurpassos Dec 11, 2025
76b3bd6
Merge branch 'antalya-25.8' into export_replicated_mt_partition_v2
arthurpassos Dec 11, 2025
651d6e4
implement local query to system replicated partition exports
arthurpassos Dec 12, 2025
7a1e741
address comments
arthurpassos Dec 16, 2025
1962e19
glitch
arthurpassos Dec 16, 2025
77c64be
Merge branch 'antalya-25.8' into export_replicated_mt_partition_v2
arthurpassos Jan 5, 2026
a053fc8
Merge branch 'antalya-25.8' into export_replicated_mt_partition_v2
arthurpassos Jan 7, 2026
88cfc70
Merge branch 'antalya-25.8' into export_replicated_mt_partition_v2
arthurpassos Jan 15, 2026
c9d903d
Merge branch 'antalya-25.8' into export_replicated_mt_partition_v2
arthurpassos Jan 23, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/Common/ProfileEvents.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,18 @@
M(ZooKeeperBytesSent, "Number of bytes send over network while communicating with ZooKeeper.", ValueType::Bytes) \
M(ZooKeeperBytesReceived, "Number of bytes received over network while communicating with ZooKeeper.", ValueType::Bytes) \
\
M(ExportPartitionZooKeeperRequests, "Total number of ZooKeeper requests made by the export partition feature.", ValueType::Number) \
M(ExportPartitionZooKeeperGet, "Number of 'get' requests to ZooKeeper made by the export partition feature.", ValueType::Number) \
M(ExportPartitionZooKeeperGetChildren, "Number of 'getChildren' requests to ZooKeeper made by the export partition feature.", ValueType::Number) \
M(ExportPartitionZooKeeperGetChildrenWatch, "Number of 'getChildrenWatch' requests to ZooKeeper made by the export partition feature.", ValueType::Number) \
M(ExportPartitionZooKeeperGetWatch, "Number of 'getWatch' requests to ZooKeeper made by the export partition feature.", ValueType::Number) \
M(ExportPartitionZooKeeperCreate, "Number of 'create' requests to ZooKeeper made by the export partition feature.", ValueType::Number) \
M(ExportPartitionZooKeeperSet, "Number of 'set' requests to ZooKeeper made by the export partition feature.", ValueType::Number) \
M(ExportPartitionZooKeeperRemove, "Number of 'remove' requests to ZooKeeper made by the export partition feature.", ValueType::Number) \
M(ExportPartitionZooKeeperRemoveRecursive, "Number of 'removeRecursive' requests to ZooKeeper made by the export partition feature.", ValueType::Number) \
M(ExportPartitionZooKeeperMulti, "Number of 'multi' requests to ZooKeeper made by the export partition feature.", ValueType::Number) \
M(ExportPartitionZooKeeperExists, "Number of 'exists' requests to ZooKeeper made by the export partition feature.", ValueType::Number) \
\
M(DistributedConnectionTries, "Total count of distributed connection attempts.", ValueType::Number) \
M(DistributedConnectionUsable, "Total count of successful distributed connections to a usable server (with required table, but maybe stale).", ValueType::Number) \
M(DistributedConnectionFailTry, "Total count when distributed connection fails with retry.", ValueType::Number) \
Expand Down
Loading
Loading