magento-cronjob-developer
Implements scheduled tasks and background processing for Magento 2. Use when creating cron jobs, scheduling automated tasks, implementing background processing, or automating system operations. Masters cron configuration, job scheduling, error handling, and performance optimization.
What this skill does
# Magento 2 Cron Job Developer
Expert specialist in creating reliable, efficient scheduled tasks and background processes that automate critical business operations while maintaining system performance and reliability.
## When to Use
- Creating scheduled tasks
- Implementing background processing
- Automating system operations
- Building data synchronization jobs
- Implementing maintenance tasks
- Creating notification systems
## Cron Job Architecture
- **Cron Configuration**: Master crontab.xml configuration and job scheduling
- **Job Classes**: Implement robust job execution classes and error handling
- **Schedule Management**: Design flexible scheduling patterns and intervals
- **Resource Management**: Optimize memory and processing resource usage
- **Dependency Management**: Handle job dependencies and execution order
## Cron Development Process
### 1. Job Planning & Design
- **Requirements Analysis**: Understand business requirements and execution patterns
- **Performance Planning**: Plan for expected load and resource requirements
- **Error Scenarios**: Identify potential failure points and recovery strategies
- **Monitoring Strategy**: Plan logging, alerts, and performance tracking
- **Integration Points**: Design integration with existing systems and processes
### 2. Configuration Setup
- **Crontab Configuration**: Configure job scheduling in `etc/crontab.xml`
- **Group Organization**: Organize jobs into logical groups and categories
- **Schedule Definition**: Define appropriate execution intervals and timing
- **Resource Allocation**: Plan memory limits and execution timeouts
- **Environment Configuration**: Configure for different environments
### 3. Job Implementation
- **Job Class Development**: Create robust job execution classes
- **Business Logic**: Implement core job functionality and operations
- **Data Processing**: Handle data validation, transformation, and storage
- **Error Handling**: Implement comprehensive error handling and logging
- **Progress Tracking**: Create progress monitoring and status reporting
### 4. Testing & Deployment
- **Unit Testing**: Test individual job components and logic
- **Integration Testing**: Test job integration with system components
- **Performance Testing**: Validate job performance under expected load
- **Error Testing**: Test error scenarios and recovery mechanisms
- **Deployment Strategy**: Plan safe deployment and rollback procedures
## Cron Configuration
### crontab.xml Structure
```xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Cron:etc/crontab.xsd">
<group id="default">
<job name="vendor_module_job" instance="Vendor\Module\Cron\Job" method="execute">
<schedule>*/5 * * * *</schedule>
</job>
</group>
</config>
```
### Job Class Implementation
```php
<?php
declare(strict_types=1);
namespace Vendor\Module\Cron;
use Psr\Log\LoggerInterface;
class Job
{
/**
* @param LoggerInterface $logger
*/
public function __construct(
private readonly LoggerInterface $logger
) {
}
/**
* Execute cron job
*/
public function execute(): void
{
try {
// Job logic here
$this->logger->info('Cron job executed successfully');
} catch (\Exception $e) {
$this->logger->error('Cron job failed: ' . $e->getMessage());
throw $e;
}
}
}
```
## Specialized Cron Job Types
### E-commerce Automation
- **Inventory Updates**: Automated stock level synchronization and alerts
- **Price Updates**: Scheduled pricing changes and promotional activations
- **Order Processing**: Automated order status updates and fulfillment
- **Customer Communications**: Automated email campaigns and notifications
- **Report Generation**: Scheduled business reports and analytics
### Data Management Jobs
- **Data Import/Export**: Automated data synchronization with external systems
- **Database Maintenance**: Scheduled cleanup, optimization, and archiving
- **Log Management**: Automated log rotation, cleanup, and archiving
- **Backup Operations**: Scheduled backup creation and validation
- **Cache Management**: Automated cache warming and invalidation
### System Maintenance
- **Performance Monitoring**: Automated system health checks and alerts
- **Security Scans**: Scheduled security audits and vulnerability checks
- **Update Processes**: Automated system and extension updates
- **Cleanup Operations**: Temporary file cleanup and resource optimization
- **Index Management**: Automated reindexing and search optimization
### Integration Jobs
- **API Synchronization**: Scheduled data sync with external APIs
- **Third-party Updates**: Automated integration with external services
- **Webhook Processing**: Background processing of webhook notifications
- **Data Transformation**: Automated data transformation and migration
- **Notification Delivery**: Scheduled notification and alert delivery
## Best Practices
### Performance
- **Batch Processing**: Process data in batches to avoid memory issues
- **Resource Management**: Monitor and limit memory usage
- **Execution Time**: Set appropriate execution timeouts
- **Lock Management**: Prevent job overlap and resource conflicts
- **Optimization**: Optimize queries and data processing
### Reliability
- **Error Handling**: Comprehensive error handling and logging
- **Retry Mechanisms**: Implement retry logic for transient failures
- **Monitoring**: Log job execution and errors
- **Alerting**: Set up alerts for job failures
- **Recovery**: Implement recovery mechanisms for failed jobs
### Security
- **Access Control**: Ensure proper permissions for job execution
- **Data Validation**: Validate all input data
- **Error Messages**: Don't expose sensitive information in error messages
- **Logging**: Log security-relevant events
- **Audit Trail**: Maintain audit trails for critical operations
## Testing
- **Unit Tests**: Test job logic in isolation
- **Integration Tests**: Test job integration with system components
- **Performance Tests**: Validate job performance under load
- **Error Tests**: Test error scenarios and recovery
- **Schedule Tests**: Verify cron schedule configuration
## Monitoring & Debugging
### Logging
```php
$this->logger->info('Job started');
$this->logger->debug('Processing item: ' . $itemId);
$this->logger->error('Job failed: ' . $exception->getMessage());
```
### Cron Status
```bash
# Check cron status
bin/magento cron:status
# Run cron manually
bin/magento cron:run
# Check cron schedule
bin/magento cron:schedule
```
## References
- [Adobe Commerce Cron](https://developer.adobe.com/commerce/php/development/components/cron/)
- [Scheduled Tasks](https://developer.adobe.com/commerce/php/development/components/cron/)
Focus on creating reliable, efficient cron jobs that automate business operations while maintaining system performance and reliability.
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.