Software Pipeline
(Redirected from pipeline (software))
Jump to navigation
Jump to search
A Software Pipeline is a computing pipeline that ...
- See: Directed Acyclic Graph, Software Engineering, Process (Computing), Thread (Computer Science), Coroutine, Subroutine, Pipeline Transport, Buffer (Computer Science), Stream (Computing), Record (Computer Science), Byte Stream, Bitstream, Apache Flume.
References
2017
- (Wikipedia, 2017) ⇒ https://en.wikipedia.org/wiki/Pipeline_(software) Retrieved:2017-1-25.
- In software engineering, a pipeline consists of a chain of processing elements (processes, threads, coroutines, functions, etc.), arranged so that the output of each element is the input of the next; the name is by analogy to a physical pipeline. Usually some amount of buffering is provided between consecutive elements. The information that flows in these pipelines is often a stream of records, bytes or bits, and the elements of a pipeline may be called filters; this is also called the pipes and filters design pattern. Connecting elements into a pipeline is analogous to function composition.
Narrowly speaking, a pipeline is linear and one-directional, though sometimes the term is applied to more general flows. For example, a primarily one-directional pipeline may have some communication in the other direction, known as a return channel or backchannel, as in the lexer hack, or a pipeline may be fully bi-directional. Flows with one-directional tree and directed acyclic graph topologies behave similarly to (linear) pipelines – the lack of cycles makes them simple – and thus may be loosely referred to as "pipelines".
- In software engineering, a pipeline consists of a chain of processing elements (processes, threads, coroutines, functions, etc.), arranged so that the output of each element is the input of the next; the name is by analogy to a physical pipeline. Usually some amount of buffering is provided between consecutive elements. The information that flows in these pipelines is often a stream of records, bytes or bits, and the elements of a pipeline may be called filters; this is also called the pipes and filters design pattern. Connecting elements into a pipeline is analogous to function composition.