# All Examples

- [Start Here: Core Patterns](https://docs.burla.dev/all-examples/basic-examples.md)
- [Read/Write Files to Cloud Storage](https://docs.burla.dev/all-examples/basic-examples/read-and-write-gcs-files.md): Write and read files in GCS through /workspace/shared.
- [Use custom Docker images & GPUs](https://docs.burla.dev/all-examples/basic-examples/use-custom-docker-images-and-gpus.md): Run Burla workers with custom images, native tools, and GPUs.
- [Run jobs in the background](https://docs.burla.dev/all-examples/basic-examples/run-python-in-the-background.md): Detached job example.
- [Limit parallelism for APIs or databases](https://docs.burla.dev/all-examples/basic-examples/limit-parallelism-for-apis-databases-and-websites.md): Keep Burla jobs inside external service limits.
- [Combine many results/files into one](https://docs.burla.dev/all-examples/basic-examples/combine-many-results-files-into-one-map-reduce.md): A beginner-friendly map-reduce pattern for combining many outputs into one file.
- [Decide how to split your work](https://docs.burla.dev/all-examples/basic-examples/choose-how-to-split-your-work.md): Pick the input unit for a Burla job.
- [Process thousands of files](https://docs.burla.dev/all-examples/basic-examples/process-thousands-of-files-quickly.md)
- [Process one giant file](https://docs.burla.dev/all-examples/basic-examples/process-one-giant-file-quickly.md)
- [Process database rows](https://docs.burla.dev/all-examples/basic-examples/process-data-in-your-database-quickly.md)
- [ML, Embeddings & Search](https://docs.burla.dev/all-examples/ml-embeddings-and-search.md)
- [Embed 50K Wikipedia articles](https://docs.burla.dev/all-examples/ml-embeddings-and-search/gpu-embedding-demo.md)
- [Tune XGBoost on 1,000 CPUs](https://docs.burla.dev/all-examples/ml-embeddings-and-search/parallel-hyperparameter-tuning.md)
- [Run batch LLM inference](https://docs.burla.dev/all-examples/ml-embeddings-and-search/ml-inference-batch.md)
- [Search 192K artworks with CLIP](https://docs.burla.dev/all-examples/ml-embeddings-and-search/met-weirdest-art.md)
- [Large-Scale Data Processing](https://docs.burla.dev/all-examples/data-processing-examples.md)
- [Scan 2.76B NYC taxi trips](https://docs.burla.dev/all-examples/data-processing-examples/nyc-ghost-neighborhoods.md)
- [Map geotagged Flickr photos](https://docs.burla.dev/all-examples/data-processing-examples/world-photo-index.md)
- [Summarize 1M GitHub READMEs](https://docs.burla.dev/all-examples/data-processing-examples/github-repo-summarizer.md)
- [Audit 5,000 Parquet files](https://docs.burla.dev/all-examples/data-processing-examples/parquet-parallel.md)
- [Parallelize pandas apply](https://docs.burla.dev/all-examples/data-processing-examples/pandas-apply-parallel.md)
- [Production Data Workflows](https://docs.burla.dev/all-examples/production-data-jobs.md)
- [ETL 10K S3 files to Postgres](https://docs.burla.dev/all-examples/production-data-jobs/python-etl-no-airflow.md)
- [Resize an image corpus](https://docs.burla.dev/all-examples/production-data-jobs/image-dataset-resize.md)
- [Run a 2M-user API backfill](https://docs.burla.dev/all-examples/production-data-jobs/rate-limited-api-requests.md)
- [Scrape 1M web pages](https://docs.burla.dev/all-examples/production-data-jobs/parallel-web-scraping.md)
- [Run 1B option simulations](https://docs.burla.dev/all-examples/production-data-jobs/monte-carlo-simulation.md)
- [Scientific & Geospatial Computing](https://docs.burla.dev/all-examples/scientific-and-geospatial-work.md)
- [Align every FASTQ sample](https://docs.burla.dev/all-examples/scientific-and-geospatial-work/bioinformatics-alignment.md)
- [Find NOAA's rainiest day](https://docs.burla.dev/all-examples/scientific-and-geospatial-work/ghcn-rainiest-day.md)
- [NDVI for 2K Sentinel tiles](https://docs.burla.dev/all-examples/scientific-and-geospatial-work/gdal-raster-processing.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.burla.dev/all-examples.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
