Questions tagged [eda]

event-driven architecture

Event-driven architecture (EDA) is a software architecture pattern promoting the production, detection, consumption of, and reaction to events.

108 questions
41
votes
3 answers

What is SEDA (Staged Event Driven Architecture)?

SEDA: An Architecture for Well-Conditioned, Scalable Internet Services "SEDA is an acronym for staged event-driven architecture, and decomposes a complex, event-driven application into a set of stages connected by queues." I understand that it's an…
SEDA
  • 419
  • 1
  • 4
  • 3
30
votes
5 answers

Good resources to learn about Event Driven Architecture

Looking for books, blogs, web sites or videos. At the moment I am getting a lot of value from the blogs of Udi Dahan and Greg Young, but I was wondering if there are any other experts out there worth listening to?
Codebrain
  • 5,565
  • 4
  • 28
  • 21
24
votes
2 answers

Event-driven architecture and structure of events

I'm new to EDA and I've read a lot about benefits and would probably be interested to apply it during my next project but still haven't understood something. When raising an event, which pattern is the most suited: Name the event "CustomerUpdate"…
6
votes
5 answers

Closing a PreparedStatement after a single execute – is it a design flaw?

I have looked into various places, and have heard a lot of dubious claims, ranging from PreparedStatement should be preferred over Statement everywhere, even if only for the performance benefit; all the way to claims that PreparedStatements should…
Tadas S
  • 1,955
  • 19
  • 33
5
votes
1 answer

API vs Event in Microservice approach

What about Smart endpoints and dumb pipes in terms of different type of requests? After reading that I was thinking that it's enough to subscribe for some events and deal with that. But now I've realised that sometimes you should have opened API…
user1016265
  • 2,307
  • 3
  • 32
  • 49
5
votes
4 answers

Apache Camel ESB for C# and Java EDA

We are looking at integrating some of our coarse grained business Services using an Event Driven Architecture (EDA) and the server side of these Services (REST) are implemented in both Java and .NET (C#). We originally thought of using RabbitMQ (and…
Dokie
  • 304
  • 3
  • 9
3
votes
1 answer

Regex remove duplicate phrases in multiline string

What is the problem: I have a multiline text, for example: 1: This is test string for my app. d 2: This is test string for my app. 3: This is test string for my app. abcd 4: This is test string for my app. 5: This is test string for my app. 6: This…
G43beli
  • 3,835
  • 4
  • 21
  • 28
3
votes
2 answers

Giving users immediate response in Event Driven Architecture

I have been reading a lot about Event Driven Architecture and it makes a lot of sense to me, but the issue of giving users immediate feedback is confusing me. Say there is a service ('EmployeeService') that holds a list of all employees. The…
Paul T Davies
  • 2,527
  • 2
  • 22
  • 39
2
votes
3 answers

Delete rows where any column contains a certain string

I am dealing with a dataset that uses ".." as a placeholder for null values. These null values span across all of my columns. My dataset looks as follows: Country Code Year GDP growth (%) GDP…
Niamh
  • 51
  • 5
2
votes
1 answer

Programming language for graphics, semiconductor layout

Is there any programming language to do graphical layout for semiconductor manufacturing? So far I am using LEdit, an expensive and rudimentary CAD program. As my design is composed of hundreds of identical cells with only small variations, creating…
Dan
  • 21
  • 1
2
votes
3 answers

Need help on selecting items in simple database in python

I'm trying to write a circuit schematic drawing tool in Python. I'm creating a simple database based on dictionaries which holds all the components and their properties. I'm also trying to create a simple query language where you can select, for…
michael
2
votes
2 answers

Conversion function "To_bit" must have exactly one formal parameter

I am getting above error while running modelsim on a VHDL Testcase and I am unable to understand why is it an error. The Testcase: LIBRARY IEEE; Use ieee.std_logic_1164.all; entity a is port (in11 : in std_logic ); end a; Architecture a of a…
Dharmendra
  • 384
  • 1
  • 5
  • 22
2
votes
5 answers

Open-source EDA project

Do you know any open-source project in EDA (Electronic Design Automation) looking for C++ programmers?
grigy
  • 6,696
  • 12
  • 49
  • 76
1
vote
1 answer

Pyinstaller packing of D-tale

I'm trying to use pyinstaller (latest version) to package D-table as an EXE file, but I'm getting this error: FileNotFoundError: No such file of directory: ...\dash_colorscales\metadata.json.** FileNotFoundError: No such file of directory:…
Milleon
  • 35
  • 6
1
vote
0 answers

dtale - Highlight Outliers only flashing up once, then colors vanish

I am using dtale (https://pypi.org/project/dtale/) for the visualization of my pandas data frames in jupyter-notebook on Ubuntu (browser is Chrome). When I press the option "Highlight" and then "Highlight Outliers" the colors flash up once in my…
MWeb
  • 13
  • 4
1
2 3 4 5 6 7 8