Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion website/community/dev/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ The build script will be:
mvn clean install -DskipTests -T 1C
```

If you need to compile artifacts that target Java 8 bytecode, enable the
`java8` Maven profile:

```bash
mvn clean install -DskipTests -Pjava8
```

**NOTE**:
- For local testing, it's recommend to use directory `${project}/build-target` in project.
- For deploying distributed cluster, it's recommend to use binary file named `fluss-xxx-bin.tgz`, the file is in directory `${project}/fluss-dist/target`.
Expand Down Expand Up @@ -88,4 +95,4 @@ cd fluss-rust
cargo fmt --all -- --check
cargo clippy --all-targets --workspace -- -D warnings
cargo deny check licenses
```
```
4 changes: 2 additions & 2 deletions website/docs/engine-flink/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ For Flink's Table API, Fluss supports the following features:
| [SQL Show Partitions](ddl.md#show-partitions) | ✔️ | |
| [SQL Add Partition](ddl.md#add-partition) | ✔️ | |
| [SQL Drop Partition](ddl.md#drop-partition) | ✔️ | |
| [Procedures](ddl.md#procedures) | ✔️ | ACL management and cluster configuration |
| [Procedures](procedures.md) | ✔️ | ACL management and cluster configuration |
| [SQL Select](reads.md) | ✔️ | Support both streaming and batch mode. |
| [SQL Limit](reads.md#limit-read) | ✔️ | Only for Log Table |
| [SQL Insert Into](writes.md) | ✔️ | Support both streaming and batch mode. |
Expand Down Expand Up @@ -256,4 +256,4 @@ Fluss's integration for Flink automatically converts between Flink and Fluss typ
| VARBINARY | Not supported, suggest to use BYTES instead. |
| INTERVAL | Not supported |
| MULTISET | Not supported |
| RAW | Not supported |
| RAW | Not supported |
12 changes: 11 additions & 1 deletion website/src/pages/downloads.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

Apache Fluss 0.9.1 is the latest stable release.

<a id="fluss-connector"></a>

## Apache Fluss 0.9.1

| Artifact | Signature | SHA |
Expand All @@ -28,6 +30,14 @@ Read the [release blog](/blog/releases/0.8/) about the new features and signific

------------------

<a id="filesystem-jars"></a>

## Fluss Connector and Filesystem JARs

Fluss connector and filesystem JARs are published to Maven Central. Use the
artifact names documented in the Flink engine dependencies and tiered-storage
filesystem guides for your Flink and storage setup.

## Verifying Downloads

Downloaded Apache Fluss (Incubating) artifacts can be verified by following [this tutorial](https://www.apache.org/info/verification.html) of the Apache Software Foundation using the Apache Fluss (Incubating) release-signing [KEYS](https://downloads.apache.org/incubator/fluss/KEYS).
Downloaded Apache Fluss (Incubating) artifacts can be verified by following [this tutorial](https://www.apache.org/info/verification.html) of the Apache Software Foundation using the Apache Fluss (Incubating) release-signing [KEYS](https://downloads.apache.org/incubator/fluss/KEYS).