简体   繁体   English

从 azure devops 在 Kustodb 中创建表时出错

[英]Getting Error while creating table in Kustodb from azure devops

When I'm trying to create table in Azure Data explorer database from Azure Pipeline I'm getting below error.当我尝试从 Azure 管道在 Azure Data Explorer 数据库中创建表时,出现以下错误。

Error错误

##[error]Service returned an error: Error: getaddrinfo ENOTFOUND testdbprod.kusto.windows.net testdbprod.kusto.windows.net:443 server: testdbprod.kusto.windows.net database: testprod-prod command: .create-merge table Notifications (Timestamp: datetime, NoteType: string, homename: string, Value: string) ##[错误]服务返回错误:错误:getaddrinfo ENOTFOUND testdbprod.kusto.windows.net testdbprod.kusto.windows.net:443 服务器:testdbprod.kusto.windows.net 数据库:testprod-prod 命令:.create-merge表通知(时间戳:日期时间,NoteType:字符串,homename:字符串,值:字符串)

Pipeline.yaml管道.yaml

- task: ADXQuery@1
  inputs:
    targetType: 'inline'
    script: '.create-merge table Notifications (Timestamp: datetime, NoteType: string, homename: string, Value: string)'
    kustoUrls: 'https://testdbprod.kusto.windows.net:443?DatabaseName=testprod-prod'
    customAuth: false
    ResourceURI: 'https://testdbprod.kusto.windows.net'
    aadClientId: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXx'
    aadClientSecret: 'XXXXXXXXXXXXXXXXXXXXXX'
    tenantId: 'XXXXXXXXXXXXXXXXXXXXXXXX'
    minThreshold: '0'
    maxThreshold: '0'

It seems that the cluster URL you provided is invalid.看来你提供的集群URL是无效的。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 从 Azure Devops Odata 查询读取数据时出错 - Getting error while reading data from Azure Devops Odata Query 从 Azure DevOps 运行 dotCover 时出现错误 - Getting an error running dotCover from Azure DevOps 使用 Rest API 在 Azure Devops 中创建工作项时出错 - Error while creating Work Item in Azure Devops using Rest API 创建 azure devops 发布管道时出错 - POST rest api - Error while creating azure devops release pipeline - POST rest api 将行插入到Azure表中时出现错误 - Getting the error while inserting rows into azure table Azure Pipeline:在 Azure DevOps 中将应用程序部署到 tomcat 服务器时出错 - Azure Pipeline : getting error while deploying application to tomcat server in Azure DevOps 在Azure中创建kubernetes集群时获取错误ControlPlaneProvisioningInternalError - Getting the error ControlPlaneProvisioningInternalError while creating the kubernetes cluster in Azure 使用 MSI 为 Azure 存储 Blob 创建 SAS 令牌时出错 - Getting Error while Creating SAS Token for Azure Storage Blob with MSI 获取“远程服务器返回错误:(401) 未经授权。” 在 Azure DevOps 管道中创建发布时 - Getting "The remote server returned an error: (401) Unauthorized." when creating a release in Azure DevOps pipeline 使用 azure devops 从 dockerimage 获取工件? - Getting an artifact from dockerimage using azure devops?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM