Junior 3 min · March 19, 2026

AutoSys autorep — Filtering 10K Jobs With -s FA

3 failed x_ prefixed jobs hid mid-scroll in 10,000 lines of alphabetical autorep output.

N
Naren Founder & Principal Engineer

20+ years shipping production infrastructure and CI/CD at scale. Notes here come from systems that actually shipped.

Follow
Production
production tested
May 23, 2026
last updated
1,554
articles · all by Naren
 ● Production Incident 🔎 Debug Guide ⚙ Triage Commands
Quick Answer
  • autorep is AutoSys reporting command to check job status, view definitions, and generate reports — primary monitoring tool
  • Key flags: -J (job name with % wildcard), -s (status filter), -d (detailed view), -q (JIL output), -M (machine status)
  • Performance: autorep queries Event Server database; large environments (10K+ jobs) can take 5-10 seconds — use -s to filter before display
  • Production trap: autorep -J % without filter in large environment returns 10K lines, scrolls off terminal, operator misses failures
  • Biggest mistake: Not using -q to backup job definitions before bulk JIL changes — accidental delete loses all jobs with no recovery
✦ Definition~90s read
What is AutoSys autorep Command?

AutoSys autorep is a command-line utility for querying job status and metadata in CA Workload Automation (AutoSys). It's the primary tool for operational visibility — checking if a job ran, what its current status is, or pulling its JIL definition. When you're managing 10,000+ jobs, autorep -s FA (filtering for 'Failed' status) becomes a surgical strike: it queries only jobs in a specific state, avoiding the memory and performance crash that comes from dumping all jobs and grepping client-side.

autorep is like the 'check status' button on a delivery tracking website.

Without -s, autorep returns every job, which can lock up your terminal or overwhelm your session on large instances.

The -q flag outputs the raw JIL (Job Information Language) definition — the exact configuration that defines a job's command, machine, conditions, and dependencies. This is essential for cloning jobs or debugging why a job behaves unexpectedly. The -d flag gives detailed runtime info: last start time, exit code, and current status.

For historical auditing, -L is the only reliable option — it reads the event log to show every run of a job, including past failures and successes, unlike -s which only shows current state. The -w flag watches jobs in real-time, polling for status changes; it's how you avoid whack-a-mole alerting by setting up automated responses to specific exit codes or status transitions.

In the ecosystem, autorep competes with the GUI (AutoSys Admin Console) and REST APIs in newer versions. Use autorep when you need scriptable, repeatable queries — cron jobs, monitoring integrations, or ad-hoc debugging. Don't use it for bulk exports of 50K+ jobs; that's what autorep -J ALL -q piped to a file is for, but even then, throttle with -s filters.

For real-time alerting, pair -w with a script that triggers on status changes, rather than polling every minute with -s — that's a recipe for database contention and missed alerts.

Plain-English First

autorep is like the 'check status' button on a delivery tracking website. You tell it which jobs you want to track (by name or pattern), and it tells you what's happening — whether they're running, succeeded, failed, or waiting.

autorep (short for 'auto report') is the command you'll run dozens of times every day as an AutoSys operator. It's how you check job statuses, view job definitions, and generate reports. Mastering autorep patterns makes you dramatically faster at monitoring and troubleshooting.

But autorep can be dangerous. Run autorep -J % in an environment with 10,000 jobs and you'll flood your terminal with 10,000 lines of output. The failures you care about scroll past before you see them. Without -s FA (filter failures) and -d (detailed view), you'll miss critical information. And without -q backups, an accidental jil < delete_all.jil is catastrophic.

By the end you'll know every useful autorep flag, practical query patterns for finding failed jobs, how to back up job definitions, and how to avoid the terminal-clogging trap that hides failures.

How AutoSys autorep -s FA Filters 10K Jobs Without Crashing

The autorep command in AutoSys is the primary interface for querying job definitions and statuses from the AutoSys database. The -s FA flag filters the report to show only jobs with a status of 'FAILURE' — meaning jobs that have terminated abnormally. This is not a live poll; autorep reads from the Event Server's database, which stores the last known status for each job. For a system managing 10,000+ jobs, autorep -s FA returns only the subset of jobs that failed, typically 1-5% of total jobs, making it efficient for daily operations. The command queries the database using a WHERE clause on the status column, so performance depends on database indexing. In practice, autorep -s FA is used in monitoring scripts and dashboards to quickly identify failed jobs without parsing the entire job stream. It's the go-to command for operations teams during shift handovers to assess system health — a single command can surface 50 failed jobs out of 10,000 in under a second, provided the database is tuned.

