Tags: Debugging

LSRServiceException – Could not find Linked Service, the linked service does not exist or is not published

Azure Synapse Analytics Benjamin Perkins

I only had 1 SparkPool which was provisioned using Apache Spark version 3.1.  So when I created my Regression Azure Machine Learning model it defaulted to that Spark Pool.  When I clicked on the Create run button, after some moments, I received the following error… Figure 1, Could not find Linked Service, the linked service […]

Read More →

Use external Hive Metastore for Synapse Spark Pool

Azure Synapse Analytics Benjamin Perkins

I wrote this article which is what helped me progress forward with this. External Apache Hive metastore, Azure Databricks, Azure SQL I am following these instructions.  Here is the kicker, which is likely something most people may already know, but in order to make this configuration the Hive Metastore must already exist on the Azure […]

Read More →

External Apache Hive metastore, Azure Databricks, Azure SQL

Azure Databricks Benjamin Perkins

I was following this documentation and had some experiences I wanted to document.  I wanted to accomplish this. Figure 1, External Apache Hive metastore using Azure Databricks and Azure SQL Figure 2, External Apache Hive metastore using Azure Databricks and Azure SQL The cluster version I used was the most current one. Figure 3, Azure […]

Read More →

Access to the path ‘D:\home\site\wwwroot\host.json’ is denied.

Azure Functions Benjamin Perkins

If you a receive a System.UnauthorizedAccessException with a message Access to the path ‘D:\home\site\wwwroot\host.json’ is denied, then it likely means you have a network configuration which is blocking access to the Azure Storage Account on which your Azure Function is hosted.  Perform the following to check and see if this could be the case. Check […]

Read More →

Sending base 64 messages to an Azure Storage Queue for Azure Function

Azure Functions Benjamin Perkins

If you happen to get this exception on an Azure Function when you have an Azure Storage Queue triggered Azure Function: The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. Figure 1, base-64 message required for […]

Read More →

Service Bus triggered Azure Function AutoComplete false, duplicates

Azure Functions Benjamin Perkins

As you read here the default setting for AutoComplete is true.  When you create a Service Bus triggered Azure Function you install an extension named Microsoft.Azure.WebJobs.Extensions.ServiceBus as shown in Figure 1. Figure 1, Service Bus Azure Function AutoComplete The NuGet package is here and the source code here.  The point of this article is explain […]

Read More →