Tag: Microservices
-
Good-bye ESNI, hello ECH!
Posted on December 8, 2020, Level beginner Resource Length long
Most communication on the modern Internet is encrypted to ensure that its content is intelligible only to the endpoints, i.e., client and server. Encryption, however, requires a key and so the endpoints must agree on an encryption key without revealing the key to would-be attackers. By Christopher Patton.
Tags infosec microservices devops app-development
-
Microfrontends: expensive recipe for frontend applications
Posted on December 6, 2020, Level beginner Resource Length short
Microfrontends is a new trend in the frontend world however, the idea of being able to compose an application out of other independent applications is not new. By Sergio Martino.
Tags frontend microservices web-development app-development
-
MQTT vs SSE
Posted on October 17, 2020, Level beginner Resource Length long
Building a real-time web or mobile application is a bit more challenging than building a standard service. That's because the protocol you choose to deliver data from the server to the client — and back — will have a significant impact on the overall experience. By Kieran Kilbride-Singh.
Tags microservices web-development event-driven messaging software-architecture app-development
-
Kafka with Java: Build a secure, scalable messaging app
Posted on October 16, 2020, Level intermediate Resource Length medium
Today's users expect your app to be accessible from their computer, mobile phone, tablet, or any other device! This transition to Software as a Service (SaaS) as the norm requires developers to effectively integrate with robust tools that scale to handle thousands (or even millions) of requests every second. Apache Kafka is one of the most effective tools for handling those high throughput environments. By Daniel Pereira.
Tags microservices event-driven messaging java software-architecture infosec
-
Never write a UserService again
Posted on September 25, 2020, Level beginner Resource Length long
Recently at our semi-regular architecture discussion group, we've been looking at the Auth0 service: what it is, how it works and when it might be a good idea to use it. By Adam Warski.
Tags devops microservices event-driven infosec
-
How we build micro frontends
Posted on August 28, 2020, Level beginner Resource Length long
Building micro-frontends to speed up and scale our web development process. By Jonathan Saring.
Tags css frontend web-development app-development microservices
-
How autoscaling GitLab CI works on AWS Fargate
Posted on August 24, 2020, Level intermediate Resource Length medium
Run your CI jobs as AWS Fargate tasks with GitLab Runner and the Fargate Driver. Autoscaling GitLab Runner is a unique value proposition for teams that run their self-managed build agents on cloud-hosted virtual machines. By Darren Eastman.
Tags microservices devops cicd aws cloud
-
Succeeding with microservices
Posted on August 23, 2020, Level beginner Resource Length medium
How to succeed with microservices through principles, domain driven design concepts, and coding best practices.By Tiffany Jachja.
Tags microservices devops apis cio software-architecture
-
Get a LoadBalancer for your private Kubernetes cluster
Posted on June 11, 2020, Level intermediate Resource Length long
In this tutorial, author will walk through how you can expose a Service of type LoadBalancer in Kubernetes, and then get a public, routeable IP for any service on your local or dev cluster through the new inlets-operator. By Alex Ellis.
Tags devops kubernetes containers microservices
-
Best practices for microservices on kubernetes
Posted on April 4, 2020, Level intermediate Resource Length long
There are several best practices for building microservices architecture properly. In this article author mentions the best practices with some new rules dedicated especially for microservices deployed on Kubernetes platform. By Piotr Minkowski.
Tags microservices devops web-development open-source kubernetes kotlin
-
Event-driven servers: An Intuitive Study
Posted on March 4, 2020, Level intermediate Resource Length medium
James Lim out together this piece about short explainer of event-driven servers, intended to help readers gain an intuitive understanding of event loops.
Tags servers miscellaneous microservices event-driven messaging software-architecture
-
Best practices for event-driven microservice architecture
Posted on February 14, 2020, Level intermediate Resource Length medium
While you might have used REST as your service communications layer in the past, more and more projects are moving to an event-driven architecture. Let's dive into the pros and cons of this popular architecture, some of the key design choices it entails, and common anti-patterns. By Jason Skowronski.
Tags microservices event-driven messaging programming software-architecture