agentsclimarketplace

Kora aop scheduling jdk

Skill kora-projects/kora-skills/plugins/kora-v1/skills/kora-aop-scheduling-jdk

Agent Skills for Kora Framework — compile-time DI for Java/Kotlin backend development.

Install
npx -y skills add kora-projects/kora-skills --skill kora-aop-scheduling-jdk

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

In-process scheduled tasks in Kora backed by the JVM ScheduledExecutorService, enabled via SchedulingJdkModule and the scheduling-jdk artifact. Covers @ScheduleAtFixedRate (fixed period, may overlap), @ScheduleWithFixedDelay (gap after completion, never overlaps), @ScheduleOnce (single delayed run), externalizing parameters through the config attribute, the scheduling config section (threads, shutdownWait, telemetry), and graceful shutdown via Thread.currentThread().isInterrupted(). Use when adding periodic/heartbeat/cleanup/cache-warm jobs to a Kora service without an external scheduler. For cron expressions, persistent or clustered jobs use kora-aop-scheduling-quartz instead.

SKILL.md

7.6 KB, as published. Nobody here has run it

Kora AOP Scheduling (JDK)

Artifact: ru.tinkoff.kora:scheduling-jdk Module: SchedulingJdkModule Annotation package: ru.tinkoff.kora.scheduling.jdk.annotation.*

Aspect-driven scheduling on top of the JVM ScheduledExecutorService. The annotations mirror the scheduleAtFixedRate, scheduleWithFixedDelay, and schedule method signatures. No external scheduler, no persistence — jobs live only for the lifetime of the process. For cron, persistent state, custom triggers, or cluster-wide single execution, use the sibling skill kora-aop-scheduling-quartz.

Aspect requirement: the bearing class must be non-final (Java) / open (Kotlin), otherwise the annotation processor cannot generate the scheduling aspect.


Quick Start

1. Add dependency

All Kora artifacts inherit their version from the kora-parent BOM — never version individual ru.tinkoff.kora:* deps.

dependencies {
    koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
    annotationProcessor "ru.tinkoff.kora:annotation-processors"   // mandatory — generates the aspect

    implementation "ru.tinkoff.kora:scheduling-jdk"
    implementation "ru.tinkoff.kora:config-hocon"
    implementation "ru.tinkoff.kora:logging-logback"
}

Kotlin uses ksp "ru.tinkoff.kora:symbol-processors" instead of annotationProcessor.

2. Plug the module into @KoraApp

@KoraApp
public interface Application extends
    HoconConfigModule,
    LogbackModule,
    SchedulingJdkModule {
}

3. Declare a scheduled component

package com.example.app.jobs;

import ru.tinkoff.kora.common.Component;
import ru.tinkoff.kora.scheduling.jdk.annotation.ScheduleAtFixedRate;
import java.time.temporal.ChronoUnit;

@Component
public class ScheduledJobs {   // non-final: required for aspect generation

    @ScheduleAtFixedRate(initialDelay = 30, period = 60, unit = ChronoUnit.SECONDS)
    void heartbeat() {
        // Lightweight task every 60 seconds
    }
}

JDK Annotations

AnnotationDescriptionOverlap
@ScheduleAtFixedRateFixed interval regardless of execution timePossible
@ScheduleWithFixedDelayDelay after previous completionNever
@ScheduleOnceSingle execution after delayN/A

@ScheduleAtFixedRate

Runs at fixed intervals. If task takes longer than period, next execution starts immediately after completion.

@ScheduleAtFixedRate(initialDelay = 30, period = 60, unit = ChronoUnit.SECONDS)
void heartbeat() {
    // Runs every 60s (may overlap if task > 60s)
}

@ScheduleWithFixedDelay

Waits for delay after task completion. No overlap possible.

@ScheduleWithFixedDelay(initialDelay = 30, delay = 60, unit = ChronoUnit.SECONDS)
void syncData() {
    // Completes → wait 60s → run again
}

@ScheduleOnce

Single execution after specified delay.

@ScheduleOnce(delay = 5, unit = ChronoUnit.MINUTES)
void warmup() {
    // Runs once after 5 minutes
}

Externalized parameters (config)

When the config attribute is set, the values come from that config path and override the annotation attributes (which then act only as defaults). The path is arbitrary; the example app nests jobs under scheduling.jobs.*.

@ScheduleAtFixedRate(config = "scheduling.jobs.heartbeat")
void heartbeat() { ... }
scheduling.jobs.heartbeat {
  initialDelay = "10s"
  period = "30s"
}

Keys per annotation: @ScheduleAtFixedRateinitialDelay, period; @ScheduleWithFixedDelayinitialDelay, delay; @ScheduleOncedelay. Durations accept HOCON time strings ("5ms", "30s", "2m").


Module configuration

Defaults shown match ScheduledExecutorServiceConfig:

scheduling {
  threads = 2                    # ScheduledExecutorService pool size (default: 2)
  shutdownWait = "30s"           # grace period for in-flight jobs on graceful shutdown
  telemetry {
    logging.enabled = false      # job execution logging (default: false)
    metrics.enabled = true       # Micrometer metrics (default: true)
    tracing.enabled = true       # OpenTelemetry tracing (default: true)
  }
}

See scheduling-config-reference.md for SLO buckets, metric tags, and tracing attributes.


Graceful Shutdown

Long-running jobs must check interrupt status:

@ScheduleWithFixedDelay(config = "scheduling.jobs.batch")
void processBatch() {
    while (!stopCondition()) {
        if (Thread.currentThread().isInterrupted()) {
            return;  // Exit on shutdown signal
        }
        doWork();
    }
}

Error Handling

Exception is logged, next invocation continues normally.

Pattern: Wrap in try-catch to prevent logging noise.

@ScheduleAtFixedRate(period = 60, unit = ChronoUnit.SECONDS)
void process() {
    try {
        doWork();
    } catch (Exception e) {
        log.error("Scheduled task failed", e);
    }
}

Common Pitfalls

ProblemSolution
Task not runningEnsure class is @Component and non-final (Java) / open (Kotlin)
Concurrent executionUse @ScheduleWithFixedDelay instead of @ScheduleAtFixedRate
Long-running taskCheck Thread.currentThread().isInterrupted() for graceful exit
Config not appliedVerify config path matches annotation

References, assets, scripts

FilePurpose
references/jdk-scheduling-reference.mdPer-annotation reference, error handling, telemetry
references/scheduling-config-reference.mdFull config reference (JDK + Quartz)
references/graceful-shutdown-reference.mdInterrupt handling and shutdown patterns
references/quartz-scheduling-reference.mdCron/trigger reference (see sibling skill)
assets/ScheduledJobs.java.templateJava scheduled-jobs starter
assets/ScheduledJobs.kt.templateKotlin scheduled-jobs starter
scripts/setup-jdk.shAdd scheduling-jdk, template, and config to a project
scripts/validate-cron.shInspect a Quartz cron expression (for the sibling skill)

Source of truth: .kora-agent/kora-docs/mkdocs/docs/en/documentation/scheduling.md (section #native) and .kora-agent/kora-examples/examples/java/kora-java-scheduling-jdk.


Related skills

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.