Dev & Engineering ✓ Microsoft · Official azure-batchjava-sdkhpcparallel-computingcompute-nodesentra-idmaven

Azure Batch Java Job Orchestration

Run and manage large-scale parallel and HPC workloads on Azure from Java.

FollowSkills review · FSRS-2.0
Not recommended
48/ 100 5-point scale 2.4 / 5
Trust14 / 25 · 2.8/5

The skill recommends Microsoft Entra ID and keeps shared-key material in environment variables; no credential hardcoding, malware, or covert exfiltration is shown. However, it includes pool/job/node deletion, administrator tasks, remote-login settings, and SAS URLs without confirmation gates, least-privilege guidance, data-flow disclosure, cost warnings, or rollback instructions, so points are deducted.

Reliability6 / 20 · 1.5/5

The document is organized and covers synchronous, asynchronous, long-running, and error-handling patterns. Reliability is reduced because it depends on beta.5, file-contained tests do not reproduce the API signatures/imports/model usage, references/examples.md visibly ends mid-example, and abnormal-input or diagnostic guidance is limited; static calibration keeps this at or below 10.

Adaptability10 / 15 · 3.3/5

The name, audience, Azure Batch scenario, trigger phrases, and prerequisites are fairly clear, covering pools, jobs, tasks, nodes, and schedules. It lacks explicit non-fit boundaries, input/output contracts, compatibility limits, and Chinese-language support; Azure reachability, regional availability, and mainland-China network constraints are also not addressed.

Convention8 / 15 · 2.7/5

The skill has front matter, MIT licensing, author and version metadata, layered installation/authentication/concepts/operations sections, and reference links. It lacks a changelog, explicit maintenance owner/update path, compatibility matrix, FAQ, and known-limitations section, with some duplication between the main document and references.

Effectiveness6 / 15 · 2.0/5

The examples cover common Azure Batch lifecycle operations and Java integration patterns and could support a basic implementation. Static evidence does not verify execution; beta dependencies, platform-specific commands, cloud cost exposure, and permission risks mean substantial review may still be needed, so the score remains within the static maximum of 7.

Verifiability4 / 10 · 2.0/5

The skill supplies Maven, GitHub, API, product-documentation, and sample links, while repository context shows general CI and tests. There is no skill-specific acceptance suite, committed execution result, or independent corroboration, and no code was executed in this review, so evidence is limited.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 9ccaf7c3704a
Before you use it
  • Treat pool/job deletion, task termination, administrator tasks, autoscaling, and remote-login examples as high-impact operations requiring explicit user confirmation.
  • Compile-check the beta.5 dependency and example API usage against the target Java SDK version, and add failure diagnostics, permission scope, cost, and rollback guidance.
  • Clarify sensitive-data handling, storage access scope, and credential lifetimes for SAS URLs, task inputs/outputs, and stdout/stderr.
  • Mainland-China users should separately verify reachability of the selected Azure Batch region, identity endpoints, Maven repository, and documentation links.
See the full review method →

What it does & when to use it

This skill helps Java developers use the Azure Batch SDK to operate large-scale parallel and high-performance computing workloads. It covers pools, jobs, tasks, compute nodes, and recurring job schedules, with synchronous and asynchronous client examples. It also documents Microsoft Entra ID and shared-key authentication, environment variables, long-running operations, and Batch-specific error handling. It fits teams that already have Azure Batch access and need concrete Java patterns for submitting and monitoring compute work.

Shows how to add the azure-compute-batch Maven dependency, configure the Batch endpoint and authentication variables, and create synchronous or asynchronous Batch clients; create, inspect, list, resize, autoscale, and delete pools; create, inspect, batch-submit, terminate, and delete jobs and tasks; retrieve task output; list or reboot nodes and retrieve remote-login settings; create and inspect job schedules; and inspect BatchErrorException codes and messages.

  1. A Java team needs to run many independent workloads in an Azure Batch pool and wants collection-based task submission.
  2. An HPC workload needs pool capacity to follow pending-task volume and uses an autoscale formula to adjust nodes.
  3. A service needs operational progress reporting and reads active, running, and completed task counts for a job.
  4. A production deployment wants Entra ID or managed identity authentication instead of managing a shared key.
  5. A batch pipeline needs maximum wall-clock time, retry limits, or exit-code-driven job actions for task failures.

Pros & cons

Pros
  • Covers the core Batch resource model: pools, jobs, tasks, nodes, and job schedules.
  • Provides examples for Entra ID, managed identity, shared keys, synchronous clients, and asynchronous clients.
  • Includes practical patterns for bulk task submission, autoscaling, long-running operations, task counts, and error handling.
  • Provides Maven coordinates, environment variables, and concrete Java types for starting implementation.
Limitations
  • The documented package version is 1.0.0-beta.5, and the source does not state its stability or upgrade compatibility.
  • It assumes an existing Azure Batch account, subscription, and compute pool rather than provisioning the full environment.
  • It focuses on Batch data-plane operations; it recommends the management SDK for pool management but does not provide its implementation.
  • The source provides no standalone test results, cost estimate, or performance benchmark for this individual skill.

