dotnetomaniak.pl - Artykuły z tagiem microservices

Mikrousługi (ang. microservices) to styl architektoniczny zorientowany na szybkość rozwoju oprogramowania, rozumianą jako liczba funkcjonalności tworzonych w jednostce czasu oraz czasochłonność całego procesu wytwórczego – od koncepcji do wdrożenia (time to market). Coraz większej popularności podejścia mikrousługowego sprzyja obecna wysoka zmienność otoczenia biznesowego, co zmusza firmy do szybkiego reagowania celem uniknięcia sytuacji kiedy dobre rozwiązanie wdrożone zbyt późno staje się złym rozwią...

Od monolitu do mikrousług - migrować czy nie migrować?

Architektura 2066 dni, 21 godzin, 12 minut temu witek1902 136 źrodło rozwiń

I think its no secret that more and more development teams are trying to take more of a micro service oriented approach (and for all the good reasons). With the power that cloud providers give plus the benefit of container (Docker and Kubernetes) I think it is inevitable that micro services will become a standard. Of course this approach is not problem proof but it allows us to move some of the monolith type application issues somewhere else where we have more flexibility

Event Sourcing for dummies

Architektura 2176 dni, 14 godzin, 9 minut temu g_naj 107 źrodło rozwiń

Mikroserwisy rozwiązują wiele problemów występujących w tradycyjnym tworzeniu oprogramowania. Niestety żeby architektura rozproszona spełniała swoje zadania wymaga dobrego zaprojektowania i dużej wiedzy. W tym artykule zebrano informacje, które kwestie powinny być przemyślane podczas projektowania systemu.

Źródło: devenv.pl
Dziel się z innymi:
Mikroserwisy - zbiór informacji - DevEnv

Architektura 2182 dni, 19 godzin, 28 minut temu devenv 225 źrodło rozwiń

My review of "Building Microservices" book by Sam Newman - a great compendium of microservices architecture.

Źródło: radblog.pl
Dziel się z innymi:
Building Microservices - book review | Radek Maziarka Blog

Architektura 2271 dni, 17 godzin, 30 minut temu Radosław Maziarka 138 źrodło rozwiń

There are some common questions when it comes to microservices. One of them is „how to forward request from API gateway to the particular microservice?”. There’s no rule of thumb here because everyone has a slightly different approach, but the most popular solution I know is:For writes, so creates, updates and deletes (CUD) create a command and publish it to the service bus based on a queue like RabbitMQ.For reads (GET) forward the HTTP request to the internal API (not p...

Źródło: foreverframe.net
Dziel się z innymi:
Microservices, HTTP forwarding and RestEase - Forever F[r]ame

Programowanie rozproszone 2296 dni, 22 godziny, 30 minut temu dpawlukiewicz 158 źrodło rozwiń

Z racji tego że to okrągły, 16 post, to postanowiłem zrobić coś nowego :). Obecnie mój blog jest wypełniony ciężkimi, technicznymi tematami. To zawsze będzie serce i kręgosłup tego bloga. Jednak, aby zachować świeżość umysłu, trzeba od czasu do czasu zrobić coś nowego. Postanowiłem podzielić się opinią o książce “Building Microservices with ASP.NET Core” autorstwa Kevina Hoffmana. Książka ta jest stosunkowo nowa (wydana w tym miesiącu) i w momencie pisania tego artykułu nadal utrzymuje się wśród nowości ...

Recenzja - Building Microservices with ASP.NET Core - bd90

Inne 2403 dni, 23 godziny, 18 minut temu bd90 252 źrodło rozwiń

Docker, konteneryzacja aplikacji, mikroserwisy to nie jest tylko pozamykanie jakiś małych części aplikacji w oddzielne kontenery i zdeploy-owanie ich na jakaś chmurę w celu jej uruchomienia. Sam docker to dużo bardziej skomplikowane narzędzie niż mogłoby się wydawać. Za jego pomocą możemy tworzyć całe ekosystemy zawierające wirtualne sieci, usługi typu service discovery a nawet (od niedawna) za pomocą orchiestrator-a, skalować naszą aplikację. W dzisiejszym poście chciałbym poświęcić kilka słów wirtualny...

Źródło: bd90.pl
Dziel się z innymi:
Docker - Network - bd90

Narzędzia 2408 dni, 21 godzin, 57 minut temu bd90 97 źrodło rozwiń

Microservices are still pretty popular in our industry since they imply lots of benefits. However working with that kind of architecture might be annoying when it comes to commit the changes using GIT. Why? Simply because in a common approach, each microservice should be put in a separate repository. Therefore, instead of doing your typical „GIT sequence” once, you end up with few terminals where you do pretty much the same job. Fortunately, you can avoid that with no big deal. ...

Źródło: foreverframe.net
Dziel się z innymi:
Working with microservices and GIT - Forever F[r]ame

Narzędzia 2447 dni, 19 godzin, 25 minut temu dpawlukiewicz 134 źrodło rozwiń

Today’s post is going to shortly discuss entire architecture,  I’m going to implement in next three months. Since I’m not microservices master, some of my current decisions might be stupid or just not efficient. I so, please let me know in the comments. This would definitely help me out 😉 !  What are microservices? Let’s start with defining the microservice term. In a common approach, we design our system as one huge „being”. Of course, there mig...

Źródło: foreverframe.net
Dziel się z innymi:
gifty - Architecture overview - Forever F[r]ame

Daj się poznać 2017 2601 dni, 20 godzin, 19 minut temu dpawlukiewicz 49 źrodło rozwiń

