skip to Main Content

Are both AzureResourceGroupDeployment and AzureResourceManagerTemplateDeployment same?

Are both AzureResourceGroupDeployment and AzureResourceManagerTemplateDeployment same? - task: AzureResourceManagerTemplateDeployment@3 displayName: 'deploy using AzureResourceManagerTemplateDeployment' inputs: azureResourceManagerConnection: sc subscriptionId: id resourceGroupName: rg location: $(location) csmFile: ${{ parameters.root }}/Infrastructure/data/template.bicep csmParametersFile: env.json overrideParameters: '-environmentAbbreviation "env"' deploymentMode: 'Incremental' deploymentOutputs: dataoutputs - task: AzureResourceGroupDeployment@2 displayName: 'deploy…

VIEW QUESTION

Azure – Save a PySpark dataframe in a SQL database in Synapse gives the error "IllegalArgumentException: KrbException: Cannot locate default realm"

I tried to save a PySpark dataframe in a SQL database in Synapse: test = spark.createDataFrame([Row("Sarah", 28), Row("Anne", 5)], ["Name", "Age"]) test.write .format("jdbc") .option("url", "jdbc:sqlserver://XXXX.sql.azuresynapse.net:1433;database=azlsynddap001;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=30;Authentication=ActiveDirectoryIntegrated") .option("forwardSparkAzureStorageCredentials", "true") .option("dbTable", "test_CP") .save() I got the following error: IllegalArgumentException: KrbException: Cannot locate default…

VIEW QUESTION
Back To Top
Search