I really like the Azure Logic Apps. I really do. Combined with API Apps, Azure Functions you can build really nice and well micro-service-like workflows in a really well designed way. Saying that – I also believe Microsoft has made a mistake with the pricing model in the consumption plan. I will therefore post this to raise your awareness… Continue reading Be careful of the Logic App Consumption Prizing model
DocumentDB – Optimistic Concurrency in a Stored Procedure
Got a message from one of my blog visitors that were related to two of my previous blog posts (DocumentDB revisited Part 3 – Concurrency in DocumentDB and DocumentDB revisited Part 4 – Stored Procedures) that I wrote when I revisited DocumentDB some time ago. The problem was that he (hi Mark) had tried to get the… Continue reading DocumentDB – Optimistic Concurrency in a Stored Procedure
B2B Integrations using Azure (focus Azure Service Bus) – Part 1 Integration Architecture
Long time since last post…but I have not been idle. I have been working on a really big double post regarding Integration and Azure Service Bus both that will be posted in short succession. Based on a customer scenario – what started as a best practices Azure Service Bus lead to a theoretical and conceptual discussion about integrations… Continue reading B2B Integrations using Azure (focus Azure Service Bus) – Part 1 Integration Architecture
Web Service Parameters in Azure Machine Learning
I came across this problem myself during summer when I was reading up on Azure Machine Learning. I had trained a ML experiment and when I was satisfied I wanted to generate a Web Service so I could utilize it in my business logic. However the model was trained from a huge CSV file with… Continue reading Web Service Parameters in Azure Machine Learning
Azure Hot and Cold Blob Storage
A recent addition to the Blob storage service is the addition of “Hot” and “Cold” Blob storage. This Cold storage type is a storage with slightly lower SLA than the regular (and of course Premium) generic storage and the Hot Blob storage and the Cold storage also has a different payment model which I intend to… Continue reading Azure Hot and Cold Blob Storage
Elastic Database Pools – purpose, when and why
One great addition to the SQL database PaaS service in Azure is the ability to use Elastic Database Pools to share capacity between Azure SQL Databases in order to make best use of the capacity at hand and to lower total costs. I will highlight the benefits and scenarios and what to think about when setting it… Continue reading Elastic Database Pools – purpose, when and why
Call Azure Machine Learning Experiments from Stream Analytics
While Stream Analytics does some things very well in creating intelligent systems it is still based on programmed logic. For example it will allow you to define simple fraud detection logic (if a credit card purchase is done in Russia at this moment but the same credit cars was used in USA an hour earlier) you… Continue reading Call Azure Machine Learning Experiments from Stream Analytics
DocumentDB revisited Part 4 – Stored Procedures
In my series of DocumentDB I will discuss more advanced features of DocumentDB. This post covers Stored Procedures. Use of Stored Procedures You can benefit a great deal from using stored procedures in DocumentDB. I will give you two examples where it might me useful but I don’t see a big difference in the usefulness between DocumentDB Stored Procedure… Continue reading DocumentDB revisited Part 4 – Stored Procedures
Azure Service Bus with BizTalk SB-Messaging Adapter – This client is not supported for a partitioned entity.
This post will cover a problem that many people will run into when using the BizTalk 2013 SB-Messaging adapter to access Azure Service Bus queues. First of all I wish to claim that Azure Service Bus is a really good way to enable cheap, asynchronous, highly available communication for a corporation and its external partners.… Continue reading Azure Service Bus with BizTalk SB-Messaging Adapter – This client is not supported for a partitioned entity.
DocumentDB revisited Part 3 – Concurrency in DocumentDB
In my series of DocumentDB I will discuss more advanced features of DocumentDB. This post covers concurrency options for DocumentDB but starts with an overview of the problems with concurrency in general. Concurrency options in DocumentDB What is concurrency? Consider the scenario that you have a hotel room booking application. You have a web site that allows people… Continue reading DocumentDB revisited Part 3 – Concurrency in DocumentDB