I often work on applications whose sole task is to execute a script at certain time or day. You may approach it in several ways, eg.: Task Scheduler (Windows), SQL Job (if it is a SQL task) or CRON in Linux. You may also write application, which would run in background and execute a script at certain time. The only question is – do you really want do it? In this post, I would like to introduce other solution to tasks like this. ...

Scheduled jobs made easy - Topshelf and Quartz.NET | mpustelak.com

Programowanie rozproszone 2653 dni, 18 godzin, 54 minuty temu Mateusz Pustelak 294 źrodło rozwiń

Not so long ago, I’ve eventually decided to dive into the world of microservices. I did look for an opportunity to make use of this architectural pattern for quite some time and finally was able to do so. After 3 months of trying out the new things and learning stuff mostly on my own (the hard way) I believe it’s a good time to share some of my experience. I have no doubts that at some point in the future when I look back at this post I might be like – “oh God, what was I thinking back then, it’s so wro...

Dziel się z innymi:
So I’ve been doing microservices | Piotr Gankiewicz

Programowanie rozproszone 2703 dni, 21 godzin, 1 minutę temu spetz 202 źrodło rozwiń

It’s been quite a while since I’ve started gathering some knowledge about the microservices architectural pattern that’s been on a hype recently. After reading many articles, some books like Microservices in .NET Core and talking with smart guys in the Devs PL Slack channel, I’ve eventually decided that the time has to come to try to make the microservices happen in the real world project. That’s the beginning of my journey into the distributed programming and architecture, so please keep that in mind wh...

Dziel się z innymi:
[EN]Microservices, here I come | Piotr Gankiewicz

Architektura 2765 dni, 21 godzin, 17 minut temu spetz 251 źrodło rozwiń

I suppose there are not so many people who do not know what Node.js is. You may love it, you may hate it, but you cannot deny the fact that more and more enterprises are using it to replace some parts of their system, previously written in Java, Rails or .Net.  Node.js runs in a lot of environments – starting from large, multi-core servers, through laptops, then microcomputers like Rasperry Pi, finishing on IoT devices...

Źródło: epikia.eu
Dziel się z innymi:
[EN] Developing Node.js App Services in TypeScript – part 1 of n: Introduction. – Epikia

Web 2838 dni, 6 godzin, 40 minut temu piotrgasiorowski 82 źrodło rozwiń

Jak wybrac losowy port do hostowania np. mikro serwisu? Jaki zakres portow wybrac? Jak sprawdzic, czy port jest wolny?

Źródło: devblog.dymel.pl
Dziel się z innymi:
Find free port for your application - Michal Dymel DevBlog

Daj się poznać 2016 2920 dni, 19 godzin, 45 minut temu Michal Dymel 72 źrodło rozwiń

Zmiana koncepcji na rozwiązanie problemu services registry w MiSeCo

Źródło: devblog.dymel.pl
Dziel się z innymi:
MiSeCo #9: Services Registry – Michał Dymel – DevBlog

Daj się poznać 2016 2927 dni, 21 godzin, 3 minuty temu Michal Dymel 29 źrodło rozwiń

MiSeCo #8: Service discovery methods ?>michalComments 0 Comment This is an 8th post in a series about MiSeCo – a project I am working on for the “Daj się poznać” challenge (in Polish). So far I have implemented a way of calling service methods remotely over HTTP protocol. Currently, service URL is hard-coded in the application. I need to find a way to allow services register automatically so that very little configuration is needed. Initially, I wanted to create MiSeCo in the way that there is no c...

Źródło: devblog.dymel.pl
Dziel się z innymi:
[EN] Service discovery methods in microservices architecture – Michał Dymel – DevBlog

Daj się poznać 2016 2932 dni, 17 godzin, 32 minuty temu Michal Dymel 53 źrodło rozwiń

Kontynuacja zdalnego wywoływania metod w microservices.

Źródło: devblog.dymel.pl
Dziel się z innymi:
MiSeCo #7: Communication – Michał Dymel – DevBlog

Daj się poznać 2016 2935 dni, 19 godzin, 56 minut temu Michal Dymel 40 źrodło rozwiń

Kolejny wpis o MiSeCo. Tym razem opisuje strukturę projektu oraz wstępne założenia implementacji.

Źródło: devblog.dymel.pl
Dziel się z innymi:
MiSeCo – project structure – Michał Dymel – DevBlog

Daj się poznać 2016 2966 dni, 16 godzin, 42 minuty temu Michal Dymel 60 źrodło rozwiń

Wstęp do MiSeCo: MicroServices framework based on ASP.NET Core. Mój projekt na #dajsiepoznac

Źródło: devblog.dymel.pl
Dziel się z innymi:
[EN] Introduction to MiSeCo – Michał Dymel – DevBlog

Daj się poznać 2016 2969 dni, 21 godzin, 52 minuty temu Michal Dymel 48 źrodło rozwiń

This post describes how to minimize overhead when developing systems with microservices architecture, especially as it comes to development and deployment. Some time ago, we published similar post about solving this problem in Microsoft and Azure world. This time we will focus on AWS, Java, Spring Boot, Docker and some useful open source libraries from Netflix.

[EN] Microservices with minimum overhead using Spring Cloud, Docker and AWS ECS | Future Processing

Inne 3024 dni, 3 godziny, 16 minut temu FutureProcessing 98 źrodło rozwiń

1 2 3

Najaktywniejsi w tym miesiącu