Skip to content

Commit d6a01f5

Browse files
authored
[docs] Add Upgrade Notes for v0.8 (#1695)
1 parent 6567deb commit d6a01f5

File tree

4 files changed

+50
-1
lines changed

4 files changed

+50
-1
lines changed

website/docs/maintenance/operations/racks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Racks
2+
title: Rack-Aware Deployment
33
sidebar_position: 2
44
---
55

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: Upgrade Notes
3+
sidebar_position: 3
4+
---
5+
6+
# Upgrade Notes from v0.7 to v0.8
7+
8+
These upgrade notes discuss important aspects, such as configuration, behavior, or dependencies, that changed between Fluss 0.7 and Fluss 0.8. Please read these notes carefully if you are planning to upgrade your Fluss version to 0.8.
9+
10+
## Deprecation / End of Support
11+
12+
### Java 8 is Deprecated
13+
Beginning with Fluss v0.8, we now only provide binary distributions built with Java 11.
14+
**Java 8 is deprecated** as of this release and will be fully removed in future versions.
15+
16+
🔧 **For users still on Java 8**:
17+
You can continue building Fluss from source using Java 8 by running:
18+
```bash
19+
mvn install -DskipTests -Pjava8
20+
```
21+
However, we **strongly recommend upgrading to Java 11 or higher** to ensure compatibility, performance, and long-term support.
22+
23+
🔁 **If you’re using Fluss with Apache Flink**:
24+
Please also upgrade your Flink deployment to **Java 11 or above**. All Flink versions currently supported by Fluss are fully compatible with Java 11.
25+
26+
## Metrics Updates
27+
28+
We have updated the report level for some metrics and also removed some metrics, this greatly reduces the metrics amount and improves the performance.
29+
30+
The following metrics are removed: TODO
31+
32+
The following metrics are changed: TODO
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: Upgrade Notes
3+
sidebar_class_name: hidden
4+
---
5+
6+
# Upgrade Notes from v0.8 to v0.9
7+
8+
These upgrade notes discuss important aspects, such as configuration, behavior, or dependencies, that changed between Fluss 0.8 and Fluss 0.9. Please read these notes carefully if you are planning to upgrade your Fluss version to 0.9.
9+
10+
11+
## Deprecation / End of Support
12+
13+
TODO

website/src/css/custom.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,4 +237,8 @@
237237
opacity: .6;
238238
text-align: center;
239239
width: 98%;
240+
}
241+
242+
.hidden {
243+
display: none !important;
240244
}

0 commit comments

Comments
 (0)