Status vs. Exit Code
autorep -s FA shows jobs with FAILURE status, not necessarily non-zero exit codes — a job can exit with code 1 but still be marked SUCCESS if the job definition overrides exit codes.
Production Insight
Teams relying on autorep -s FA for alerting often miss jobs that failed but were restarted automatically — the status resets to RUNNING/SUCCESS, hiding the failure from the report.
The symptom: a job fails at 2 AM, autorep -s FA at 8 AM shows zero failures, but the downstream job is still waiting for data.
Rule of thumb: always pair autorep -s FA with a query on the last N hours of job history (autorep -J <job> -q) to catch transient failures that were auto-restarted.
Key Takeaway
autorep -s FA is a filtered query, not a live poll — it reads the last known status from the Event Server database.
For 10K+ job environments, always ensure the status column is indexed to keep autorep response under 1 second.
Never use autorep -s FA as the sole failure detector — it misses jobs that failed and were restarted before the query ran.
autorep Flag Reference autorep Flag Reference. Key flags and what they return · Basic status · autorep -J jobname · shows ST / exit / last start · % wildcard for all jobs · -d DetailTHECODEFORGE.IOautorep Flag ReferenceKey flags and what they return Basic statusautorep -J jobnameshows ST / exit / last start% wildcard for all jobs -d Detailfull attributes shownactive overrides flaggedruntime and exit code-run N for history -q JIL dumpoutputs JIL formatredirect to backup fileuse before any changestemplate for new jobs -s Filterfilter by status code-s FA for failures-s RU for running-s PE for PEND_MACH -M Machinesautorep -M %all agent statusesACTIVE / MISSINGautorep -M servername -run Historyautorep -J job -run 1previous run details-run 2 for two backcompare across runsTHECODEFORGE.IO
thecodeforge.io
autorep Flag Reference
Autosys Autorep Command

Basic autorep usage

The most common use is checking the status of one or more jobs.

io/thecodeforge/autosys/autorep_basic.shBASH
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Check a single job
autorep -J daily_report

# Check all jobs (% is the wildcard in AutoSys)
autorep -J %

# Check all jobs matching a pattern
autorep -J eod_%        /* all jobs starting with eod_ */
autorep -J %_extract    /* all jobs ending with _extract */
autorep -J etl_*_load   /* wildcard in middle */

# Check all jobs inside a specific box
autorep -J eod_box%

# Check machine status
autorep -M %            /* all machines */
autorep -M prod-server-01
Production Insight
In an environment with 10,000 jobs, autorep -J % produces 10,000 lines of output. The failures you need to see scroll past in milliseconds.
Always filter by status: -s FA (failures), -s RU (running), -s PE (PEND_MACH). This reduces output to only what matters.
Rule: Never run autorep -J % without filtering in production. Use autorep -J % -s FA as your default.
Key Takeaway
autorep is the primary status and reporting command — use it for checking job status, viewing definitions, and generating reports.
% is the wildcard for job name matching; use it freely but always filter by status in large environments.
Rule: For quick failure check: autorep -J % -s FA. For detailed failure info: autorep -J % -s FA -d.

The -q flag — getting JIL definitions

The -q flag outputs the job definition in JIL format. This is essential for backups, auditing, and creating job templates.

io/thecodeforge/autosys/autorep_q.shBASH
1
2
3
4
5
6
7
8
9
10
11
# Get JIL definition of one job
autorep -J daily_report -q

# Backup all jobs to a file
autorep -J % -q > /backup/all_jobs_$(date +%Y%m%d).jil

# Backup all jobs in a box
autorep -J eod_box% -q > /backup/eod_jobs_backup.jil

