Skip to content

Commit 403e4d7

Browse files
committed
small changes
1 parent f19433b commit 403e4d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

website/blog/2025-06-30-fluss-java-client.md renamed to website/blog/2025-07-07-fluss-java-client.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
slug: fluss-java-client
3-
title: "Apache Fluss Java Client Guide"
3+
title: "Fluss Java Client: A Deep Dive"
44
authors: [giannis]
55
---
66

@@ -39,7 +39,7 @@ to write data to these tables and read/enrich the streaming sensor data.
3939
By the end, you'll see how a sensor reading can be ingested into a log table and immediately enriched with information from a primary key table (essentially performing a real-time lookup join for streaming data enrichment).
4040

4141
## Preflight Check
42-
The full source code can be found [here](https://github.com/ververica/ververica-fluss-examples).
42+
The full source code can be found [here](https://github.com/ververica/ververica-fluss-examples/tree/main/fluss-java-client).
4343

4444
```shell
4545
docker compose up
@@ -371,7 +371,7 @@ LogScanner logScanner = readingsTable.newScan()
371371
```
372372
373373
Let's break this down:
374-
* `.withProjection(...)` tells the client to request only the specified columns (sensorId,timestamp and temperature) from the server.
374+
* `.project(...)` instructs the client to request only the specified columns (sensorId,timestamp and temperature) from the server.
375375
* Fluss’s columnar storage means non-requested columns (e.g., humidity, etc.) **aren’t transmitted, saving bandwidth and reducing client-side parsing overhead**.
376376
* You can combine projection with filters or lookups to further optimize your data access patterns.
377377
2.9 MB
Loading

0 commit comments

Comments
 (0)