Questions tagged [asynchronous]
The asynchronous tag has no summary.
                34 questions
            
            
            
                1
            
            vote
        
        
            
                2
            
            answers
        
        
            
                138
            
            views
        
        
            
            
        Designing persistence guarantees in an ingestion pipeline with a non-customizable intermediary
                    I’m migrating a large volume of historical RRD data into a VictoriaMetrics cluster.
By design, vminsert buffers and asynchronously forwards data to vmstorage. This makes it unclear when data is ...
                
            
       
        
            
                1
            
            vote
        
        
            
                1
            
            answer
        
        
            
                399
            
            views
        
        
            
            
            
        What does it mean to be "truly" asynchronous?
                    Reading the Proactor pattern paper, specifically this part:
I/O Completion Ports in Windows NT: The Windows NT operating system implements the Proactor pattern. Various Asynchronous Operations such ...
                
            
       
        
            
                2
            
            votes
        
        
            
                3
            
            answers
        
        
            
                455
            
            views
        
        
            
            
            
        Does it make sense for an API with 1 daily job to do to be asynchronous?
                    This is a conceptual question about whether my specific use-case warrants the use of an asynchronous API.
Language: Python 3.11
Framework: FastAPI (ASGI)
I believe I am confused about what an ...
                
            
       
        
            
                1
            
            vote
        
        
            
                3
            
            answers
        
        
            
                234
            
            views
        
        
            
            
            
        Changes that aren't changes (The AAA problem)?
                    Suppose an application records a version marker on some data.
For example a database application might record UPDATE_TS as a datetime when a record was updated.
It could just be an integer version ...
                
            
       
        
            
                3
            
            votes
        
        
            
                2
            
            answers
        
        
            
                493
            
            views
        
        
            
            
            
        Can multiple producers cause events with the same key to be enqueued out of order within a specific partition of a topic?
                    I'm aiming to create a simple event-driven system where each microservice operates with its own database. The idea is to share database changes across microservices through events. To ensure proper ...
                
            
       
        
            
                0
            
            votes
        
        
            
                1
            
            answer
        
        
            
                77
            
            views
        
        
            
            
        What are the approaches for joining data in distributed processing
                    Let's suppose I have a processing workflow of:
Where:
The workflow can have many instances running at the same time.
A1 -> B1, C1 -> D1
A2 -> B2, C2 -> D2
and so on...
Each node is an ...
                
            
       
        
            
                1
            
            vote
        
        
            
                1
            
            answer
        
        
            
                416
            
            views
        
        
            
            
            
        Asynchronous HTTP request pattern
                    Here is the pattern that I thought about for a resource accepting a single asynchronous HTTP request at a time (i.e. a request which has not yet been fulfilled when the response is sent):
Create a ...
                
            
       
        
            
                0
            
            votes
        
        
            
                1
            
            answer
        
        
            
                352
            
            views
        
        
            
            
        TCP connection-oriented synchronous data write
                    thinking about the design of an IoT project where the devices don't have a standard application layer but rather a thin custom application layer utilizing TCP sockets.  What I mean by this is that the ...
                
            
       
        
            
                -2
            
            votes
        
        
            
                1
            
            answer
        
        
            
                868
            
            views
        
        
            
            
        How to sync async and await Tasks?
                    With threads you could use Semaphore, mutex,  ManualResetEvent, etc... to sync a shared data, how do you accomplish the same thing with tasks? Essentially, if I have shared data between different ...
                
            
       
        
            
                2
            
            votes
        
        
            
                2
            
            answers
        
        
            
                527
            
            views
        
        
            
            
        Should I create two synchronous or a single asynchronous rest APIs?
                    Here is the situation. System A sends the notification as it completes the work items to System B. System A does not know how many items the project consists of. It's just a pass-through system. ...
                
            
       
        
            
                0
            
            votes
        
        
            
                3
            
            answers
        
        
            
                613
            
            views
        
        
            
            
            
        Is microservices architecture a good candidate for a pipeline?
                    I have a monolithic application which can be divided into multiple steps and different steps have variable scaling requirement, however the input of the next step is the output of the current step. ...
                
            
       
        
            
                1
            
            vote
        
        
            
                0
            
            answers
        
        
            
                159
            
            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 ...
                
            
       
        
            
                0
            
            votes
        
        
            
                0
            
            answers
        
        
            
                48
            
            views
        
        
            
        Designing sane messaging paradigm for concurrent updates
                    We have a weird use-case that I need to support in my application and needed some opinions on how to design it.
At a basic level the application allows users to work on a "list" of "tweets" she cares ...
                
            
       
        
            
                -2
            
            votes
        
        
            
                1
            
            answer
        
        
            
                54
            
            views
        
        
            
            
        Synchronisation of different "channel" in an asynchronous way
                    I have a scenario where a service needs to update back and forth information from different channels (and each channel should have the same information, e.g inventory of products). 
It all works fine ...
                
            
       
        
            
                2
            
            votes
        
        
            
                1
            
            answer
        
        
            
                862
            
            views
        
        
            
        Long running REST API in PHP, async?
                    I have a RESTful API built with PHP. In POST request saving to DB is triggered. The problem is that now I have to support long running tasks. For example a user triggers POST request that is going to ...
                
            
       
         
         
        