# Compare with previous backup (useful for change auditing)
diff /backup/eod_jobs_20260318.jil /backup/eod_jobs_20260319.jil
Regular JIL backups are good practice
Automate autorep -J % -q > /backup/all_jobs_$(date +%Y%m%d).jil as a daily AutoSys job itself. When someone accidentally deletes or corrupts a job, yesterday's backup saves the day.
Production Insight
An engineer once ran a JIL script that accidentally deleted 2,000 jobs. Without a backup, recovery would take days of manual work.
Daily autorep -J % -q backups cost nothing but save months of recovery time. Store backups in version control (Git).
Rule: Backup all jobs weekly and before any bulk JIL change. Use diff to audit changes: diff yesterday.jil today.jil shows exactly what changed.
Key Takeaway
-q outputs JIL format — use it to back up job definitions before making changes.
Regular backups (daily or weekly) protect against accidental deletions or corruptions.
Rule: Automate autorep -J % -q as a scheduled AutoSys job. Store in version control for audit trail.

The -d flag — detailed job information

The -d flag shows all attributes of a job including its current runtime and any active overrides — much more detail than the default status view.

io/thecodeforge/autosys/autorep_d.shBASH
1
2
3
4
5
6
7
8
9
10
11
# Detailed view of one job
autorep -J daily_report -d

# Check prior runs (-run flag)
autorep -J daily_report -run 1    /* previous run */
autorep -J daily_report -run 2    /* run before that */

# Filter by status
autorep -J % -s FA    /* all FAILURE jobs */
autorep -J % -s RU    /* all RUNNING jobs */
autorep -J % -s PE    /* all PEND_MACH jobs */
Production Insight
The default autorep output shows only job name, last start, status, and exit code. This is not enough for debugging.
Use -d to see actual runtime (duration), command, stdout/stderr paths, and any override attributes.
Rule: When a job fails, first command: autorep -J $JOB -d. Then check stdout/stderr paths from output. Always include -d in your debugging workflow.
Key Takeaway
-d shows detailed attributes, runtime, command, and log file paths — essential for debugging failures.
-run N shows historical runs (1 = previous run, 2 = run before that).
Rule: alias alias autobug='autorep -J $1 -d -run 1' in .profile for quick debugging.

Why `-L` Flagging Is the Only Way to Audit Historical Runs

Your ops director wants to know why a job reran three times last Thursday. autorep -d shows you current status. Useless. You need the run history. That's the -L flag. It dumps the job's log file path, start/end times, and exit codes for every execution in the retention window.

Run autorep -L JOB_WEBHOOK_INGEST -r and you get the last N runs. No GUI. No database query. Five seconds. The -r flag filters to recent runs only — critical when your log retention is 30 days and the job runs hourly. Without it, you're reading 720 entries.

The output isn't pretty. It's raw, tabular, and exactly what a debugger needs. Exit code 12 across three consecutive runs? That's a file lock. Exit code 127 on the fourth? Missing binary. You can trace failure cascades without opening a single log file.

Senior shortcut: alias this in your .bashrc as jobhist and force your juniors to use it before escalating to you.

CheckRecentRuns.ymlYAML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// io.thecodeforge — devops tutorial

// Get last 5 runs for a critical ETL job
autorep -L INVOICE_PAYLOAD_EXTRACT -r -5

// Output:
Job Name: INVOICE_PAYLOAD_EXTRACT
Job Type: CMD

#Run Start Time         End Time           Exit   Status
----- ------------------ ------------------ ------ --------
1     2024-12-12 02:00:01 2024-12-12 02:14:45 00000 SUCCESS
2     2024-12-12 02:15:00 2024-12-12 02:15:03 00001 FAILURE
3     2024-12-12 02:16:00 2024-12-12 02:16:02 00001 FAILURE
4     2024-12-12 02:17:00 2024-12-12 02:20:12 00000 SUCCESS
Output
Job Name: INVOICE_PAYLOAD_EXTRACT
Job Type: CMD
#Run Start Time End Time Exit Status
----- ------------------ ------------------ ------ --------
1 2024-12-12 02:00:01 2024-12-12 02:14:45 00000 SUCCESS
2 2024-12-12 02:15:00 2024-12-12 02:15:03 00001 FAILURE
3 2024-12-12 02:16:00 2024-12-12 02:16:02 00001 FAILURE
4 2024-12-12 02:17:00 2024-12-12 02:20:12 00000 SUCCESS
Production Trap:
Without -r, -L dumps every retained run — could be 10,000+ lines for high-frequency jobs. Always use -r -N to limit output to N recent runs. Your terminal will thank you.
Key Takeaway
Always pipe -L -r -5 to see the last five runs before you touch a job.

The `-w` Flag: Why You Don't Play Whack-a-Mole With Alerts

