Skip to content

lintsai/Shedlock

Folders and files

NameName
Last commit message
Last commit date

Latest commit

aa4d6b9 · Oct 7, 2022

History

19 Commits
Sep 23, 2022
Oct 4, 2022
Sep 23, 2022
Sep 23, 2022
Oct 4, 2022
Sep 23, 2022
Sep 23, 2022
Sep 21, 2022
Oct 7, 2022

Repository files navigation

Shedlock

Shedlock Sample Project

ShedlockWithZookeeper

Use Shedlock with Embedded ZooKeeper implement the cluster scheduled.

"spring.cloud.zookeeper.connect-string" in properties can implement cluster with ZooKeeper.

"server.port" and "zookeeper.port" should be different, then Actuator can use.

ZooKeeper

The Embedded ZooKeeper Server Module

ShedlockWithApacheIgnite

Use Shedlock with Embedded Apache Ignite implement the cluster scheduled.

"ignite.cluster.connect-string" in properties can implement cluster with Apache Ignite.

Use spring cache with h2 1.4.196 version can sync data in memory with different service.

Note: Can't use new h2 version with ignite.

Use ignite cache can sync data in memory with different service.

ApacheIgnite

The Embedded Apache Ignite Server with cluster Module

ShedlockWithRedis

Use Shedlock with Embedded Redis implement the cluster scheduled.

Use sentinel cluster mode need set "spring.redis.sentinel=true" and "spring.redis.sentinel.*" properties.

"spring.redis.sentinel.nodes" in properties can implement sentinel cluster with Redis.

"server.port" and "spring.redis.port" should be different, then Actuator can use.

Use spring cache can sync data in memory with different service.

Redis Version "Redis for Windows 5.0.14.1"

Redis

The Embedded Redis Server Module

Redis Version "Redis for Windows 5.0.14.1"

RedisClient

The Redis Client Module with Spring Cache Sample