Tag

Dynamic Scheduling

1 views collected around this technical thread.

Java Captain
Java Captain
Apr 20, 2025 · Backend Development

Dynamic Adjustment of Scheduled Tasks in SpringBoot Using ThreadPoolTaskScheduler

This article explains how to dynamically modify the execution time of SpringBoot scheduled tasks by combining ScheduledTaskRegistrar with ThreadPoolTaskScheduler, decoupling business logic from triggers, and provides complete code examples for adding, updating, and removing tasks at runtime.

Backend DevelopmentDynamic SchedulingJava
0 likes · 9 min read
Dynamic Adjustment of Scheduled Tasks in SpringBoot Using ThreadPoolTaskScheduler
JD Tech Talk
JD Tech Talk
Aug 3, 2024 · Operations

Evolution of Load Balancing Strategies in JD Advertising Online Model System

This article examines the progression of load‑balancing techniques used in JD's advertising online model system, analyzing current challenges, outlining requirements, reviewing static and dynamic strategies, and presenting a multi‑objective, hierarchical approach that improves service availability, resource utilization, and overall system stability.

Dynamic Schedulingdistributed systemsload balancing
0 likes · 14 min read
Evolution of Load Balancing Strategies in JD Advertising Online Model System
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Jul 31, 2024 · Backend Development

Master Dynamic Scheduling in Spring Boot 3.2.5: Custom @Task and Runtime Control

Learn how to dynamically manage Spring Boot 3.2.5 scheduled tasks by creating a custom @Task annotation, recording task metadata, extending ThreadPoolTaskScheduler to track and control tasks, and implementing start/stop APIs, complete with code examples and practical testing.

Dynamic SchedulingJavaSpring Boot
0 likes · 8 min read
Master Dynamic Scheduling in Spring Boot 3.2.5: Custom @Task and Runtime Control
Java Captain
Java Captain
May 29, 2023 · Backend Development

Implementing Dynamic Scheduled Tasks in Spring Boot

This tutorial demonstrates how to create Spring Boot scheduled tasks whose execution intervals can be changed at runtime using either a configurable cron expression or a flexible periodic trigger, complete with code examples and a REST API for updating the schedule.

Backend DevelopmentCronDynamic Scheduling
0 likes · 10 min read
Implementing Dynamic Scheduled Tasks in Spring Boot
Java Captain
Java Captain
Apr 3, 2023 · Backend Development

Implementing Dynamic Scheduled Tasks in Spring Boot

This guide explains how to create Spring Boot scheduled tasks whose execution intervals can be changed at runtime using configurable cron expressions or periodic triggers, and provides REST endpoints to update the schedule without restarting the application.

BackendCronDynamic Scheduling
0 likes · 9 min read
Implementing Dynamic Scheduled Tasks in Spring Boot
Tencent Cloud Developer
Tencent Cloud Developer
Dec 26, 2022 · Cloud Native

Challenges and Optimization Strategies for Containerized Deployment of Online Services on Kubernetes

Tencent’s shift from VMs to Kubernetes for massive online services faces pod‑size rigidity, heterogeneous node balancing, elastic scaling, and massive cluster‑pool mapping, prompting optimizations such as dynamic CPU compression, custom load‑aware scheduling, collaborative HPA/VPA scaling, dynamic quota migration, unified routing‑sync, and an automated decision‑tree‑driven self‑healing workflow for container‑destruction failures.

Cloud NativeDynamic SchedulingKubernetes
0 likes · 12 min read
Challenges and Optimization Strategies for Containerized Deployment of Online Services on Kubernetes
Java Captain
Java Captain
Sep 29, 2022 · Backend Development

Implementing Dynamic Scheduled Tasks in Spring Boot

This tutorial demonstrates how to create Spring Boot scheduled tasks whose execution intervals can be changed at runtime using both CronTrigger and PeriodicTrigger, providing REST endpoints to update the cron expression or timer value dynamically.

Backend DevelopmentCron TriggerDynamic Scheduling
0 likes · 6 min read
Implementing Dynamic Scheduled Tasks in Spring Boot
Top Architect
Top Architect
Jul 8, 2021 · Backend Development

Implementing Dynamic Add/Delete/Start/Stop Scheduled Tasks in Spring Boot

This article explains how to overcome Spring Boot's static @Scheduled limitation by customizing the task scheduler, creating wrapper classes and a registrar to dynamically add, remove, start, and stop cron‑based jobs, with full code examples and a database‑driven design.

Backend DevelopmentDynamic SchedulingJava
0 likes · 11 min read
Implementing Dynamic Add/Delete/Start/Stop Scheduled Tasks in Spring Boot
转转QA
转转QA
Jun 11, 2020 · Backend Development

Integrating Quartz with Spring Boot for Dynamic Scheduled Tasks

This article explains how to integrate the Quartz scheduler into a Spring Boot application to create, update, delete, pause, and resume dynamic scheduled jobs without restarting the service, covering Quartz fundamentals, storage options, configuration steps, job implementation, and deployment considerations.

Backend DevelopmentDynamic SchedulingJava
0 likes · 6 min read
Integrating Quartz with Spring Boot for Dynamic Scheduled Tasks