You've got 200 jobs. Three are on hold. Two are running late. One failed at midnight. autorep -w gives you a single line per job with status alone. No headers. No frame. Just the state machine.

Filter it with grep -E 'FA|TE|SU' and you see failures, terminations, and successes in one glance. No scrolling. No grep through a wall of JIL.

The real win? You can put this in a cron job. Every 5 minutes, run autorep -w JOB_GROUP_PROD | mail -s 'Autosys Pulse' ops-team@corp.com. That's your zero-config alerting. No Splunk. No PagerDuty. Just text.

Downside: -w doesn't show exit codes. You still need -d for that. But for a heartbeat check? It's the fastest way to know if your pipeline is haemorrhaging.

Production trick: Combine -w with -L in a shell loop. First -w finds the failing jobs. Second -L gets the logs. That's two commands to triage anything.

HeartbeatCheck.ymlYAML
1
2
3
4
5
6
7
8
9
10
11
// io.thecodeforge — devops tutorial

// Check all jobs in PROD_BATCH group
// Only show FAILURE, TERMINATED, or RUNNING
autorep -w PAYMENTS_GROUP | grep -E 'FA|TE|RU'

// Output:
INVOICE_GENERATOR    RU  12/12 02:14:22
PAYMENT_VALIDATOR    FA  12/12 01:58:00
AUDIT_EXPORT         TE  12/12 01:30:00
SETTLEMENT_PUSH      SU  12/12 02:15:01
Output
INVOICE_GENERATOR RU 12/12 02:14:22
PAYMENT_VALIDATOR FA 12/12 01:58:00
AUDIT_EXPORT TE 12/12 01:30:00
SETTLEMENT_PUSH SU 12/12 02:15:01
Senior Shortcut:
Add autorep -w JOBGROUP | awk '$2 !~ /SU|RE/{print}' to your daily cron. It emails you only non-success jobs. Five lines of shell. Zero dependencies.
Key Takeaway
Use -w for a 50-millisecond heartbeat on your entire job forest. Pair with grep to skip the noise.
● Production incidentPOST-MORTEMseverity: high

The 10,000-Line autorep That Hid the Crash

Symptom
The overnight batch had 3 failures out of 10,000 jobs. The operator ran autorep -J % and saw pages of output scroll past. By the time the command finished, the terminal buffer showed only the last 100 lines. The 3 failures were not in those last 100 lines. The operator reported 'all jobs succeeded'. Three hours later, the business team asked why the reports weren't ready.
Assumption
The operator assumed that if any job failed, autorep would highlight it or show failures at the end. They didn't know autorep output is sorted by job name, not by status. They also didn't know about -s FA filter. The team had no automated alerting for job failures, relying entirely on manual autorep checks.
Root cause
autorep -J % output is sorted alphabetically by job name. The 3 failed jobs had names starting with 'x_' (x_report, x_load, x_validate). They appeared in the middle of the output, not at the end. The terminal buffer only kept the last 100 lines after the command finished. The operator scrolled back manually but missed them because the output was massive. The team had no monitoring system that aggregated failures or sent alerts. The operator also didn't know about -s FA to filter only failures. The incident could have been prevented by filtering: autorep -J % -s FA shows only failed jobs.
Fix
1. Changed operator runbook from autorep -J % to autorep -J % -s FA to show only failures. 2. For detailed view: autorep -J % -d -s FA to see failure details (exit code, runtime). 3. Added automated monitoring: a cron job runs autorep -J % -s FA | grep -v 'No jobs match' and sends email if output non-empty. 4. Integrated with PagerDuty: critical failures trigger page to on-call engineer. 5. Wrapped autorep in a script that formats output and highlights failures in red (using ANSI colours). 6. Added terminal less to output: autorep -J % | less to scroll through large output.
Key lesson
  • autorep -J % output is massive in large environments. Always filter with -s FA for failures, -s RU for running.
  • Don't rely on visual scanning of autorep output. Use automated monitoring: script that checks for failures and alerts immediately.
  • The terminal scrollback buffer is not a reliable monitoring tool. What you don't see will break your SLA.
  • Build aggregation scripts: autorep -J % -s FA | wc -l gives failure count. Alert if > 0.
