Documentation Index
Fetch the complete documentation index at: https://filla.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Running a tool
Once a tool is configured, click Run in the right-hand panel of the tool editor. Filla starts processing your records immediately.Plan-limit gating
Tool runs count toward your workspace’s records limit (Free plan: 20 records lifetime; paid plans: monthly cap — see Billing). When your workspace is at the cap:- Manual runs return “Workspace has reached its plan limit for this period” — the click is rejected and no run record is created.
- Webhook triggers return
429 Too Many Requestswith aRetry-Afterheader set to the time remaining in your billing period. - Scheduled (cron) runs are skipped silently for the period and resume automatically when usage frees up. The cron stays alive — the next tick after upgrade or period reset goes through normally.
What happens when you run
Filla reads your records
Filla fetches records from your Airtable table in pages of up to 100. If you’ve set a source view or filter, only matching records are fetched.
Processing runs in the background
The HTTP response returns immediately. You don’t wait for the entire run to complete. Processing continues on the server even if you close the browser tab.
Monitoring progress
The run panel shows live metrics:| Metric | What it means |
|---|---|
| Records total | Total records matched by the filter |
| Processed | Records Filla has attempted to process |
| Succeeded | Records processed without errors |
| Failed | Records that encountered an error |
| Status | Running, Completed, or Failed |
Run history
Each run creates a log entry. You can see past runs in the run history panel, including the status, start time, completion time, and record counts for each run.Downloading output files
For tools that produce downloadable files (like the CSV Exporter), a download link appears in the run panel after the run completes. The link is available for a limited time.Canceling a run
There is no cancel button once a run has started. To stop processing, you would need to close the tab, but the server-side process may continue for a moment before timing out. Use filters to limit the scope of a run before starting if you’re concerned about processing too many records.Common questions
Can I run the same tool multiple times?
Can I run the same tool multiple times?
Yes. Click Run again at any time. Each run creates a new log entry. Some tools have a “Skip already processed” option to avoid re-processing records that already have output values.
How long does a run take?
How long does a run take?
It depends on the number of records and the tool type. Tools that make network requests per record (Geocoder, Email Validator with MX check) are slower. A table of 1,000 records might take 1-5 minutes.
What happens to the run if I close the browser?
What happens to the run if I close the browser?
Processing continues on the server. Open the tool again to see the run status and results.
Does Filla respect Airtable's API rate limits?
Does Filla respect Airtable's API rate limits?
Yes. Filla includes built-in rate limit management and pauses between write batches to stay within Airtable’s limits.