Batch extension cli commands for Azure cli v2
Перейти к файлу
wiboris cfd9439f93
updating doc strings (#147)
* updating doc strings
2024-03-05 14:44:23 -08:00
azext update extension to newest version (#139) 2022-09-09 13:05:04 -07:00
batch-cli-extensions updating doc strings (#147) 2024-03-05 14:44:23 -08:00
doc update extension to newest version (#139) 2022-09-09 13:05:04 -07:00
samples update extension to newest version (#139) 2022-09-09 13:05:04 -07:00
scripts update extension to newest version (#139) 2022-09-09 13:05:04 -07:00
tests update extension to newest version (#139) 2022-09-09 13:05:04 -07:00
.flake8 Init repo: copy content from azure-cli repo. 2017-03-01 15:23:31 -08:00
.gitattributes Update rst file line ending (#115) 2019-07-11 14:38:01 -07:00
.gitignore Recorded tests and fixed packaging and build 2017-10-03 13:38:15 -07:00
.travis.yml Remove azure.storage.blob in import (#123) 2020-06-02 09:45:56 -07:00
CONTRIBUTING.rst Init repo: copy content from azure-cli repo. 2017-03-01 15:23:31 -08:00
HISTORY.rst update extension to newest version (#139) 2022-09-09 13:05:04 -07:00
LICENSE.txt Init repo: copy content from azure-cli repo. 2017-03-01 15:23:31 -08:00
MANIFEST.in Renamed ncj module to batch_extensions 2017-02-24 13:43:17 -08:00
README.rst updating doc strings (#147) 2024-03-05 14:44:23 -08:00
TEMPLATE-HISTORY.rst Update to latest REST API (#95) 2019-02-14 10:24:28 -08:00
appveyor.yml Init repo: copy content from azure-cli repo. 2017-03-01 15:23:31 -08:00
azure-batch-cli-extensions.pyproj Change azure-batch-extensions namespace (#64) 2018-05-31 13:16:03 -07:00
azure-batch-cli-extensions.sln Change the src folder location, and update the scripts. 2017-03-02 10:57:50 -08:00
pylintrc Update Batch Extension for REST API 2018-08-01 (#84) 2018-09-21 11:21:26 -07:00
requirements.txt update extension to newest version (#139) 2022-09-09 13:05:04 -07:00
setup.cfg NCJ update + restructure 2017-09-28 12:38:56 -07:00
setup.py update extension to newest version (#139) 2022-09-09 13:05:04 -07:00

README.rst

Microsoft Azure Batch Extensions
================================

Azure Batch CLI extensions will be retired on 30 September 2024
https://azure.microsoft.com/updates/azure-batch-cli-extensions-will-be-retired-on-30-september-2024/

Remove the Azure Batch CLI Extensions: 
.. code-block:: bash

	$ az extension remove -n azure-batch-cli-extensions

.. image:: https://travis-ci.org/Azure/azure-batch-cli-extensions.svg?branch=master
 :target: https://travis-ci.org/Azure/azure-batch-cli-extensions

This project is a preview build of the Microsoft Azure command-line interface to demonstrate proposed features in Azure Batch.
For further details on the Azure CLI, please check the `official documentation <https://docs.microsoft.com/en-us/cli/azure/install-azure-cli>`_.

The purpose of this project is to allow customers to try out proposed Batch features and provide feedback to help shape the direction of the Batch service.
The features presented here may not be compatible with other Batch client SDKs and tools, nor will they necessarily be adopted into the core Batch service.

As these features are still in preview, they will be updated regularly, and refined based on customer feedback.
Unfortunately this may result in occasional breaking changes, though every effort will be made to keep this to a minimum.

Features
--------

- `Input data upload to Batch linked storage accounts <https://github.com/Azure/azure-batch-cli-extensions/blob/master/doc/inputFiles.md#input-file-upload>`_

  A new command to allow a user to upload a set of files directly into the storage account linked to their Azure Batch account.


- `Input data references using linked storage accounts <https://github.com/Azure/azure-batch-cli-extensions/blob/master/doc/inputFiles.md#referencing-input-data>`_

  Input data stored in linked storage under a file group can be simply referenced by a task by using some new ResourceFile properties. 


- `Automatic persistence of task output files to a file group <https://github.com/Azure/azure-batch-cli-extensions/blob/master/doc/outputFiles.md>`_

  When declaring task output files, you can now persist outputs to a named file group, without the need to generate a container SAS URL.


- `Download job outputs from directly from storage <https://github.com/Azure/azure-batch-cli-extensions/blob/master/doc/outputFiles.md#output-file-download>`_

  A new command to allow a user to download job output files from a file group in the storage account linked to their Azure Batch account.


- `Pool and job templates with parameterization <https://github.com/Azure/azure-batch-cli-extensions/blob/master/doc/templates.md>`_

  Templates allow pools and jobs to be defined in parameterized json files with a format inspired by ARM templates.


- `Task factories for automatic task generation on job submission <https://github.com/Azure/azure-batch-cli-extensions/blob/master/doc/taskFactories.md>`_

  Task factories provide a way for a job and all its tasks to be created in one command instead
  of calling `azure batch task create` for each task. There are currently three kinds of task factory:

  + `Task Collection <https://github.com/Azure/azure-batch-cli-extensions/blob/master/doc/taskFactories.md#task-collection>`_ - tasks are explicitly defined as a part of the job
  + `Parametric Sweep <https://github.com/Azure/azure-batch-cli-extensions/blob/master/doc/taskFactories.md#parametric-sweep>`_ - a set of tasks are created by substituting a range or sequence of values into a template 
  + `Per File <https://github.com/Azure/azure-batch-cli-extensions/blob/master/doc/taskFactories.md#task-per-file>`_ - a template task is replicated for each available input file 


- `Split job configuration and management with reusable application templates <https://github.com/Azure/azure-batch-cli-extensions/blob/master/doc/application-templates.md>`_

  Application templates provide a way to partition the details of a job into two parts.
  All of the details about how the job should be processed are moved into the **application template**, creating a reusable definition that is independent of a particular account. Application templates are parameterized to allow the processing to be customized without requiring modification of the template itself.


- `Easy software installation via package managers <https://github.com/Azure/azure-batch-cli-extensions/blob/master/doc/packages.md>`_

  Integration with existing 3rd party package managers to streamline the installation of applications. Currently the following package managers are supported:

  + Chocolatey - for Windows
  + APT - as used by some Linux distros including Ubuntu, Debian, and Fedora. 
  + Yum - a package manager used by some Linux distros including  Red Hat Enterprise Linux, Fedora, CentOS. 


Samples
-------

Samples for all of the preview features can be `found in samples <https://github.com/Azure/azure-batch-cli-extensions/blob/master/samples>`_.


SDK Installation
----------------

.. code-block:: bash

    $ pip install azure-batch-extensions


CLI Extensions Installation
---------------------------

In order to make use of these features, you must have the Azure CLI installed.
You can find futher instructions in `the official documentation <https://docs.microsoft.com/en-us/cli/azure/install-azure-cli>`_ and in the
`Azure CLI GitHub repository <https://github.com/azure/azure-cli>`_.

This extension package can be installed to supplement the existing Azure CLI Batch commands.
It can be installed using the CLI extension tools (recommended):

.. code-block:: bash

    $ az extension add -n azure-batch-cli-extensions

Each release of the CLI ships with a specific version of the azure-batch-cli-extensions.  This is considered the official version for the CLI release.
If you would like to install a different version you can specify any release listed at https://github.com/Azure/azure-batch-cli-extensions/releases/.
To add a specific extension version and pin to it:

.. code-block:: bash

    $ az extension add --source https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-x.x.x/azure_batch_cli_extensions-x.x.x-py2.py3-none-any.whl


Uninstall CLI extensions
------------------------

The CLI extensions can be removed using the `az extension remove` command:

.. code-block:: bash

	$ az extension remove -n azure-batch-cli-extensions


Azure Batch account requirements
--------------------------------

In order to make use of the new features previewed here, you will need an Azure Batch account with a linked storage account.
For more information on this, see `Create an Azure Batch account using the Azure Portal <https://azure.microsoft.com/documentation/articles/batch-account-create-portal>`_.

Contributing
------------

This project has adopted the `Microsoft Open Source Code of Conduct <https://opensource.microsoft.com/codeofconduct/>`_. For more information see the `Code of Conduct FAQ <https://opensource.microsoft.com/codeofconduct/faq/>`_ or contact `opencode@microsoft.com <mailto:opencode@microsoft.com>`_ with any additional questions or comments.

Developer Installation
----------------------

Preparing your machine
++++++++++++++++++++++
1.	Install Python 3.5.x from http://python.org. Please note that the version of Python that comes preinstalled on OSX is 2.7. 
2.	Clone your repository and check out the master branch.
3.	Create a new virtual environment “env” for Python 3.5 in the root of your clone. You can do this by running:

    **Windows**

    .. code-block:: bash

        python -m venv <clone root>\env

    **OSX/Ubuntu (bash)**

    .. code-block:: bash

        python –m venv <clone root>/env

4.	Activate the env virtual environment by running:

    **Windows**

    .. code-block:: bash

      <clone root>\env\scripts\activate.bat

    **OSX/Ubuntu (bash)**

    .. code-block:: bash

      . <clone root>/env/bin/activate

5.	Install the dependencies and load the command module as a local package using pip.

  .. code-block:: bash
  
    python scripts/dev_setup.py