Improve demo for Sentinel cluster flow control
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
This commit is contained in:
parent
094ba3bfba
commit
59c721691b
|
|
@ -16,6 +16,7 @@
|
||||||
package com.alibaba.csp.sentinel.demo.cluster.init;
|
package com.alibaba.csp.sentinel.demo.cluster.init;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Objects;
|
||||||
import java.util.Optional;
|
import java.util.Optional;
|
||||||
|
|
||||||
import com.alibaba.csp.sentinel.cluster.ClusterStateManager;
|
import com.alibaba.csp.sentinel.cluster.ClusterStateManager;
|
||||||
|
|
@ -157,6 +158,7 @@ public class DemoClusterInitFunc implements InitFunc {
|
||||||
// Otherwise it's unassigned, should be set to NOT_STARTED.
|
// Otherwise it's unassigned, should be set to NOT_STARTED.
|
||||||
boolean canBeClient = groupList.stream()
|
boolean canBeClient = groupList.stream()
|
||||||
.flatMap(e -> e.getClientSet().stream())
|
.flatMap(e -> e.getClientSet().stream())
|
||||||
|
.filter(Objects::nonNull)
|
||||||
.anyMatch(e -> e.equals(getCurrentMachineId()));
|
.anyMatch(e -> e.equals(getCurrentMachineId()));
|
||||||
return canBeClient ? ClusterStateManager.CLUSTER_CLIENT : ClusterStateManager.CLUSTER_NOT_STARTED;
|
return canBeClient ? ClusterStateManager.CLUSTER_CLIENT : ClusterStateManager.CLUSTER_NOT_STARTED;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -35,5 +35,10 @@
|
||||||
<groupId>com.alibaba.csp</groupId>
|
<groupId>com.alibaba.csp</groupId>
|
||||||
<artifactId>sentinel-datasource-nacos</artifactId>
|
<artifactId>sentinel-datasource-nacos</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>ch.qos.logback</groupId>
|
||||||
|
<artifactId>logback-classic</artifactId>
|
||||||
|
<version>1.2.3</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
Loading…
Reference in New Issue