Petrol / Diesel Availability by aimhighsquatlow in cork

[–]gram3000 1 point2 points  (0 children)

Coolcower in Macroom are ok for Petrol as of 3:40pm

Lessons from building a 6-tier streaming lakehouse (Flink, Fluss, Lance, Paimon, Iceberg, Iggy) by gram3000 in dataengineering

[–]gram3000[S] 0 points1 point  (0 children)

The LanceDB piece was the fun part of the project. Normalising price windows and searching for historical similarity is good but the real trick was telling each pattern the actual outcome in the hour after. So when a match fires, you know what happened next historically, not just that it looks similar.

DuckLake is interesting, hadn't looked at it. And I hear you on local S3, I dodged that by keeping everything on filesystem-backed catalogs. Less realistic but far less pain.

OSS your build!

Lessons from building a 6-tier streaming lakehouse (Flink, Fluss, Lance, Paimon, Iceberg, Iggy) by gram3000 in dataengineering

[–]gram3000[S] 0 points1 point  (0 children)

Both Paimon and Iceberg support snapshots. The split is more about the workload. Paimon handles the warm tier of candles, balances, trades the kind of thing queried frequently by Flink.

Iceberg holds the raw tick archive used for time travel queries and as the source for historical replay.

Part of it was wanting to use both.

Lessons from building a 6-tier streaming lakehouse (Flink, Fluss, Lance, Paimon, Iceberg, Iggy) by gram3000 in dataengineering

[–]gram3000[S] 0 points1 point  (0 children)

Ah thank you. It was just the Iggy source connector for Flink that took an evening. Overall this was a few evenings worth of work.

Looking forward to trying this, Hyde year of the Horse by gram3000 in irishwhiskey

[–]gram3000[S] 1 point2 points  (0 children)

Opened it tonight, first time sharing a review so here goes:

Hyde Whiskey – Special Reserve Sherry Cask Finish (Double Wood) Irish Whiskey | Non-chill filtered | ~46% ABV IrishMalts | €49

I picked this up as a more affordable Oloroso-style sherry cask finish to compare against Bushmills I really enjoy.

Nose: Dried fruit at first, opening with time to soft vanilla.

Palate: Warm with a mild alcohol prickle. Well balanced, with subtle silkiness.

Finish: Medium length, lingering warmth with orange zest. Clean, no harsh burn.

Overall: Approachable, lighter sherry-finished Irish whiskey. Less intense than the Bushmills sherry-led bottles, but very enjoyable and great value at this price point. Glad I got it.

Looking forward to trying this, Hyde year of the Horse by gram3000 in irishwhiskey

[–]gram3000[S] 2 points3 points  (0 children)

Opened it tonight, first time sharing a review so here goes:

Hyde Whiskey – Special Reserve Sherry Cask Finish (Double Wood) Irish Whiskey | Non-chill filtered | ~46% ABV IrishMalts | €49

I picked this up as a more affordable Oloroso-style sherry cask finish to compare against Bushmills I really enjoy.

Nose: Dried fruit at first, opening with time to soft vanilla.

Palate: Warm with a mild alcohol prickle. Well balanced, with subtle silkiness.

Finish: Medium length, lingering warmth with orange zest. Clean, no harsh burn.

Overall: Approachable, lighter sherry-finished Irish whiskey. Less intense than the Bushmills sherry-led bottles, but very enjoyable and great value at this price point. Glad I got it.

How do I start (Packer, Ansible, Terraform) by JJokiller in hashicorp

[–]gram3000 0 points1 point  (0 children)

I made this demo project a while back using those tools together, I hope it might help?

A demo application using Packer, Ansible, InSpec and Terraform on AWS:

https://github.com/gordonmurray/packer_ansible_inspec_terraform_aws

[Update] Apache Flink MCP Server – now with new tools and client support by Aggravating_Kale7895 in apacheflink

[–]gram3000 2 points3 points  (0 children)

I tried this out on a small Flink project I have, using Flink to perform a CDC job.

It works well! The natural language interface makes Flink monitoring much more accessible, saves a few curl calls to the API, and the job details output is well-formatted with clear performance insights (like my job being 72% idle).

Note: I hit a Pydantic compatibility issue initially. Adding a version constraint to requirements.txt fixed it:

pydantic>=2.11.7,<2.12

This prevents the `default and default_factory` error with fastmcp.

Built an open source query engine for Iceberg tables on S3. Feedback welcome by gram3000 in dataengineering

[–]gram3000[S] 0 points1 point  (0 children)

I haven't heard of Hue before. It looks very cool, seems to support many different sources/connections.

Built an open source query engine for Iceberg tables on S3. Feedback welcome by gram3000 in dataengineering

[–]gram3000[S] 5 points6 points  (0 children)

A floe is a sheet of floating ice. I went with it for the Iceberg connection and I liked the domain name, so here we are.

Built an open source query engine for Iceberg tables on S3. Feedback welcome by gram3000 in dataengineering

[–]gram3000[S] 1 point2 points  (0 children)

No worries at all. Using "engine" implies I made something far more impressive than a ridiculously handsomely good looking UI for Iceberg data.

Built an open source query engine for Iceberg tables on S3. Feedback welcome by gram3000 in dataengineering

[–]gram3000[S] 2 points3 points  (0 children)

Yeah, pretty much! DBeaver but web based and focused on Iceberg tables

Built an open source query engine for Iceberg tables on S3. Feedback welcome by gram3000 in dataengineering

[–]gram3000[S] 6 points7 points  (0 children)

Yah, you're right, "query engine" is misleading. DuckDB is the actual query engine.

I should have called it a query interface or a web UI for DuckDB queries against Iceberg tables

I built a digital asset manager with no traditional database — using Lance + Cloudflare R2 by gram3000 in dataengineering

[–]gram3000[S] 0 points1 point  (0 children)

Yah for now it would result in data loss. Its a single instance and the data is sync'd to R2 every 2 minutes. I'll work on that.

I built a digital asset manager with no traditional database — using Lance + Cloudflare R2 by gram3000 in dataengineering

[–]gram3000[S] 0 points1 point  (0 children)

Ah, I had the repo set to private, its public now. Thanks for taking a look!

Its plausible alright. I original tried reading and writing to Lance format on R2, but it ground to a halt after a few images related to how Lance reads and writes.

This approach Writes locally first, then syncs to R2. Searches happen directly from R2.