Questions tagged [integration]
The integration tag has no summary.
81 questions
1
vote
1
answer
153
views
Best practice for integrating UI and dynamic user-specific content using a Flask app
I am building a website that uses a recommendation system. Users submit a form which is sent to the backend for the recommendation logic calculation; the recommendation response is sent back to the ...
0
votes
6
answers
270
views
How can testability help in identifying and fixing bugs before they are integrated into the system?
Loose coupling promotes testability because it allows components to be tested in isolation without having to test the entire system. This can help to reduce the risk of introducing new bugs by making ...
1
vote
0
answers
131
views
How to structure an ERP system in a modular way, with module hierarchy and where do application layers stand in this?
I built an asset management system (a web application) using C# ASP.NET in MVC structure. My project is built upon the ASP.NET Boilerplate template, which includes 5 layers by default. These layers ...
3
votes
2
answers
622
views
Process many types of work in parallel, but sequential for each type of work
Imagine there is a stream of requests for about 500 types of work. There can be say 5 workers in parallel. One type of work should be executed by at most one worker at the same time. The requests for ...
0
votes
1
answer
389
views
Is it reasonable to pass file URLs to microservices instead of the file contents?
In microservices oriented architecture, service A receives a file and stores it. Later Service A has to pass the data in the file to Service B. We have a choice to send the data, as:
batches of rows ...
0
votes
2
answers
173
views
Integration pattern: API vs events
I need to design the architecture of a CRM "platform" that integrates 5-6 legacy CRMs.
One important feature is to show customer records stored in other CRMs in one single dashboard. The ...
0
votes
1
answer
687
views
Solution architecture for a Kafka streaming to website system
Not sure if this is the correct forum for this question - but I could really use some advice.
I need to design a system (within certain constraints).
The system must implement the following logic:
A ...
0
votes
1
answer
70
views
REST Service-to-Service communication contract classes
Given two systems A and B that communicate with a Request-Response protocol (REST services).
Where should the entities representing the request and response bodies reside?
N.B.: The entities above ...
1
vote
0
answers
59
views
Looking for the right design (pattern?) for my webapp and external APIs intgerations
I'm working on a simple CRM (Customer Relationship Management) webapp (Flask and Peewee ORM) and I found myself in a situation where I believe that I should have used a design pattern that I may not ...
-2
votes
2
answers
495
views
What happens after the ETL process?
I have thousands of .csv files with the same structure and, in most of the cases, some column values are the same ones recurring. Each file represents a report on some structures, with numeric ...
0
votes
1
answer
242
views
Designing Integration event application
We have a microservice that integrates with a third party system via REST API to handle appointment booking for our customer. It takes advantage of the event-driven model. Our microservice emits out ...
-2
votes
1
answer
1k
views
Good idea to use source control with my Lambda functions?
So, I have this legacy project I am starting to hump into with my team. This is a AWS Lambda Python application (a bunch of Micro-services that inform various front-ends). So, when I asked how they ...
-3
votes
2
answers
4k
views
Sending JSON in body of an email
Basically, in our scenario, data has to be sent from a WordPress form to Dynamics 365. My current approach is putting it into an email body in JSON format, that is then extracted and further processed ...
0
votes
0
answers
533
views
Integrating HTTP / Webhooks with Message Queues
I'm working at a project which integrates several Applications mostly SaaS Applications. The SaaS solutions have all the possibilities to hook into the internal event system with webhooks. The ...
1
vote
0
answers
160
views
Asynchronous communication with legacy system
Background
My task is to create new system (X) for realtime work tracking for internal use. You should think it like an app that you have opened on a separate monitor/ on phone all day and you are ...