-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
95 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sdf-beta4 | ||
sdf-beta6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
fvm install sdf-beta4 | ||
fvm install sdf-beta5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,12 +15,6 @@ To upgrade CLI to the beta4, run the following command: | |
|
||
<CodeBlock language="bash">{InstallFvm}</CodeBlock> | ||
|
||
Make sure that [`wasm32-wasip2`](https://doc.rust-lang.org/rustc/platform-support/wasm32-wasip2.html#wasm32-wasip2) target is installed. Typically, can be installed via: | ||
|
||
```bash | ||
$ rustup target add wasm32-wasip2 | ||
``` | ||
|
||
To upgrade host workers, shutdown and restart the worker: | ||
|
||
```bash | ||
|
@@ -30,26 +24,27 @@ $ sdf worker create <host-worker-name> | |
|
||
For upgrading cloud workers, please contact [InfinyOn support](#infinyon-support). | ||
|
||
### Compatibility and Breaking changes | ||
## Featured change | ||
|
||
- Added [sql mode] to interactive shell. With this change, user should be able to run SQL queries (including JOINS) in states of dataflow. The states that support the queries are the [dataframe states]. In particular, when the state has a window context, the queries are againts the last flushed state. | ||
|
||
### CLI changes | ||
- `sdf setup` now checks that Fluvio is running and that we can connect to it. | ||
|
||
### Changes | ||
- renamed [configuration used to connect to remote clusters] from `profile` to `remote_cluster_profile`. | ||
- updated to use `wasm32-wasip2` target for building wasm modules. | ||
- `sdf run` not longer accepts `--dev`. Develoment mode is now the default for `sdf run`. If you want to run in non-development mode use `--prod`. | ||
|
||
### Improvements | ||
|
||
## Improvements | ||
- Support definition of [nested types]. | ||
- Added capability to run complex queries like join on states in operator context through the [sql function]. | ||
- Performance improvements. | ||
- Improved error messages when nested types definitions are wrong. | ||
|
||
## Bug Fixes | ||
- When using windows, events with an older timestamp are skipped now. | ||
### Changes | ||
- Replaced dashes in tables. Previously, when the state name has dashes in it, we were escaping the state name in sql context with quotes. From sdf-beta5, we should access them using `_` instead of `-` on the table name in order to avoid the escaping. | ||
|
||
## InfinyOn Support | ||
|
||
For any questions or issues, please contact InfinyOn support at [email protected] or https://discordapp.com/invite/bBG2dTz | ||
|
||
[configuration used to connect to remote clusters]: concepts/dataflow-yaml.mdx#topics | ||
[nested types]: concepts/types.mdx#nested-types | ||
[sql mode]: cli/run.mdx#sql-mode | ||
[sql function]: concepts/state-dataframe.mdx#sql-function | ||
[dataframe states]: concepts/state-dataframe.mdx |