Lorenzo Affetti
Lorenzo Affetti
This PR introduces options to skip some goroutines based on their stack. Use case: I know something I depend on is leaking, or it is ok that something is leaking,...
I would like to have an endpoint to validate that some Flux is, at least, syntactically correct. This would be great for users, because your go module shouldn't depend on...
It seems that `union` has performance problems: https://github.com/influxdata/flux/pull/1142#issuecomment-538309063. DOD: - verify that union has those problems via benchmarking - design a possible fix (could `union` be expressed in pure flux...
`aggregateWindow` doesn't support every parameter in `window`. For example, one cannot specify `offset`. Make it so.
`contains` is slow because it performs a linear search. In the case of dynamic queries, it is used with columns. It could be cool to offer users a functionality that...
# Stream Processing in Flux This document gathers some thoughts about including in Flux Stream Processing (SP) functionalities and some cool features that characterize state-of-the-art Stream Processors (SPs); e.g. [Flink](https://flink.apache.org)...
One thing that Flux is missing right now is *user-defined stateful operators*. At the moment, we provide users with many stateful operators that hide the complexity of updating an internal...
## What is the purpose of the change Migrate `test_batch_sql.sh` to end-to-end test frameworks. ## Brief change log - implement `BatchSQLTest` porting `test_batch_sql.sh` - fix issue in getting job ID...
Last changes for copying tables by @jsternberg (https://github.com/influxdata/flux/pull/1301) broke the usability of stream-table functions.