title | keywords | ms.date | ms.topic | ms.devlang | ms.service |
---|---|---|---|---|---|
Azure, java, SDK, API, azure-batch, batch |
09/11/2024 |
reference |
java |
batch |
This README is based on the latest released version Azure Batch SDK (7.0.0). If you are looking for other releases, see the More Information section below.
The Azure Batch Libraries for Java is a higher-level, object-oriented API for interacting with the Azure Batch service.
7.0.0 is a release that supports all features of Azure Batch service with API version "2019-08-01.10.0". We will be adding support for more new features and tweaking the API associated with Azure Batch service newer release.
Azure Batch Authentication
You need to create a Batch account through the Azure portal or Azure cli.
- Use the account name, key, and URL to create a
BatchSharedKeyCredentials
instance for authentication with the Azure Batch service. TheBatchClient
class is the simplest entry point for creating and interacting with Azure Batch objects.
BatchSharedKeyCredentials cred = new BatchSharedKeyCredentials(batchUri, batchAccount, batchKey);
BatchClient client = BatchClient.open(cred);
- The other way is using AAD (Azure Active Directory) authentication to create the client. See this document for detail.
BatchApplicationTokenCredentials cred = new BatchApplicationTokenCredentials(batchEndpoint, clientId, applicationSecret, applicationDomain, null, null);
BatchClient client = BatchClient.open(cred);
Create a pool using an Azure Marketplace image
You can create a pool of Azure virtual machines which can be used to execute tasks.
System.out.println("Created a pool using an Azure Marketplace image.");
VirtualMachineConfiguration configuration = new VirtualMachineConfiguration();
configuration.withNodeAgentSKUId(skuId).withImageReference(imageRef);
client.poolOperations().createPool(poolId, poolVMSize, configuration, poolVMCount);
System.out.println("Created a Pool: " + poolId);
Create a Job
You can create a job by using the recently created pool.
PoolInformation poolInfo = new PoolInformation();
poolInfo.withPoolId(poolId);
client.jobOperations().createJob(jobId, poolInfo);
You can find sample code that illustrates Batch usage scenarios in https://github.com/azure/azure-batch-samples
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-batch</artifactId>
<version>11.2.0</version>
</dependency>
- A Java Developer Kit (JDK), v 1.7 or later
- Maven
- Azure Service Principal - see how to create authentication info.
If you encounter any bugs with these libraries, please file issues via Issues or checkout StackOverflow for Azure Java SDK.
For details on contributing to this repository, see the contributing guide.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
To build the code open a console, navigate to the git repository, and run
maven build
All tests are run from the sdk/batch
directory. They can be run either on the command line or from a Java IDE, such as Eclipse.
-
Deploy test resources in Azure and set the following environment variables:
- APPLICATION_SECRET
- AZURE_BATCH_ACCESS_KEY
- AZURE_BATCH_ACCOUNT
- AZURE_BATCH_ENDPOINT
- AZURE_BATCH_REGION
- AZURE_VNET
- AZURE_VNET_ADDRESS_SPACE
- AZURE_VNET_RESOURCE_GROUP
- AZURE_VNET_SUBNET
- AZURE_VNET_SUBNET_ADDRESS_SPACE
- CLIENT_ID
- STORAGE_ACCOUNT_KEY
- STORAGE_ACCOUNT_NAME
- SUBSCRIPTION_ID
-
Set
AZURE_TEST_MODE
toRecord
-
Run the tests in
src/test/java
- From the command-line, run
mvn test
(can also supply-DAZURE_TEST_MODE=Record
instead of setting environment variable)
- From the command-line, run
-
Test recordings will be created in
microsoft-azure-batch/target/test-classes/session-records
-
Copy these recordings to
microsoft-azure-batch/src/test/resources/test-recordings
- Set
AZURE_TEST_MODE
toPlayback
- Run the Jetty test server
- CLI:
mvn jetty:start
- Eclipse: Install Jetty plugin for Eclipse from marketplace and create two run configurations (one for 11080 and one for 11081)
- CLI:
- Run the tests
- CLI:
mvn test -DAZURE_TEST_MODE=Playback
- CLI:
- Javadoc
- https://azure.com/java
- If you don't have a Microsoft Azure subscription you can get a FREE trial account here
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.