Upgrade Notes from v0.7 to v0.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.
Deprecation / End of Support
Java 8 is Deprecated
Beginning with Fluss v0.8, we now only provide binary distributions built with Java 11. Java 8 is deprecated as of this release and will be fully removed in future versions.
🔧 For users still on Java 8: You can continue building Fluss from source using Java 8 by running:
mvn install -DskipTests -Pjava8
However, we strongly recommend upgrading to Java 11 or higher to ensure compatibility, performance, and long-term support.
🔁 If you’re using Fluss with Apache Flink: Please also upgrade your Flink deployment to Java 11 or above. All Flink versions currently supported by Fluss are fully compatible with Java 11.
Metrics Updates
We have updated the report level for some metrics and also removed some metrics, this greatly reduces the metrics amount and improves the performance.
The following metrics are removed:
fluss_tabletserver_table_bucket_inSyncReplicasCount
- Removed as redundant. Usefluss_tabletserver_underReplicated
insteadfluss_tabletserver_table_bucket_log_size
- Removed as improvement. Usefluss_tabletserver_table_bucket_logicalStorage_logSize
insteadfluss_tabletserver_table_bucket_kv_snapshot_latestSnapshotSize
- Removed as improvement. Usefluss_tabletserver_table_bucket_logicalStorage_kvSize
instead
The following metrics are changed:
- The reporting level has been shifted from the
tableBucket
level to thetabletserver
level:fluss_tabletserver_table_bucket_underMinIsr
tofluss_tabletserver_underMinIsr
fluss_tabletserver_table_bucket_underReplicated
tofluss_tabletserver_underReplicated
fluss_tabletserver_table_bucket_atMinIsr
tofluss_tabletserver_atMinIsr
fluss_tabletserver_table_bucket_isrExpandsPerSecond
tofluss_tabletserver_isrExpandsPerSecond
fluss_tabletserver_table_bucket_isrShrinksPerSecond
tofluss_tabletserver_isrShrinksPerSecond
fluss_tabletserver_table_bucket_failedIsrUpdatesPerSecond
tofluss_tabletserver_failedIsrUpdatesPerSecond
fluss_tabletserver_table_bucket_log_flushPerSecond
tofluss_tabletserver_logFlushPerSecond
fluss_tabletserver_table_bucket_log_flushLatencyMs
tofluss_tabletserver_logFlushLatencyMs
fluss_tabletserver_table_bucket_kv_preWriteBufferFlushPerSecond
tofluss_tabletserver_kvFlushPerSecond
fluss_tabletserver_table_bucket_kv_preWriteBufferFlushLatencyMs
tofluss_tabletserver_kvFlushLatencyMs
fluss_tabletserver_table_bucket_kv_preWriteBufferTruncateAsDuplicatedPerSecond
tofluss_tabletserver_preWriteBufferTruncateAsDuplicatedPerSecond
fluss_tabletserver_table_bucket_kv_preWriteBufferTruncateAsErrorPerSecond
tofluss_tabletserver_preWriteBufferTruncateAsErrorPerSecond
- Correction addresses reporting errors in metric names by changing the
table
level metric prefix fromfluss_tabletserver_table__
(used a double underscore (__)) tofluss_tabletserver_table_
.- The affected metrics are all metrics with Scope: tableserver, infix: table
- For example, change
fluss_tabletserver_table__messagesInPerSecond
tofluss_tabletserver_table_messagesInPerSecond
.