Sam Debruyn

Cloud Data Solution Architect

Specialized in Microsoft Azure, Fabric & modern data stack. Microsoft Data Platform MVP. Public speaker & meetup organizer. FOSS contributor.

Sam Debruyn

Some interesting takeaways from this year's Techorama

6 minutes

This post originally appeared on the dataroots blog .

Last week was a busy week for fans of the Microsoft technology stack like myself. Microsoft hosted its yearly developer conference, Microsoft Build, announcing lots of exciting updates  to new and existing Azure services. In the meantime, the Belgian community of Microsoft technology users gathered in Kinepolis Antwerp for this year’s edition of Techorama.

First off, let me start by thanking the incredible crew  and partners  to make Techorama happen. For known reasons, the conference couldn’t take place over the last 2 years, at least not in a physical form. While it’s great to see that a lot of companies and communities organised virtual meetups and conferences and we haven’t stopped sharing knowledge, sitting behind a screen for 2 consecutive days doesn’t give the same experience as an in-person conference. It felt heartwarming to see all the familiar faces in our local developer community again.

Now, the main reason to attend Techorama is not just the awesome community of developers and partners, the delicious food and drinks, but the interesting sessions. As Techorama is one of Belgium’s biggest tech conferences, attendees are often faced with tough choices when it comes to building their schedule, since most of the time you have over 10 🤯 concurrent sessions. This was my personalised schedule:

As you might have noticed, as a data & cloud engineer focused on Azure, my main interests lie in cloud best practices, databases and data platforms. Discussing every talk would lead this blogpost too far, so I picked out a few interesting takeaways from the list above.

The keynotes

Attendees often tend to have mixed opinions about keynotes, but I must say I really liked them. They provided a different take on the life of a software professional and gave me an interesting perspective to what the future still holds for us. Both keynote speakers are really good speakers, so I’d really recommend to attend their sessions of they ever speak at a conference you’re attending.

Security on Azure

When thinking about security of cloud services, you usually have to consider (at least) 3 layers of security:

Networking

You might have come across the checkbox above when configuring access Azure resources like a SQL Server. And when configuring network access, you might think the checkbox above is a good idea. Personally, I’d assume this would grant network access to this SQL Server from all other Azure resources I’ve created.

Unfortunately, that answer is incorrect. It grants access to the entirety of Azure. A malicious user, acting in their own tenant, creating a virtual machine meant to attack Azure users, could also get through. In general, it seems that this checkbox could use a clearer warning and I would now advise against checking it. Thanks to Sergey Chubarov for demonstrating this behaviour.

Authorization

In that same session, Sergey also shared how it’s very important to secure any servers or virtual machines hosting the Azure AD Connect controller so that local administrators cannot access it. The server has to be secured in the same way as a domain controller, because underneath it would be able to use the same level of permissions.

The future for Kubernetes on Azure

If you talk with any cloud engineer, you’ll hear them say that Kubernetes is the next big thing in the cloud, if not already the current. But with great power, comes great responsibility. And often, the sheer flexibility you get with Kubernetes, also make it a very complex solution.

Azure Container Apps is the serverless and managed version of Kubernetes we’ve all been waiting for

The refresher sessions to reiterate over all aspects of Kubernetes were really helpful, but what was even more promising was the demo of Azure Container Apps. It is the serverless and managed version of Kubernetes we’ve all been waiting for. The service was announced in preview last year but it has shown an incredible and speedy growth of new features. They might soon replace Azure Container Instances and Azure Web Apps for Containers. Like Azure Container Instances, the service is built on top of Kubernetes, but it only exposes a limited subset of its features, in a managed way. As beautifully demonstrated by Thorsten Hans, deploying a local Docker container to Azure Container Apps only takes 3 minutes. The demo gods have been good to him 😉

Going deeper into this specific service, would lead this blog post too far, but it is certainly something we’ll tell you more about in a future blog post or session.

Azure SQL Databases: more than just a database

Without any doubt my favourite session during the whole conference was the one given by Pieter Vanhove. He turned the session into a mini-workshop where attendees were divided into small groups and had to - literally - use pieces of a puzzle to build a solution for a concrete use case. In the use case, a company was planning on migrating their on-premise SQL Server to the cloud and we had to design all aspects of the migration journey.

Azure provides users with options which allows them to really finetune every aspect of the migration and configuration of a SQL database so that you can make it fit every company’s needs.

JSON in SQL databases

While Thomas Hütter’s session showed some more of SQL Server’s flexibility and that it can shine in dealing with JSON in a relational SQL database, I am still convinced that this is often a bad idea. The session showed some interesting features of SQL Server and it’s worth it to check out the documentation  on this topic. What I missed in the session is why you would store JSON in relation databases in the first place. Often this comes down to a mismatch in the technical design of an application. As Thomas pointed out, more often JSON data is stored in NoSQL databases like Azure Cosmos DB.

Conclusion

I could keep on rambling on how you’ve really missed out if you weren’t there at Techorama, but the takeaways above really demonstrate that users of the Microsoft Azure cloud really have a promising future ahead and that there is always more to learn about it. See you in Kinepolis Antwerp in May 2023 for next year’s edition of Techorama?

You might also like

If you liked this article, follow me on LinkedIn, Bluesky, or other social media to stay up-to-date with my latest posts. You might also like the following 2 posts about related topics:

Building & deploying Azure self-service data platforms for healthcare

1 minutes

I hosted this session of AZUG on Kubernetes and data platforms on Azure at the dataroots office in Leuven and gave a presentation. Event details Building & deploying Azure self-service data platforms for healthcare Speakers: Sam Debruyn & Wout Olyslagers Using a combination of Azure managed services, a lot of Azure DevOps and Terraform, LynxCare can provide ready-to-go data platforms on Azure to its customers.

Installing the Azure Event Hubs Python SDK on Raspberry Pi OS 64-bit

3 minutes

Since we’re going through some heat waves in Europe, I thought it might be interesting to start measuring the humidity, temperature and pressure in my apartment. To do so, I decided to use my Raspberry Pi 3 and the Pi Sense HAT running a Python script constantly sending measurements to an Azure Event Hub.