EverTask is a .NET library for executing background tasks (fire and forget, scheduled and recurring). It is designed to be simple and focuses on task persistence, monitoring and resilience. Advanced scenarios like custom resilience policies, task cancellations, continuations and rescheduling are also supported!
๐กNote: We're currently enhancing our documentation and examples. Stay tuned for a range of new, practical usage scenarios and detailed guides!
- Background execution:
Easily run background tasks with parameters in .NET - Persistence
Resumes pending tasks after application restarts. - Managed Parallelism
Efficiently handles concurrent task execution with configurable parallelism. - Scheduled, Delayed and recurring tasks
Schedule tasks for future execution or delay them using a TimeSpan. You can also create recurring tasks, with cron or with a powerful fluent builder! - Resilient execution
A powerful resilience feature to ensure your tasks are robust against transient failures. Fully customizable even with your custom retry policies, easily integrable with Polly - Optional specialized CPU-bound execution
Optimized handling for CPU-intensive tasks with an option to execute in a separate thread, ensuring efficient processing without impacting I/O-bound operations. Use judiciously for tasks requiring significant computational resources. - Timeout management
Configure the maximum execution time for your tasks. - Error Handling
Method overrides for error observation and task completion/cancellation. - Monitoring (local and remote)
Monitor your task with the included in-memory monitoring or remotely with SignalR! (Sentry Crons is coming soon) - SQL Storage
Includes support for SQL Server storage (Sqlite is already implemented and coming soon), enabling persistent task management. - In-Memory Storage
Provides an in-memory storage solution for testing pruposes. - Serilog Integration
Supports integration with Serilog for detailed and customizable logging. - Extensible Storage & Logging
Designed to allow easy plug-in of additional database solutions or logging systems. - Task Continuations and Rescheduling Advanced Workflow Management
- Async All The Way
Fully asynchronous architecture, enhancing performance and scalability in modern environments. - Inspiration from MediaTr
Implementation based on creating requests and handlers.
๐กNote: We are also implementing a web dashboard and + Web API to manage your tasks remotely
EverTask employs a non-polling approach for task management, utilizing the .NET's System.Threading.Channels
to create
a BoundedQueue
that efficiently manages task execution without the need for constant database polling.
Recurring tasks are handled in a custom ConcurrentPriorityQueue
Upon application restart after a stop, any unprocessed tasks are retrieved from the database in bulk and re-queued in the for execution by the background service. This design ensures a seamless and efficient task processing cycle, even across application restarts.
builder.Services.AddEverTask(opt =>
{
opt.RegisterTasksFromAssembly(typeof(Program).Assembly);
})
.AddMemoryStorage();
builder.Services.AddEverTask(opt =>
{
opt.SetChannelOptions(500)
.SetThrowIfUnableToPersist(true)
.RegisterTasksFromAssembly(typeof(AppSettings).Assembly);
})
.AddSqlServerStorage(configuration.GetConnectionString("QueueWorkerSqlStorage")!,
opt =>
{
opt.SchemaName = "EverTask";
opt.AutoApplyMigrations = true;
})
.AddSerilog(opt =>
opt.ReadFrom.Configuration(configuration, new ConfigurationReaderOptions { SectionName = "EverTaskSerilog" }));
For setting up all configurations, refer to the Fluent Service Configuration section.
This example demonstrates how to create a request and its corresponding handler in EverTask. The SampleTaskRequest
and SampleTaskRequestHandler
illustrate the basic structure. Additionally, the handler includes optional overrides
that allow you to control and monitor the lifecycle of a background task, providing hooks for when a task starts,
completes, is disposed, or encounters an error.
public record SampleTaskRequest(string TestProperty) : IEverTask;
public class SampleTaskRequestHanlder : EverTaskHandler<SampleTaskRequest>
{
private readonly ILogger<SampleTaskRequestHanlder> _logger;
public SampleTaskRequestHanlder(ILogger<SampleTaskRequestHanlder> logger)
{
_logger = logger;
}
public override Task Handle(SampleTaskRequest backgroundTask, CancellationToken cancellationToken)
{
_logger.LogInformation($"Property value: {backgroundTask.TestProperty}");
return Task.CompletedTask;
}
}
public override ValueTask OnStarted(Guid taskId)
{
_logger.LogInformation($"====== TASK WITH ID {taskId} STARTED IN BACKGROUND ======");
return ValueTask.CompletedTask;
}
public override ValueTask OnCompleted(Guid taskIdtaskId)
{
_logger.LogInformation($"====== TASK WITH ID {taskId} COMPLETED IN BACKGROUND ======");
return ValueTask.CompletedTask;
}
public override ValueTask OnError(Guid taskId, Exception? exception, string? message)
{
_logger.LogError(exception, $"Error in task with ID {taskId}: {message}");
return ValueTask.CompletedTask;
}
protected override ValueTask DisposeAsyncCore()
{
_logger.LogInformation("====== TASK DISPOSED IN BACKGROUND ======");
return base.DisposeAsyncCore();
}
To dispatch a task, obtain an instance of ITaskDispatcher
. This can be done using Dependency Injection:
// Retrieving ITaskDispatcher via method injection
var _dispatcher = serviceProvider.GetService<ITaskDispatcher>();
// Alternatively, ITaskDispatcher can be injected directly into the constructor of your class
_dispatcher.Dispatch(new SampleTaskRequest("Hello World"));
You can also schedule tasks to be executed after a certain delay. This can be achieved using either TimeSpan
or DateTimeOffset
.
To delay task execution by a relative time period, use TimeSpan
. This is useful when you want to postpone a task by a
specific duration, such as 30 minutes or 2 hours from now.
// Delaying task execution by 30 minutes
var delay = TimeSpan.FromMinutes(30);
_dispatcher.Dispatch(new SampleTaskRequest("Delayed Task"), delay);
Alternatively, use DateTimeOffset
for scheduling a task at a specific future point in time. This is particularly
useful for tasks that need to be executed at a specific date and time, regardless of the current moment.
// Scheduling a task for a specific time in the future
var scheduledTime = DateTimeOffset.Now.AddHours(2); // 2 hours from now
_dispatcher.Dispatch(new SampleTaskRequest("Scheduled Task"), scheduledTime);
In addition to delayed and scheduled tasks, you can also configure recurring tasks. These tasks repeat at specified intervals, providing a powerful way to automate ongoing processes.
You can schedule recurring tasks using various approaches, with cron and with a fluent scheduler. Below are some examples with explanations:
EverTask's powerful fluent builder offers a wide range of scheduling capabilities for your background tasks. Whether you need simple scheduling or complex recurring patterns, the fluent builder simplifies the process with an intuitive and readable syntax. Here are some examples demonstrating different ways to configure your tasks:
// Scheduling a task to run every minute at the 30th second
await dispatcher.Dispatch(new SampleTaskRequest("Test"),
builder => builder.Schedule().EveryMinute().AtSecond(30));
// Scheduling a task to run every hour at the 45th minute, limited to 10 runs
await dispatcher.Dispatch(new SampleTaskRequest("Test"),
builder => builder.RunNow().Then().EveryHour().AtMinute(45).MaxRuns(10));
// Scheduling a task to run every hour at the 45th minute, for the next 2 days
await dispatcher.Dispatch(new SampleTaskRequest("Test"),
builder => builder.RunNow().Then().EveryHour().AtMinute(45).RunUntil(DateTimeOffset.UtcNow.AddDays(2));
// Scheduling a task to run daily at specific times
var times = new[] { new TimeOnly(12, 0), new TimeOnly(18, 0) };
await dispatcher.Dispatch(new SampleTaskRequest("Test"),
builder => builder.Schedule().Every(3).Days().AtTimes(times));
// Scheduling a task to run on specific days of the week
var days = new[] { DayOfWeek.Monday, DayOfWeek.Wednesday, DayOfWeek.Friday };
await dispatcher.Dispatch(new SampleTaskRequest("Test"),
builder => builder.Schedule().EveryMonth().OnDays(days));
// Running a task immediately, then every 2 month on the 15th
await dispatcher.Dispatch(new SampleTaskRequest("Test"),
builder => builder.RunNow().Then().Every(2).Months().OnDay(15));
// Scheduling a task to run on the first Monday of every month
await dispatcher.Dispatch(new SampleTaskRequest("First Monday"),
builder => builder.Schedule().EveryMonth().OnFirst(DayOfWeek.Monday));
// Scheduling a task to run on every second month, starting from February
int[] everyOtherMonth = { 2, 4, 6, 8, 10, 12 };
await dispatcher.Dispatch(new SampleTaskRequest("Bi-monthly"),
builder => builder.Schedule().OnMonths(everyOtherMonth));
// Delaying task execution by 30 seconds
await dispatcher.Dispatch(new SampleTaskRequest("Delayed"),
builder => builder.RunDelayed(TimeSpan.FromSeconds(30)));
// Scheduling a task for a specific future time
var dateTimeOffset = new DateTimeOffset(2023, 12, 25, 10, 0, 0, TimeSpan.Zero);
await dispatcher.Dispatch(new SampleTaskRequest("Scheduled"),
builder => builder.RunAt(dateTimeOffset));
// Running a task now, then scheduling it to run every 2 hours at the 15th minute
await dispatcher.Dispatch(new SampleTaskRequest("Combined"),
builder => builder.RunNow().Then().Every(2).Hours().AtMinute(15));
// Delaying the first run of a task, then executing it every day at noon
await dispatcher.Dispatch(new SampleTaskRequest("Delayed Daily"),
builder => builder.RunDelayed(TimeSpan.FromMinutes(10)).Then().EveryDay().AtTime(new TimeOnly(12, 0)));
// Scheduling a task to run on specific months (January, April, July, October)
int[] specificMonths = { 1, 4, 7, 10 };
await dispatcher.Dispatch(new SampleTaskRequest("Quarterly"),
builder => builder.RunAt(DateTimeOffset.UtcNow.AddHours(1)).Then().OnMonths(specificMonths));
// Scheduling a task to run every day, with a maximum of 5 executions
await dispatcher.Dispatch(new SampleTaskRequest("Max Runs"),
builder => builder.Schedule().EveryDay().MaxRuns(5));
// Scheduling a task to run every day, for the next 5 days
await dispatcher.Dispatch(new SampleTaskRequest("Max Runs"),
builder => builder.Schedule().EveryDay().RunUntil(DateTimeOffset.UtcNow.AddDays(5));
Cron expressions are powerful tools for defining complex time-based schedules. Originating from Unix systems, they provide a concise way to specify patterns for recurring tasks. A cron expression consists of fields representing different time units, like minutes, hours, days, and months.
With EverTask, you can leverage the power of cron expressions to schedule tasks with great flexibility. Whether you need a task to run every hour, on specific days of the week, or at a particular time each month, cron expressions make it possible.
Implementing Cron Scheduling in EverTask Here are some examples of using cron expressions in EverTask to schedule tasks:
// Execute task immediately, then repeat according to a Cron schedule
await _dispatcher.Dispatch(task, builder => builder.RunNow().Then().UseCron("*/2 * * * *").MaxRuns(3));
// Execute task after a short delay, then repeat according to a Cron schedule
await _dispatcher.Dispatch(task, builder => builder.RunDelayed(TimeSpan.FromSeconds(0.5)).Then().UseCron("*/2 * * * *"));
// Schedule task to start at a specific time, then repeat according to a Cron schedule
await _dispatcher.Dispatch(task, builder => builder.RunAt(dateTimeOffset)).Then().UseCron("*/2 * * * *").MaxRuns(3));
// Schedule task to start at a specific time, then repeat according to a Cron schedule
await _dispatcher.Dispatch(task, builder => builder.RunAt(dateTimeOffset)).Then().UseCron("*/2 * * * *").MaxRuns(3));
var cronEvery30Minutes = "*/30 * * * *";
await dispatcher.Dispatch(new SampleTaskRequest("Every 30 Minutes"),
builder => builder.Schedule().UseCron(cronEvery30Minutes)).RunUntil(DateTimeOffset.UtcNow.AddDays(2));
var cronAtNoon = "0 12 * * *";
await dispatcher.Dispatch(new SampleTaskRequest("Daily at Noon"),
builder => builder.Schedule().UseCron(cronAtNoon));
var cronEveryMondayMorning = "0 8 * * 1"; // 8 AM on Monday
await dispatcher.Dispatch(new SampleTaskRequest("Every Monday Morning"),
builder => builder.Schedule().UseCron(cronEveryMondayMorning));
๐ก Remember: Delayed, scheduled and recurring tasks are also persistent. If your app restarts, you won't lose these tasks โ they'll be executed at the right time!
When you dispatch, you can capture the returned GUID to keep track of the task. If you need to cancel this task before
it starts, use the Cancel
method of ITaskDispatcher
with this ID.
// Dispatching a task and getting its unique ID
Guid taskId = _dispatcher.Dispatch(new SampleTaskRequest("Cancelable Task"));
// Cancelling the task
_dispatcher.Cancel(taskId);
๐ก Note: The
Cancel
method triggers theCancellationToken
in the task'sHandle
method. Tasks should check this token regularly to enable cooperative cancellation. Remember, this only affects tasks in progress; tasks cancelled before execution won't run.
EverTask provides a flexible approach to managing task execution times with its timeout functionality.
A global default timeout for all tasks can be set using the SetDefaultTimeout
option in the EverTask configuration. This timeout defines a uniform maximum duration for task execution, after which the CancellationToken
will be marked as cancelled.
// Example of setting a global default timeout
builder.Services.AddEverTask(opt =>
{
opt.SetDefaultTimeout(TimeSpan.FromMinutes(5)); // Sets a global timeout of 5 minutes
});
In addition to the global timeout, individual task handlers can specify their own timeout periods. This is achieved by setting the Timeout property in the task handler, allowing for task-specific timeout durations.
public class MyCustomTimeoutTaskHandler : EverTaskHandler<MyTask>
{
public MyCustomTimeoutTaskHandler()
{
// Setting a custom timeout for this specific handler
Timeout = TimeSpan.FromMinutes(2);
}
public override Task Handle(CancellationToken cancellationToken)
{
// Task handling logic
}
}
In addition to its default async-await behavior, which is ideal for I/O-bound operations (like database operations, email sending, file generation, etc.), EverTask provides a specialized handling mechanism for CPU-bound tasks. This is crucial for tasks that involve intensive computational work, such as data processing or complex calculations.
This is controlled by the CpuBoundOperation
property in the EverTaskHandler
.
public class MyCustomCPUIntensiveTaskHandler : EverTaskHandler<MyCPUIntensiveTask>
{
public MyCustomCPUIntensiveTaskHandler()
{
CpuBoundOperation = true;
}
public override Task Handle(CancellationToken cancellationToken)
{
// CPU-intensive task logic
}
}
๐ก Note: When using CpuBoundOperation to execute tasks in a separate thread, be mindful of potential overhead and concurrency issues. This feature is best used for genuinely CPU-intensive tasks. Excessive use can lead to increased resource utilization and complexity.
EverTask now includes a powerful resilience feature to ensure your tasks are robust against transient failures. This is achieved through customizable retry policies, which are applied to task executions.
Tasks by default use the LinearRetryPolicy
, set in the global configuration (SetDefaultRetryPolicy
). This default policy attempts three executions with a 500-millisecond delay between them, addressing temporary issues that might hinder task completion.
You can also set your customized global deault policy:
// Example of setting a customized global default RetryPolicy
builder.Services.AddEverTask(opt =>
{
opt.SetDefaultRetryPolicy(new LinearRetryPolicy(4, TimeSpan.FromMilliseconds(200)));
});
// Handler automatically inherits the default LinearRetryPolicy
public class MyTaskHandler : EverTaskHandler<MyTask>
{
public override Task Handle(CancellationToken cancellationToken)
{
// Task handling logic
}
}
For each task handler, you can define or override the default retry policy settings. This includes changing the number
of execution attempts, fixed execution times, or providing an array of TimeSpan
values for the retry delays.
Retries with a fixed delay:
public class MyCustomRetryTaskHandler : EverTaskHandler<MyCustomRetryTask>
{
public MyCustomRetryTaskHandler()
{
// Setting a custom LinearRetryPolicy with 2 retries and 300ms delay
RetryPolicy = new LinearRetryPolicy(2, TimeSpan.FromMilliseconds(300));
}
public override Task Handle(CancellationToken cancellationToken)
{
// Task handling logic
}
}
With an array of timespan:
public class MyCustomRetryTaskHandler : EverTaskHandler<MyCustomRetryTask>
{
public MyCustomRetryTaskHandler()
{
// Define a LinearRetryPolicy with custom delays
RetryPolicy = new LinearRetryPolicy(new TimeSpan[]
{
TimeSpan.FromMilliseconds(200), // First delay
TimeSpan.FromMilliseconds(300), // Second delay
TimeSpan.FromMilliseconds(600) // Third delay
});
}
public override Task Handle(CancellationToken cancellationToken)
{
// Task handling logic
}
}
EverTask's design allows for the implementation of custom retry policies. You can create your own policy by implementing the IRetryPolicy
interface. This enables you to craft unique retry mechanisms tailored to the specific requirements of your tasks.
Below is an example of implementing a custom retry policy using Polly:
using Polly;
using Polly;
using System;
using System.Threading;
using System.Threading.Tasks;
public class MyCustomRetryPolicy : IRetryPolicy
{
private readonly AsyncRetryPolicy _pollyRetryPolicy;
public MyCustomRetryPolicy()
{
// Define your Polly retry policy here.
// For example, a policy that retries three times with an exponential backoff.
_pollyRetryPolicy = Policy
.Handle<Exception>() // Specify the exceptions you want to handle/retry on
.WaitAndRetryAsync(3, retryAttempt =>
TimeSpan.FromSeconds(Math.Pow(2, retryAttempt)), // exponential back-off: 2, 4, 8 seconds
onRetry: (exception, timeSpan, retryCount, context) =>
{
// You can log the retry attempt here if needed
}
);
}
public async Task Execute(Func<CancellationToken, Task> action, CancellationToken token = default)
{
// Use Polly's ExecuteAsync method to apply the retry policy to the passed action.
// The passed CancellationToken is respected in the retry policy.
await _pollyRetryPolicy.ExecuteAsync(async (ct) =>
{
await action(ct);
}, token);
}
}
๐ก Note: The
CancellationToken
provided to the policy is signaled as canceled when the task is halted using.Cancel
, or if the worker service stops. This ensures that your custom policy remains synchronized with the task's lifecycle.
Then on your handler:
public class MyCustomRetryTaskHandler : EverTaskHandler<MyCustomRetryTask>
{
public MyCustomRetryTaskHandler()
{
// Setting your custom RetryPolicy
RetryPolicy = new MyCustomRetryPolicy();
}
public override Task Handle(CancellationToken cancellationToken)
{
// Task handling logic
}
}
Of course, you can also set your polly policy as a default if you wish:
// Example of setting a customized global default RetryPolicy
builder.Services.AddEverTask(opt =>
{
opt.SetDefaultRetryPolicy(new MyCustomRetryPolicy());
});
In EverTask, every task handler's Handle
method is provided with a CancellationToken
. This token is crucial for
effectively managing task interruptions when the EverTask WorkerService is stopped.
If the WorkerService is halted, the CancellationToken
is set to a cancelled state. Tasks interrupted in this manner
are marked as ServiceStopped
and are re-queued upon the application's next restart.
This ensures no tasks are lost due to service stops, and the presence of CancellationToken
in the Handle
method
allows for custom logic to track and manage partial execution of tasks.
EverTask supports not only task continuations but also the rescheduling of tasks, providing a comprehensive approach to advanced workflow management.
You can chain tasks for sequential execution by utilizing the lifecycle methods in task handlers. Overriding methods
like OnComplete
or OnError
allows you to dispatch new tasks based on the outcome of the current task.
public class MyTaskHandler : EverTaskHandler<MyTaskRequest>
{
private readonly IEverTaskDispatcher _dispatcher;
public MyTaskHandler(IEverTaskDispatcher dispatcher)
{
_dispatcher = dispatcher;
}
public override ValueTask OnCompleted(Guid taskId)
{
// Dispatch another task upon completion
_dispatcher.Dispatch(new AnotherTaskRequest());
return base.OnCompleted(taskId);
}
}
In addition to task chaining, EverTask also enables task rescheduling within the same lifecycle methods. This feature is particularly useful for tasks that need to be executed repeatedly or at different intervals, depending on certain conditions or outcomes.
public class MyReschedulingTaskHandler : EverTaskHandler<MyTaskRequest>
{
private readonly IEverTaskDispatcher _dispatcher;
public MyReschedulingTaskHandler(IEverTaskDispatcher dispatcher)
{
_dispatcher = dispatcher;
}
public override ValueTask OnCompleted(Guid taskId)
{
// Reschedule the same task based on certain conditions or logic
_dispatcher.Dispatch(new MyTaskRequest(), TimeSpan.FromMinutes(30)); // Rescheduling after 30 minutes
return base.OnCompleted(taskId);
}
}
With these capabilities, EverTask offers unparalleled flexibility in creating sophisticated, custom-tailored workflows for background task processing. Whether you need to chain tasks sequentially or reschedule them based on specific criteria, EverTask provides the necessary tools for robust and efficient task management.
EverTask provides basic task monitoring through the TaskEventOccurredAsync
event, accessible via dependency injection from IEverTaskWorkerExecutor
. This event aggregates all the events generated by EverTask's WorkerService. Here's an example of how it can be utilized:
In your service class, you can subscribe to the TaskEventOccurredAsync
event. For instance:
public class MyService
{
public MyService(IEverTaskWorkerExecutor executor, ILogger<EverTaskTestController> logger)
{
executor.TaskEventOccurredAsync += data =>
{
logger.LogInformation("Message received from EverTask Worker Server: {@eventData}", data);
return Task.CompletedTask;
};
}
}
The above code will produce this output:
Message received from EverTask Worker Server: EverTaskEventData { TaskId = dc49351d-476d-49f0-a1e8-3e2a39182d22, EventDateUtc = 19/11/2023 16:10:20 +00:00, Severity = Information, TaskType = EverTask.Example.AspnetCore.SampleTaskRequest, TaskHandlerType = EverTask.Example.AspnetCore.SampleTaskRequestHanlder, TaskParameters = {"TestProperty":"Hello World"}, Message = Task with id dc49351d-476d-49f0-a1e8-3e2a39182d22 was completed., Exception = }
Here, data
is of type EverTaskEventData
which includes detailed information about the event:
public record EverTaskEventData(
Guid TaskId,
DateTimeOffset EventDateUtc,
string Severity,
string TaskType,
string TaskHandlerType,
string TaskParameters,
string Message,
string? Exception = null);
//Possible enum values
public enum SeverityLevel
{
Information,
Warning,
Error
}
This allows users to trigger custom code based on the events produced by EverTask.
Additionally, EverTask offers real-time monitoring through a SignalR hub, available with the EverTask.Monitoring.AspnetCore.SignalR
package for ASP.NET Core applications.
To use it, first register the service in your startup configuration:
builder.Services.AddEverTask(opt =>
{
opt
.RegisterTasksFromAssembly(typeof(Program).Assembly);
})
.AddMemoryStorage()
.AddSignalRMonitoring();
Then, register the middleware:
app.MapEverTaskMonitorHub();
This creates a SignalR hub at the URL /evertask/monitoring
. You can customize this URL, for example:
app.MapEverTaskMonitorHub("/task-monitoring");
The hub sends all events in real-time to all connected clients. The event type is always EverTaskEventData
.
Future updates will include new monitoring systems such as Email Alerts, ApplicationInsights, OpenTelemetry, etc.
๐ก Note: Depending on EverTask's configuration, all events are also written to the logs as per the chosen configuration. Additionally, if SQL persistence is used, the task status and its audit trail can always be checked in the database.
ย
EverTaskService
can be configured using a series of fluent methods, allowing a clear and user-friendly way to set up
the service. These methods enable precise control over task processing, persistence, and parallel execution. Below are
the available configuration methods, along with their default values and types:
- Type:
Action<BoundedChannelOptions>
orint
- Default: Capacity set to 500,
FullMode
set toBoundedChannelFullMode.Wait
- Functionality: Configures the behavior of the task queue. You can directly specify the queue capacity or provide
a
BoundedChannelOptions
object. This defines the maximum number of tasks that can be queued and the behavior when the queue is full.
- Type:
bool
- Default:
true
- Functionality: Determines whether the service should throw an exception if it is unable to persist a task. When enabled, it ensures that task persistence failures are explicitly managed, aiding in data integrity.
- Type:
int
- Default:
1
- Functionality: Sets the maximum number of tasks that can be executed concurrently. The default sequential execution can be adjusted to enable parallel processing, optimizing task throughput in multi-core systems.
- Type:
IRetryPolicy
- Default:
LinearRetryPolicy
(with 3 tries every 500 milliseconds) - Functionality: Defines a global default retry policy for tasks, using
LinearRetryPolicy
(3 attempts, 500 ms delay) unless overridden in task handlers. Supports custom policies viaIRetryPolicy
interface implementation.
- Type:
TimeSpan?
- Default:
null
- Functionality: Specifies a global default timeout for tasks. If set, the
CancellationToken
provided to task handlers will be cancelled after the timeout duration. Users must handle this cancellation in their task logic. Setting tonull
means tasks have no default timeout and will run until completion or external cancellation.
- Functionality: Facilitates the registration of task handlers from a single assembly. This is particularly beneficial for applications structured in a modular fashion, enabling easy integration of task handlers.
- Functionality: Allows for the registration of task handlers from multiple assemblies. This approach suits larger applications with distributed task handling logic spread across various modules or libraries.
- Schema Management: EverTask creates a new schema named
EverTask
by default. This approach avoids adding clutter to the main data schema. - Schema Customization: Allows specifying a different schema or using
null
to default to the main schema. - Migration Table: If using a custom Schema, event the Entity Framework Core migration table will be placed in that schema.
- Migration Handling: Option to apply database migrations automatically or handle them manually.
- Default Logging: Uses .NET configured
ILogger
by default. - Serilog Option: Enables adding Serilog as a separate logger for EverTask, with customizable options.
- Example Configuration in appsettings.json:
"EverTaskSerilog": { "MinimumLevel": { "Default": "Information", "Override": { "Default": "Information", "Microsoft": "Warning", "Microsoft.AspNetCore.SpaProxy": "Information", "Microsoft.Hosting.Lifetime": "Information", "Microsoft.EntityFrameworkCore.Database.Command": "Information" } }, "WriteTo": [ { "Name": "Console" }, { "Name": "File", "Args": { "path": "Logs/evertask-log-.txt", "rollingInterval": "Day", "fileSizeLimitBytes": 10485760, "retainedFileCountLimit": 10, "shared": true, "flushToDiskInterval": "00:00:01" } } ], "Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ], "Properties": { "Application": "CliClub" } }
EverTask is complemented by the EverTask.Abstractions
package, designed for use in Application projects where
additional implementations are not required. This allows separation of concerns, keeping your application layer free
from infrastructural code.
In your Infrastructure project, where EverTask is added, specify the assembly (or assemblies) containing IEverTask
requests. This modular approach ensures that the application layer remains clean and focused, while the infrastructure
layer handles task execution and management.
EverTask uses Newtonsoft.Json for serializing and deserializing task requests, due to its robust support for
polymorphism and inheritance, features that are limited in System.Text.Json. It is recommended to use simple objects for
task requests, preferably primitives or uncomplicated complex objects, to ensure smooth serialization. In cases where
EverTask is unable to serialize a request, it will throw an exception during the Dispatch
method. This design choice
emphasizes reliability in task persistence, ensuring that only serializable tasks are queued for execution.
Feature | Description |
---|---|
Web Dashboard | Implement a simple web dashboard for monitoring tasks. Also there will be some management capability (start/stop a task, change some execution parameters) |
WebApi | Webapi endpoints to list and manage tasks execution in EverTask remotely |
Support for new monitoring Options | Sentry Crons, Email alerts, application insights, open telemetry, ecc.. |
Support for new Storage Options | Considering the inclusion of additional storage options like Sqlite, Redis, MySql, Postgres, and various DocumentDBs initially supported by EfCore, with the possibility of expanding to other databases. |
Queue customization | Create custom queues (each with his own, custom, degree of parallelism) to split task execution (for example by priority) |
Clustering tasks | I'm toying with the idea to allow multiple server running evertask to create a simple cluster for tasks execution, with rules like loading balance, fail-over |
Improving documentation | docs needs more love... |
ย
Special thanks to jbogard for the MediaTr project, providing significant inspiration in the development of key components of this library, especially in the creation of:
I have included comments within these files to acknowledge and reference the specific parts of the MediaTr project that inspired them.
Their approach and architecture have been instrumental in shaping the functionality and design of these elements.
This project includes code from MediatR, which is licensed under the Apache 2.0 License. The full text of the license can be found in the LICENSE file.