microservices Questions
3
Solved
I was just trying to find a generic definition what are the differences between
Microservices
Lambda Functions
and Serverless-Functions
My goal would be to implement a „real“ Microservice on Kyma...
Sane asked 5/2, 2021 at 21:37
3
Solved
I am new to microservice architecture. Currently I am using spring boot for my microservices, in case one of the microservice is down how should fail over mechanism work ?
For Ex. if we have 3 mic...
Sudhir asked 28/5, 2018 at 8:52
2
Solved
First of all, excuse my English, it's very bad. I am using MassTransit with Azure Service Bus for asynchronous communication between microservices. By their own definition, and to avoid generating ...
Speech asked 24/9, 2018 at 10:24
4
I was looking at Nestjs documentation to set up a microservice that listens to RabbitMQ messages. It's very straight forward when I have to listen to one queue. What if there are multiple queues th...
Mcmath asked 17/7, 2020 at 8:3
3
Solved
I am using Spring Boot and Microservices stack using Spring Cloud APIGW. I am using the same code mentioned here: https://piotrminkowski.com/2020/02/20/microservices-api-documentation-with-springdo...
Werewolf asked 15/8, 2022 at 5:9
8
Assume there is a worker service that receives messages from a queue, reads the product with the specified Id from a document database, applies some manipulation logic based on the message, and fin...
Unaccountedfor asked 8/3, 2015 at 19:10
8
I keep studying and trying Reactive Style of coding using Reactor and RxJava. I do understand that reactive coding makes better utilization of CPU compared to single threaded execution.
Is there ...
Spalla asked 6/2, 2017 at 7:14
11
Properties File
server:
port: 8999
eureka:
instance:
hostname: localhost
#Actuator Configuration
management:
endpoints:
web:
exposure:
include: hystrix.stream, health, info
#Hystrix ...
Antione asked 21/9, 2021 at 4:29
20
Solved
I am developing a code from https://www.dineshonjava.com/microservices-with-spring-boot/. When I update the spring-boot-starter-parent from 1.5.4.RELEASE to 2.0.4.RELEASE, build got failed.
Could ...
Davies asked 19/8, 2018 at 19:17
7
Solved
I am using Intellij Idea IDE version 2019.2.3 and I want to run two instances of my spring boot application in different ports, but I got just one running instance.
I start the application in the p...
Gangrel asked 11/10, 2019 at 21:6
4
I’m currently learning about the Actor design pattern, or model, and it seems quite interesting. However, I’m struggling to find any decent real-world examples of how, or where, this model could be...
Intradermal asked 11/2, 2021 at 11:45
3
Solved
I have read the similar question related to this problem. It ended up with frustration.
I installed consul with docker. I run the following command. docker run --name consul -d -p 8500:8500 consul...
Spoonfeed asked 4/11, 2021 at 13:38
22
I am very new to the microservices and trying to run the code from link: https://dzone.com/articles/advanced-microservices-security-with-spring-and-oa . When I simply run the code I see the followi...
Mackenziemackerel asked 9/9, 2017 at 13:26
7
Solved
I am designing the architecture of my new app.I chose microservice architecture.In my architecture I noticed that I have models that are used by diffrent microservices. I want to know if there is a...
Ambidextrous asked 28/3, 2019 at 9:45
2
Solved
I am investigating options to build a system to provide "Entity Access Control" across a microservices based architecture to restrict access to certain data based on the requesting user. A full Rol...
Audraaudras asked 18/2, 2020 at 5:40
3
There is a smart way to get the list of services (or containers) of docker-compose files from inside of a container.
I would prefer not to using volumes, or passing statically the compose-file to c...
Kain asked 8/6, 2017 at 8:44
3
Solved
I have below architecture in my project
My UI Service(Port 8080) making Feign call to Gateway Service(Port 8085).
My Get call from UI service is " http://localhost:8080/invoice-list?startDate=2018...
Sour asked 5/10, 2018 at 11:7
14
Solved
I'm trying to run a very basic Eureka Server but it gives the following error:
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'org.springframework.c...
Siouan asked 6/12, 2020 at 4:56
4
Solved
Suppose I have a service which rather than listening for http request, or gRPC procedure calls only consumes messages from a broker (Kafka, rabbitMQ, Google Pub/Sub, what have you). How should I go...
Luing asked 22/7, 2021 at 12:4
2
Solved
I'm developing spring boot microservices example from the link: https://dzone.com/articles/spring-boot-creating. In this project I simply updated the parent dependency to its latest version and oth...
Voucher asked 9/9, 2016 at 6:23
3
Solved
Zipkin works well locally but not in docker container. All the microservices are registered well in the Eureka and they can communicate well. But the only problem is Zipkin. I am getting the follow...
Trafficator asked 21/12, 2022 at 15:2
6
Solved
I've read a post saying that:
We can not implement traditional transaction system like 2 phase commit in micro-services
in a distributed environment.
I agree completely with this.
But it wou...
Garage asked 19/3, 2019 at 20:42
15
Solved
i get this error whenever i try to add a function to the global nodejs global namsepace in a TypeScript environment.
Element implicitly has an 'any' type because type 'typeof globalThis'
has no in...
Pennate asked 22/7, 2021 at 8:36
4
Solved
I'm developing my insight about distributed systems, and how to maintain data consistency across such systems, where business transactions covers multiple services, bounded contexts and network bou...
Viceregent asked 21/2, 2018 at 13:10
5
Solved
I have following error when use react-dom/client
Compiled with problems:X
ERROR in src/index.tsx:2:28
TS7016: Could not find a declaration file for module 'react-dom/client'. 'C:/Users/Mohamad/De...
Superiority asked 23/9, 2022 at 11:18
1 Next >
© 2022 - 2024 — McMap. All rights reserved.