Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
dd112cf
Add show receivers support
Caideyipi Jun 8, 2026
7544ec8
Fix show receivers runtime edge cases
Caideyipi Jun 8, 2026
018840a
Fix receiver handshake body duplication
Caideyipi Jun 10, 2026
824f642
Fix show receivers schema alignment
Caideyipi Jun 10, 2026
de01c8b
Add show receivers visibility and HA tests
Caideyipi Jun 11, 2026
01d1b8b
Add show receivers edge case tests
Caideyipi Jun 11, 2026
00a52f8
Add show receivers schema filter tests
Caideyipi Jun 11, 2026
736d442
Add show receivers permission IT
Caideyipi Jun 11, 2026
4a16e12
Fix pipe handshake request body reuse
Caideyipi Jun 11, 2026
8c363e8
Add show receivers test coverage
Caideyipi Jun 11, 2026
9f9c2ec
Add show receivers initial transfer time tests
Caideyipi Jun 11, 2026
74d7b59
Add show receivers lifecycle test coverage
Caideyipi Jun 11, 2026
5d21e1e
Merge branch 'master' of https://github.com/apache/iotdb into feat/sh…
Caideyipi Jun 11, 2026
5409c4a
Add sort
Caideyipi Jun 12, 2026
8e349f4
Add aggregation UT
Caideyipi Jun 12, 2026
18fc392
Add information_schema.receivers UT
Caideyipi Jun 12, 2026
383c235
Fix pipe IT
Caideyipi Jun 12, 2026
15e8980
fix-information-ci
Caideyipi Jun 12, 2026
6353cce
Fix
Caideyipi Jun 15, 2026
cc0a8b7
recv-fix
Caideyipi Jun 15, 2026
f2cf1aa
ignore ts
Caideyipi Jun 15, 2026
64720cb
i18n
Caideyipi Jun 15, 2026
cf308c8
Fix ci failure
Caideyipi Jun 15, 2026
b24c957
Added ut/it
Caideyipi Jun 16, 2026
e1bd887
Update IoTDBShowReceiversLifecycleIT.java
Caideyipi Jun 16, 2026
3a0f8d2
Update StatementGeneratorTest.java
Caideyipi Jun 16, 2026
c395c38
Added tests
Caideyipi Jun 16, 2026
001d492
Add test
Caideyipi Jun 16, 2026
0d2986a
Test
Caideyipi Jun 16, 2026
33e8eaa
Delete use pipe ut
Caideyipi Jun 17, 2026
16c7d58
Update IoTDBShowReceiversLifecycleIT.java
Caideyipi Jun 18, 2026
6dad813
Fix show receivers pipe cleanup
Caideyipi Jun 18, 2026
c57d077
Fix wd
Caideyipi Jun 18, 2026
0e40217
Tag write-back receiver runtime separately
Caideyipi Jun 18, 2026
a3e0a03
Merge branch 'master' of https://github.com/apache/iotdb into feat/sh…
Caideyipi Jun 22, 2026
1d977f8
Add show receivers integration coverage
Caideyipi Jun 22, 2026
3995ecb
Fix show receivers runtime metadata tests
Caideyipi Jun 22, 2026
5b3930a
Fix receiver runtime cleanup test
Caideyipi Jun 22, 2026
ffb798e
Merge remote-tracking branch 'origin/master' into feat/show-receivers
Caideyipi Jun 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
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import org.apache.iotdb.common.rpc.thrift.TSStatus;
import org.apache.iotdb.commons.client.ClientPoolFactory;
import org.apache.iotdb.commons.client.IClientManager;
import org.apache.iotdb.commons.client.exception.ClientManagerException;
import org.apache.iotdb.commons.client.sync.SyncConfigNodeIServiceClient;
import org.apache.iotdb.commons.cluster.NodeStatus;
import org.apache.iotdb.commons.exception.PortOccupiedException;
Expand All @@ -40,7 +39,6 @@
import org.apache.iotdb.isession.SessionConfig;
import org.apache.iotdb.isession.pool.ISessionPool;
import org.apache.iotdb.isession.pool.ITableSessionPool;
import org.apache.iotdb.it.env.EnvFactory;
import org.apache.iotdb.it.env.cluster.EnvUtils;
import org.apache.iotdb.it.env.cluster.config.MppClusterConfig;
import org.apache.iotdb.it.env.cluster.config.MppCommonConfig;
Expand Down Expand Up @@ -1580,7 +1578,7 @@ public void ensureNodeStatus(
Throwable lastException = null;
for (int i = 0; i < retryCount; i++) {
try (final SyncConfigNodeIServiceClient client =
(SyncConfigNodeIServiceClient) EnvFactory.getEnv().getLeaderConfigNodeConnection()) {
(SyncConfigNodeIServiceClient) getLeaderConfigNodeConnection()) {
final List<String> errorMessages = new ArrayList<>(nodes.size());
final Map<String, Integer> nodeIds = new HashMap<>(nodes.size());
final TShowClusterResp showClusterResp = client.showCluster();
Expand Down Expand Up @@ -1641,7 +1639,7 @@ public void ensureNodeStatus(
} else {
lastException = new IllegalStateException(String.join(". ", errorMessages));
}
} catch (final TException | ClientManagerException | IOException | InterruptedException e) {
} catch (final TException | IOException | InterruptedException e) {
lastException = e;
}
try {
Expand Down
Loading
Loading