8000 Tags · heilhead/fluvio · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: heilhead/fluvio

Tags

dev

Toggle dev's commit message
Log fluvio version on client (infinyon#2416)

Closes infinyon#2403

v0.9.27

Toggle v0.9.27's commit message
Fix some typo Event change_listener (infinyon#2382)

Fix typo in `fluvio_types::event::offsets::OffsetPublisher`:

* deprecate `change_listner`
* replace by `change_listener`


Co-authored-by: Luis Moreno <morenol@users.noreply.github.com>

v0.9.26

Toggle v0.9.26's commit message
Add cross compat test to CI (infinyon#2354)

From CD_Dev, but use CI artifacts. Using channels to manage cluster and CLI versions

v0.9.25

Toggle v0.9.25's commit message
Update changelog for {{time}} support in fluvio consume (infinyon#2346)

v0.9.24

Toggle v0.9.24's commit message
Allow exporting profile (infinyon#2329)

Resolves infinyon#2327

Adds
```
fluvio-profile-export 
Export a profile

USAGE:
    fluvio profile export [OPTIONS] [PROFILE_NAME]

ARGS:
    <PROFILE_NAME>    

OPTIONS:
    -O, --output <type>    [default: json] [possible values: table, yaml, json]
    -h, --help             Print help information
```

Output:
```
{
  "endpoint": "<endpoint>",
  "tls": {
    "policy": "<Verified | Anonymous | Disabled>",
    "domain": "<domain>",
    "key": "<cert pem>",
    "cert": "<cert pem>",
    "ca_cert": "<cert pem>"
  }
}
```

Co-authored-by: Nick Cardin <nick@cardin.email>

v0.9.23

Toggle v0.9.23's commit message
Installer script update (infinyon#2296)

Update installer to install the same version as Fluvio CLI, if specified instead of always using `stable`

v0.9.22

Toggle v0.9.22's commit message
Topic level compression fix (infinyon#2264)

Closes infinyon#2265

Adding #[fluvio(min_version) in Replica struct was provoking using the default for compression type. 

This changes fixes that

v0.9.21

Toggle v0.9.21's commit message
add compression support to fluvio produce cli (infinyon#2246)

Closes infinyon#2245

adds a `--compression` flag to `fluvio produce` command. Supported values are `none`, `gzip`, `snap` and `lz4`

v0.9.20

Toggle v0.9.20's commit message
fluvio-test data generator (infinyon#2187)

Resolves infinyon#2129 

Add test `generator`. Uses a topic as event bus to synchronize all producers (as foundation for perf testing)

```
FLAGS:
    -h, --help         Prints help information
        --multi-run    When set, unique topics will be used so multiple instances of generator against cluster won't
                       collide
    -V, --version      Prints version information
    -v, --verbose      Opt-in to detailed output printed to stdout

OPTIONS:
        --linger <batch-linger-ms>             Producer linger (ms)
        --batch-size <batch-size>              Producer batch size (bytes)
        --producers <producers>                Number of producers to create [default: 1]
        --record-size <record-size>            Record payload size used by test (bytes) [default: 1000]
        --runtime-seconds <runtime-seconds>    Max time we want the producer to run, in seconds - Default: forever
        --topics <topics>                      Number of topics for producers to send traffic to [default: 1]
```

Additional flag `--multi-run` provided for the case of running multiple instances of generator against the same cluster w/o collision.

v0.9.19

Toggle v0.9.19's commit message
fix zero copy problem (infinyon#2182)

resolves infinyon#2181
0