How to install

Add this dependency to the project's Maven configuration: <dependency><groupId>com.azure</groupId><artifactId>azure-compute-batch</artifactId><version>1.0.0-beta.5</version></dependency>. For installing the Agent Skill collection, the README provides: npx skills add microsoft/skills. Select the required skill in the wizard and install it into the target agent directory. The source does not provide a separate installation command for this individual skill.

How to use

After installation, use a direct coding request such as “Use the Azure Batch SDK for Java to create a pool and submit parallel tasks” or “Help me configure BatchClient Java authentication.” Have an Azure Batch account, an Azure subscription, and a pool configured with compute nodes. Set AZURE_BATCH_ENDPOINT; shared-key authentication also requires AZURE_BATCH_ACCOUNT and AZURE_BATCH_ACCESS_KEY.

Compared to similar skills

For authentication, the skill recommends Microsoft Entra ID and presents shared-key credentials as an alternative. For pool management, it points to the azure-resourcemanager-batch management SDK as an option supporting managed identities.

FAQ

Will using this skill itself incur Azure charges?
The skill itself has no stated charge, but running an Azure Batch account, pool, and compute nodes may incur Azure resource costs. The source gives no pricing estimate.
Is Microsoft Entra ID mandatory?
No. Entra ID is recommended, but the skill also shows AzureNamedKeyCredential shared-key authentication.
Can failed tasks be retried or cause a job to terminate?
Yes. Jobs can define maximum task retries and maximum wall-clock time, while tasks can map exit-code ranges to job actions such as termination.
Does the skill create the Azure Batch account and subscription?
No. Its prerequisites explicitly require an Azure Batch account, an Azure subscription, and a pool configured with compute nodes.

More skills from this repository

All from microsoft/agent-skills

Dev & Engineering ✓ Microsoft · Official

Azure Identity for Python

A practical skill for securing Python Azure applications with Microsoft Entra ID credentials.

Dev & Engineering ✓ Microsoft · Official

Azure Event Hubs Java Skill

Build production-oriented Java event streaming applications on Azure Event Hubs.

Dev & Engineering ✓ Microsoft · Official

Azure Tables for Python

A practical guide to building authenticated Azure Tables applications with Python entity CRUD, queries, and partition-scoped batch operations.

Dev & Engineering ✓ Microsoft · Official

Azure Identity for TypeScript

Configure secure, flexible Microsoft Entra ID authentication for TypeScript Azure applications.

Automation & Ops ✓ Microsoft · Official

Azure Reliability Advisor

Assess and improve reliability for Azure Functions and App Service.

Dev & Engineering ✓ Microsoft · Official

Azure Cloud Architect

Guides coding agents through production-grade Azure architecture design and review using Azure Architecture Center practices.

Dev & Engineering ✓ Microsoft · Official

Azure AI Text Analytics for Python

Guides Python developers through Azure-powered text analysis and NLP workflows.

Automation & Ops ✓ Microsoft · Official

Azure Resource Architecture Visualizer

Analyze Azure resource groups and turn their dependencies into detailed Mermaid architecture diagrams.

Dev & Engineering ✓ Microsoft · Official

Azure Maps for .NET

Build .NET location features for search, routing, maps, geolocation, and weather.

Dev & Engineering ✓ Microsoft · Official

Azure AI Vision Image Analysis

Guides Python coding agents in implementing Azure AI Vision image understanding.

Dev & Engineering ✓ Microsoft · Official

Azure Blob Storage for Python

Guides secure, production-minded Blob Storage operations in Python.

Dev & Engineering ✓ Microsoft · Official

Azure Queue Storage for Python

Gives coding agents reliable Python patterns for secure Azure Queue Storage messaging and asynchronous task processing.

Automation & Ops ✓ Microsoft · Official

Azure AI Gateway Governance

Use Azure API Management to govern traffic across AI models, MCP tools, and agents.

Automation & Ops ✓ Microsoft · Official

AKS Automatic Readiness

Assess Kubernetes workloads for AKS Automatic compatibility and identify migration blockers before you switch.

Dev & Engineering ✓ Microsoft · Official

Azure Cosmos DB ARM for .NET

Provision and manage Azure Cosmos DB resources from .NET through ARM.

Dev & Engineering ✓ Microsoft · Official

Azure Playwright Workspace Manager

Provision and manage Microsoft Playwright Testing workspaces with .NET and Azure Resource Manager.

Dev & Engineering ✓ Microsoft · Official

Azure Cosmos DB for Python

A practical guide for building reliable Python applications on Azure Cosmos DB’s NoSQL API.

Dev & Engineering ✓ Microsoft · Official

Azure Key Vault SDK for Python

Gives Python coding agents practical guidance for securely managing Azure Key Vault secrets, keys, and certificates.

Dev & Engineering ✓ Microsoft · Official

Azure API Management for Python

Gives coding agents practical Python SDK patterns for managing Azure API Management services, APIs, products, subscriptions, and policies.

Dev & Engineering ✓ Microsoft · Official

Azure Monitor Query for Python

Generate Python code for querying Azure Monitor logs and metrics.

Related skills