Production debug guideSymptom → Action mapping for common autorep failures in production AutoSys environments.5 entries
Symptom · 01
autorep -J % returns 'No jobs match' but jobs exist
Fix
Check JIL syntax: your environment may have box names with special characters. Use autorep -J % (all jobs) not autorep -J %? Actually if 'no jobs match', your AutoSys instance may not have any jobs, or you're in wrong database. Check Event Server connection: echo 'select * from UJOBS' | sqlplus autosys_user@autosys_db to see if jobs exist.
Symptom · 02
autorep output takes 30+ seconds to display — very slow
Fix
Event Server table may have grown large (AE_QUEUE, AE_EVENTS). Purge old events: db_purge_events -date 'MM/DD/YYYY'. Also check if Event Server indexes are missing. Run analyze table on Event Server tables.
Symptom · 03
autorep -s FA shows no failures, but business says jobs failed
Fix
Failed jobs may have been re-run manually and status changed to SUCCESS. Check history: autorep -J job_name -run 1 to see previous run status. Also check job logs directly: exit code may have been 0 even if business logic failed.
Symptom · 04
autorep -q output is truncated — missing attributes
Fix
Job definition may be longer than default output buffer. Redirect to file: autorep -J job_name -q > job.jil. Use -l (long format) if available in your version.
Symptom · 05
autorep -M shows agent as MISSING but job still running
Fix
Agent may be down but job already started before crash. The job will continue but cannot report completion. Check agent machine: ps -ef | grep autosys_agent. Restart agent, then check job status manually on the machine.
★ autorep Debug Cheat SheetFast diagnostics for autorep issues in production AutoSys environments.
Flood of output — can't find failures
Immediate action
Filter by failed status
Commands
autorep -J % -s FA
autorep -J % -s FA -d | grep -E 'Job Name|Exit Code'
Fix now
Alias alias autofail='autorep -J % -s FA' in .profile. Use cron script to send email when failures detected.
autorep slow — 30 seconds or more+
Immediate action
Check Event Server table sizes and indexes
Commands
autorep -J % -s RU | head -5
echo 'SELECT COUNT(*) FROM AE_EVENTS WHERE EVENT_TIME < SYSDATE - 90;' | sqlplus autosys_user@autosys_db
Fix now
Purge old events: db_purge_events -date "$(date -d '90 days ago' +%m/%d/%Y)". Run analyze table AE_EVENTS compute statistics;
autorep -s FA shows no failures but business complains+
Immediate action
Check job history and exit codes
Commands
autorep -J suspect_job -run 1
autostatus -J suspect_job
Fix now
Check job's stdout/stderr: autorep -J suspect_job -d | grep 'Stdout'. Exit code 0 doesn't guarantee success — business logic may have failed silently.
autorep -q output truncated after 2000 lines+
Immediate action
Redirect to file or use pagination
Commands
autorep -J % -q > /tmp/all_jobs.jil
autorep -J % -q | wc -l
Fix now
Use -q with output redirection, not terminal. To view, less /tmp/all_jobs.jil. For individual jobs, autorep -J job_name -q fits on screen.
autorep -M shows agent missing but job still running on machine+
Immediate action
Check if agent is down but process still runs
Commands
ping agent_host && ssh agent_host 'ps -ef | grep autosys_agent'
ssh agent_host 'tail -100 /var/log/autosys/agent.log'
Fix now
Restart agent: ssh agent_host '/etc/init.d/autosys_agent restart'. Then sendevent -E FORCE_STARTMACH -M agent_host to re-enable jobs.
autorep Flags Quick Reference
FlagWhat It ShowsUse CaseExample CommandPerformance
(no flag)Basic status: job name, last start, status, exit codeQuick health checkautorep -J daily_reportFast (minimal data)
-dDetailed attributes, runtime, command, log paths, overridesDebugging failures, checking runtime, finding log filesautorep -J daily_report -dFast (one job)
-qFull JIL definition (all attributes in JIL syntax)Backups, auditing, creating templates, comparing changesautorep -J % -q > backup.jilSlow (10K jobs = 5-10 seconds)
-s STATUSFilter by status code (FA, RU, SU, PE, OH, AC, IN, TE)Finding failed jobs, monitoring running jobs, checking PEND_MACHautorep -J % -s FAFast (filters at DB level)
-run NShow N runs back in history (1 = previous run)Debugging intermittent failures, checking historical runtime trendsautorep -J daily_report -run 1Fast
-MMachine/agent status instead of jobsChecking agent availability, seeing which jobs run on a machineautorep -M %Fast
-J patternFilter job names by pattern (% = wildcard)View subset of jobs by naming conventionautorep -J eod_%Fast (if pattern selective)

