stream-processor
Here are 12 public repositories matching this topic...
It can be very difficult to piece together a reasonably estimate of a history of events from the current workers logs because none of them have timestamps.
So for that end, I think we should add timestamps to the logs.
This has some cons:
- We can't just use
@printf
like we have been until now. We need to either include a timestamp in every@printf
call (laborious and error prone) or c
-
Updated
Jan 10, 2022 - Go
FilterMap Operator
An Operator that both filters and maps.
Akin to Rust's own FilterMap but on a Stream
rather than Iterator
.
let strings = ["1", "two", "NaN", "four", "5"];
let mut app = Application::default()
.iterator(strings, |conf| {
conf.set_arcon_time(ArconTime::Process);
})
.filter_map(|s| s.parse().ok())
.b
Integration tests were originally used within generator project as inline compiling was not supported by Fluxtion. Many tests have been migrated to use com.fluxtion.generator.util.MultipleSepTargetInProcessTest.
MultipleSepTargetInProcessTest has the following advantages:
- Supports in-process compiling no need for integration tests
- Parameterized to test both compiled and interpreted v
-
Updated
Jan 23, 2022 - JavaScript
-
Updated
Nov 29, 2016 - CoffeeScript
-
Updated
Jan 21, 2021 - Go
-
Updated
Nov 29, 2016 - JavaScript
-
Updated
Feb 2, 2022 - Python
-
Updated
Jul 25, 2018 - Java
-
Updated
Feb 27, 2019 - Java
Improve this page
Add a description, image, and links to the stream-processor topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the stream-processor topic, visit your repo's landing page and select "manage topics."
Under the hood, Benthos
csv input
uses the standardencoding/csv
packages's csv.Reader struct.The current implementation of csv input doesn't allow setting the
LazyQuotes
field.We have a use case where we need to set the
LazyQuotes
field in order to make things work correctly.