0

我正在尝试基于标准市场 ubuntu 图像创建一个池。我正在使用Azure 4.0.0图像参考、虚拟机配置参考和其他东西是基于 docs.microsoft.com 编写的

这是我的代码:

import azure.batch as batch
from azure.batch import BatchServiceClient
from azure.batch.batch_auth import SharedKeyCredentials
from azure.batch import models
import sys

account = 'mybatch'
key = 'Acj1hh7vMR6DSodYgYEghjce7mHmfgfdgodYgYEghjce7mHmfgodYgYEghjce7mHmfgCj/7f3Zs1rHdfgPsdlA=='
batch_url = 'https://mybatch.westeurope.batch.azure.com'

creds = SharedKeyCredentials(account, key)
batch_client = BatchServiceClient(creds, base_url = batch_url)


pool_id = 'mypool3'

if batch_client.pool.exists( pool_id ):
  print( 'pool exists' )
  sys.exit()

vmc = models.VirtualMachineConfiguration(
  image_reference = models.ImageReference(
    offer = 'UbuntuServer', 
    publisher = 'Canonical',
    sku = '16.04.0-LTS', 
    version = 'latest', 
    virtual_machine_image_id = None
  ) ,
  node_agent_sku_id = 'batch.node.ubuntu 16.04'
)

pool_config = models.CloudServiceConfiguration(os_family = '5')

new_pool = models.PoolAddParameter(
  id = pool_id, 
  vm_size = 'small', 
  cloud_service_configuration = pool_config, 
  target_dedicated_nodes = 1,
  virtual_machine_configuration = vmc
)

batch_client.pool.add(new_pool)

以下是我从 azure 门户(添加池 JSON 编辑器)获取的一些图像值:

>

“图像参考”:{

“出版商”:“规范”,

"offer": "UbuntuServer",

“sku”:“16.04.0-LTS”

},

但是当我运行代码时,我得到一个错误:

Traceback (most recent call last):
  File "a.py", line 80, in <module>
    batch_client.pool.add(new_pool)
  File "/root/miniconda/lib/python3.6/site-packages/azure/batch/operations/pool_operations.py", line 310, in add
    raise models.BatchErrorException(self._deserialize, response)
azure.batch.models.batch_error_py3.BatchErrorException: {'additional_properties': {}, 'lang': 'en-US', 'value': 'The value provided for one of the properties in the request body is invalid.\nRequestId:d8a1f7fa-6f40-4e4e-8f41-7958egas6efa\nTime:2018-12-05T16:18:44.5453610Z'}

什么图像值是错误的?是否可以使用 RequestId 获取有关此错误的更多信息?


更新

我在这里找到了一个更新的示例,它使用这个助手select_latest_verified_vm_image_with_node_agent_sku来获取图像参考。同样的错误The value provided for one of the properties in the request body is invalid.

4

2 回答 2

1

我用你的代码做了测试,得到了同样的错误。然后我研究并更改了代码中的一些内容。以及由两件事引起的问题。

首先

pool_config = models.CloudServiceConfiguration(os_family = '5')

您可以查看以下说明models.CloudServiceConfiguration

os_family: The Azure Guest OS family to be installed on the virtual
     machines in the pool. Possible values are: 2 - OS Family 2, equivalent to
     Windows Server 2008 R2 SP1. 3 - OS Family 3, equivalent to Windows Server
     2012. 4 - OS Family 4, equivalent to Windows Server 2012 R2. 5 - OS Family
     5, equivalent to Windows Server 2016. For more information, see Azure
     Guest OS Releases

也许这个属性是为 windows 设置的。您可以取消此配置。

第二

vm_size = 'small', 

您应该vmSize使用真实的 VM 大小设置 。例如,Standard_A1。请参阅为 Azure Batch 池中的计算节点选择 VM 大小

希望这会帮助你。如果您需要更多帮助,请给我留言。

于 2018-12-06T08:10:35.553 回答
0

我认为网上有很多令人困惑的例子,或者它们只是匹配旧版本的 SDK。

深入研究我发现的文档

cloud_service_configuration CloudServiceConfiguration 池的云服务配置。此属性和 virtualMachineConfiguration 互斥,必须指定其中一个属性。如果创建 Batch 帐户时将其 poolAllocationMode 属性设置为“UserSubscription”,则无法指定此属性。

就我而言,我只能使用 cloud_service_configuration = pool_config or virtual_machine_configuration = vmc,但不能同时使用两者。

这是工作代码:

new_pool = models.PoolAddParameter(
  id = pool_id, 
  vm_size = 'BASIC_A1', 
  target_dedicated_nodes = 1,
  virtual_machine_configuration = vmc
)
于 2018-12-06T08:38:45.870 回答