Key takeaways

1
autorep is the primary status and reporting command
use it for checking job status, viewing definitions, and generating reports.
2
% is the wildcard for job name matching; use it freely but always filter by status in large environments.
3
-q outputs JIL format
use it to back up job definitions before making changes.
4
-s filters by status code; -s FA for failures, -s RU for running, -s PE for PEND_MACH.
5
Never run autorep -J % -d without filtering
output is massive. Use -s and specific job patterns.

Common mistakes to avoid

5 patterns
×

Running autorep -J % without filtering in large environment

Symptom
Terminal flooded with thousands of lines of output. Failures scroll past before operator sees them. Operator misses critical failures, SLAs missed.
Fix
Always filter: autorep -J % -s FA for failures, -s RU for running. Create aliases: alias autofail='autorep -J % -s FA'. Use autorep -J % -s FA -d for detailed failure info.
×

Not using -q before bulk JIL changes — losing job definitions

Symptom
Engineer runs faulty JIL script that deletes or corrupts 1000 jobs. No backup. Recovery requires recreating all jobs from memory or old documentation. Days of work lost.
Fix
Always backup before changes: autorep -J % -q > backup_$(date +%Y%m%d_%H%M%S).jil. Automate daily full backup via AutoSys job. Store backups in version control (Git).
×

Using -d without filtering — too much output

Symptom
Engineer runs autorep -J % -d and gets 50,000 lines of output. Terminal freezes or takes minutes to complete. Worthless for real-time monitoring.
Fix
Filter before -d: autorep -J % -s FA -d for failures, or autorep -J eod_% -d for specific job family. Never run -d on all jobs.
×

Assuming autorep output is sorted by status — it's not

Symptom
Operator scans autorep output looking for FAILURE, but output is sorted alphabetically by job name. Failures appear in middle, not at end.
Fix
Use -s FA to show only failures. Sort output yourself: autorep -J % | sort -k5 (sorts by status column, but unreliable). Best: rely on status filter, not visual scanning.
×

Not checking prior runs with -run for intermittent failures

Symptom
Job fails occasionally but currently shows SUCCESS. Operator sees no failure and moves on. Underlying issue persists, causing silent data corruption.
Fix
When troubleshooting intermittent failures, check history: autorep -J job_name -run 1 (previous run), -run 2 (run before that). Look for patterns in exit code or runtime.
INTERVIEW PREP · PRACTICE MODE

Interview Questions on This Topic

Q01JUNIOR
What is the autorep command used for in AutoSys?
Q02JUNIOR
What does the -q flag do in autorep?
Q03JUNIOR
How do you list all jobs currently in FAILURE status?
Q04SENIOR
How do you see the previous run's details for an AutoSys job?
Q05JUNIOR
What wildcard does autorep use for matching job names?
Q01 of 05JUNIOR

What is the autorep command used for in AutoSys?

ANSWER
autorep is the primary reporting command for AutoSys. It displays job status, job definitions, machine status, and historical runs. You use it to monitor whether jobs succeeded or failed, view job details (command, machine, owner), retrieve JIL definitions for backup, and check agent status (-M). It's the most frequently used command for AutoSys operators and administrators.
FAQ · 6 QUESTIONS

Frequently Asked Questions

01
What is autorep in AutoSys?
02
How do I see all AutoSys jobs in FAILURE status?
03
What does autorep -J jobname -q do?
04
How do I check what an AutoSys job looked like in its previous run?
05
What is the wildcard character in autorep?
06
Why is autorep -J % slow in large environments?
COMPLETE GUIDE
The Complete AutoSys Workload Automation Guide for Engineers →

JIL syntax, sendevent, autorep, box jobs, file watchers, scheduling, HA, security, cloud workload automation, and 22 interview questions — the definitive AutoSys reference for production engineers.

N
Naren Founder & Principal Engineer

20+ years shipping production infrastructure and CI/CD at scale. Notes here come from systems that actually shipped.

Follow
Verified
production tested
May 23, 2026
last updated
1,554
articles · all by Naren
🔥

That's AutoSys. Mark it forged?

3 min read · try the examples if you haven't

Previous
AutoSys sendevent Command
20 / 30 · AutoSys
Next
ON HOLD vs ON ICE in AutoSys