This is an automated email from the ASF dual-hosted git repository.
jark pushed a change to branch release-0.8
in repository https://gitbox.apache.org/repos/asf/fluss.git
from a876cf80e [docs] Add labels to versions under releasing
new f83567000 [hotfix] Use literal directly instead of
PARTITION_GENERATE_LEGCY_NAME to avoid NoSuchField error (#1880)
new 2c318ac5d [server] Tablet server should register
lakeCatalogDynamicLoader in dynamicConfigManager (#1879)
new 7e620e3dc [hotfix][client] Fix potential metadata inconsistency by
deduplicating getBucketLocation call (#1897)
new 5da6cdd3f [hotfix] fix sidebar naming conversion (#1898)
new 8775613a9 [hotfix][client] Use more efficient `EnumMap` (#1882)
new 0bcc92884 [docs] upgrade 0.7 to 0.8 about sasl authorization and
default database. (#1871)
new d0012bab1 [Docs] Add upgrade notes for fluss package changes (#1869)
new 710d59122 [server] Added Retry Handler to Address Snapshotting Test
Asynchrony (#1881)
new 3b01d82f0 [docs] Update docs/website images for 0.8 release (#1905)
new 8e3e758be [hotfix] Set paimon warehouse in FlinkCatalogITCase to make
it consistent (#1902)
new 699bc1de1 [lake/lance] add Flink memory usage note (#1909)
new 6f1715fc8 [client] Add support for inner class and is/has methods for
boolean (#1908)
new 13a16e868 remove unwanted emojis to make document standard (#1865)
new 163e3a422 [helm] Move helm charts from `docker/helm` into dedicated
`helm` directory in project root (#1917)
new 46e4fabf2 [docs] Add docs for Deploying with helm charts (#1862)
new 151a49f97 [doc] Add docs for delta join support with Flink 2.1 (#1875)
new 029a39d2c [docs] Add documentation for updating cluster configs and
table configs (#1870)
The 17 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../fluss/client/converter/ConverterCommons.java | 4 +-
.../apache/fluss/client/converter/PojoType.java | 110 ++++--
.../fluss/client/table/scanner/log/LogFetcher.java | 6 +-
.../fluss/client/admin/FlussAdminITCase.java | 44 ++-
.../fluss/client/converter/PojoTypeTest.java | 163 ++++++++
.../fluss/flink/catalog/FlinkCatalogITCase.java | 15 +
.../fluss/lake/paimon/utils/PaimonConversions.java | 11 +-
.../apache/fluss/server/tablet/TabletServer.java | 1 +
.../apache/fluss/server/replica/ReplicaTest.java | 24 +-
{docker/helm => helm}/.helmignore | 0
{docker/helm => helm}/Chart.yaml | 0
{docker/helm => helm}/DISCLAIMER | 0
{docker/helm => helm}/LICENSE | 0
{docker/helm => helm}/NOTICE | 0
{docker/helm => helm}/README.md | 0
{docker/helm => helm}/templates/_helpers.tpl | 0
{docker/helm => helm}/templates/configmap.yaml | 0
.../helm => helm}/templates/sts-coordinator.yaml | 0
{docker/helm => helm}/templates/sts-tablet.yaml | 0
.../helm => helm}/templates/svc-coordinator.yaml | 0
{docker/helm => helm}/templates/svc-tablet.yaml | 0
{docker/helm => helm}/values.yaml | 0
website/docs/assets/architecture.png | Bin 331654 -> 351273 bytes
website/docs/assets/delta_join.jpg | Bin 0 -> 85431 bytes
website/docs/assets/deployment_overview.png | Bin 185222 -> 200087 bytes
website/docs/assets/streamhouse.png | Bin 250947 -> 181137 bytes
website/docs/assets/tiered-storage.png | Bin 146759 -> 163033 bytes
website/docs/engine-flink/datastream.mdx | 2 +-
website/docs/engine-flink/ddl.md | 29 ++
website/docs/engine-flink/delta-joins.md | 186 ++++++++++
website/docs/engine-flink/options.md | 12 +-
website/docs/install-deploy/deploying-with-helm.md | 408 +++++++++++++++++++++
.../maintenance/operations/graceful-shutdown.md | 11 +-
.../maintenance/operations/updating-configs.md | 48 +++
.../maintenance/operations/upgrade-notes-0.8.md | 69 +++-
website/docs/maintenance/operations/upgrading.md | 2 +-
website/docs/quickstart/_category_.json | 2 +-
.../integrate-data-lakes/iceberg.md | 46 +--
.../integrate-data-lakes/lance.md | 2 +
.../integrate-data-lakes/paimon.md | 2 +-
website/src/css/custom.css | 2 -
website/static/img/fluss.png | Bin 198902 -> 219843 bytes
42 files changed, 1110 insertions(+), 89 deletions(-)
create mode 100644
fluss-client/src/test/java/org/apache/fluss/client/converter/PojoTypeTest.java
rename {docker/helm => helm}/.helmignore (100%)
rename {docker/helm => helm}/Chart.yaml (100%)
rename {docker/helm => helm}/DISCLAIMER (100%)
rename {docker/helm => helm}/LICENSE (100%)
rename {docker/helm => helm}/NOTICE (100%)
rename {docker/helm => helm}/README.md (100%)
rename {docker/helm => helm}/templates/_helpers.tpl (100%)
rename {docker/helm => helm}/templates/configmap.yaml (100%)
rename {docker/helm => helm}/templates/sts-coordinator.yaml (100%)
rename {docker/helm => helm}/templates/sts-tablet.yaml (100%)
rename {docker/helm => helm}/templates/svc-coordinator.yaml (100%)
rename {docker/helm => helm}/templates/svc-tablet.yaml (100%)
rename {docker/helm => helm}/values.yaml (100%)
create mode 100644 website/docs/assets/delta_join.jpg
create mode 100644 website/docs/engine-flink/delta-joins.md
create mode 100644 website/docs/install-deploy/deploying-with-helm.md
create mode 100644 website/docs/maintenance/operations/updating-configs.md