HackerTrans
TopNewTrendsCommentsPastAskShowJobs

bonobocop

no profile record

comments

bonobocop
·8 mesi fa·discuss
The MIT course for Raft (with the lectures on YouTube) was great to learn for me: http://nil.lcs.mit.edu/6.824/2020/labs/lab-raft.html
bonobocop
·9 mesi fa·discuss
The durability and transformation reasons are definitely more compelling, but the article doesn’t mention those reasons.

It’s mainly focused on the insert batching which is why I was drawing attention to async_insert.

I think it’s worth highlighting the incremental transformation that CH can do via the materialised views too. That can often replace the need for a full blown streaming transformation pipelines too.

IMO, I think you can get a surprising distance with “just” a ClickHouse instance these days. I’d definitely be interested in articles that talk about where that threshold is no longer met!
bonobocop
·9 mesi fa·discuss
Sure, but the article doesn’t talk about that, it seemed to be focused on CH alone, in which case async insert is much fewer technical tokens.

If you need to ensure that you have super durable writes, you can consider, but I really think it’s not something you need to reach for at first glance
bonobocop
·9 mesi fa·discuss
Why add RedPanda/Kafka over using async insert? https://clickhouse.com/docs/optimize/asynchronous-inserts

It’s recommended in the docs over the Buffer table, and is pretty much invisible to the end user.

At ClickHouse Inc itself, this scaled far beyond millions of rows per second: https://clickhouse.com/blog/building-a-logging-platform-with...
bonobocop
·10 mesi fa·discuss
Yeah, handles all the OTel signals
bonobocop
·12 mesi fa·discuss
Not OP, but to me, this reads fairly similar to how ClickHouse can be set up, with Bloom filters, MinMax indexes, etc.

A way to “handle” partial substrings is to break up your input data into tokens (like substrings split in spaces or dashes) and then you can break up your search string up in the same way.
bonobocop
·anno scorso·discuss
Quite like Cloudprober for this tbh: https://cloudprober.org/docs/how-to/alerting/

Easy to configure, easy to extend with Go, and slots in to alerting.
bonobocop
·anno scorso·discuss
If you choose not to travel, then you are eligible for a refund, rather than Delay Repay: https://www.nationalrail.co.uk/help-and-assistance/compensat...

There’s differences in consumer rights effectively between a refund and compensation (like DR)
bonobocop
·anno scorso·discuss
Claiming delay compensation if you don’t have intent to travel is the fraud part.

Easiest example is if you have a season ticket, but you have the day off. You weren’t going to take the train to work that day, so no intent to travel. If you claim DR, then that’s fraud for the compensation.
bonobocop
·anno scorso·discuss
I don’t think it’s fraud on the DR side if you actually take the trains and intend to travel.

If you didn’t actually intend to travel, then claiming DR is fraud.
bonobocop
·anno scorso·discuss
The DR system doesn’t look at ticket scans alone. It also builds a profile per customer based on a number data points.

It will flag up quite quickly if you are “sniping” delayed trains at different times.
bonobocop
·2 anni fa·discuss
A small question on the schema, I noticed that you have only “_now” as the Order By (so should just use that for the primary key). Do you expect any cross tenant queries?

Just my feeling would be that I’d add the tenant ID before the timestamp as it should filter the parts more effectively
bonobocop
·2 anni fa·discuss
Thoughts on stuff like ClickHouse with JSON column support? Less upfront knowledge of columns needed.