Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion crates/taskito-core/src/worker/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//! # use std::sync::Arc;
//! # use taskito_core::worker::{ExecutorClient, ExecutorConfig, TcpTransport, WorkerDispatcher};
//! # fn run(dispatcher: Arc<dyn WorkerDispatcher>) -> Result<(), Box<dyn std::error::Error>> {
//! let stream = std::net::TcpStream::connect("scheduler:7749")?;
//! let stream = std::net::TcpStream::connect("scheduler:7777")?;
//! let client = ExecutorClient::connect(
//! Box::new(TcpTransport::new(stream)?),
//! ExecutorConfig {
Expand Down
5 changes: 5 additions & 0 deletions docs/content/docs/resources/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ underlying Rust crates are released together, in lock-step.

### Added

- **`taskito-server` ships as a container image.** `docker/scheduler.Dockerfile` builds a
distroless image around a static binary — no libc and no interpreter, with Postgres and Redis
compiled in — published as a `linux/amd64` + `linux/arm64` manifest at
`ghcr.io/byteveda/taskito-server`. One image schedules for apps written against any SDK, so the
fat application image no longer has to be duplicated for a worker deployment.
- **Java operator admin surface.** `taskito.requeueJob(id)` forces a stuck `running` job back to
`pending` and releases its execution claim, preserving the retry budget — the only recovery path
for a job that neither the timeout reaper nor orphan recovery will touch (use it only once the
Expand Down
Loading