skills.vishalvoidskills/vishalvoid
Technical & DevelopmentIntermediate

azure-compute-batch-java

Large-scale parallel and HPC batch jobs

Developer Setup

Setup & Installation

bash
npx skills add https://github.com/microsoft/skills --skill azure-compute-batch-java

Overview

What This Skill Does

Java client library for Azure Batch, a managed service that runs large-scale parallel and HPC workloads. Lets you create and manage pools of compute nodes, submit jobs, and track tasks through their lifecycle. Supports both sync and async clients, autoscaling, and long-running operations via pollers.

Application

When to use this Skill

Documentation

Show Skills.md file

Azure Batch SDK for Java

Client library for running large-scale parallel and high-performance computing (HPC) batch jobs in Azure.

Installation

<dependency>
    <groupId>com.azure</groupId>
    <artifactId>azure-compute-batch</artifactId>
    <version>1.0.0-beta.5</version>
</dependency>

Prerequisites

  • Azure Batch account
  • Pool configured with compute nodes
  • Azure subscription

Environment Variables

AZURE_BATCH_ENDPOINT=https://<account>.<region>.batch.azure.com  # Required for all auth methods
AZURE_BATCH_ACCOUNT=<account-name>  # Only required for shared key auth
AZURE_BATCH_ACCESS_KEY=<account-key>  # Only required for shared key auth
AZURE_TOKEN_CREDENTIALS=prod  # Required only if DefaultAzureCredential is used in production
Lines 1 - 28 of 384

Recommendations

Explore other random skills

All skillsMy patterns