HN user

willvarfar

19,398 karma

willvarfar.at.hn

my old blog (dormant): https://williame.github.io/

Posts334
Comments3,494
View on HN
www.youtube.com 7mo ago

'This is worse than the dot-com bubble' – Ed Zitron [video]

willvarfar
7pts3
arxiv.org 1y ago

Can Large Language Models Play Text Games Well? (2023)

willvarfar
70pts54
www.economist.com 1y ago

Xi Jinping's plan to overtake America in AI

willvarfar
2pts1
arxiv.org 1y ago

Embedding-to-Prefix: Spotify's Efficient Personalization for LLMs

willvarfar
1pts0
www.bbc.com 1y ago

Experts dispute claims dire wolf brought back from extinction

willvarfar
5pts0
www.youtube.com 1y ago

Blue Origin's New Glenn Rocket Attempts to Launch and Land [Live] [video]

willvarfar
6pts0
www.youtube.com 1y ago

China's Invasion Barges, Leading Indicator of Plans for Taiwan

willvarfar
4pts2
www.youtube.com 1y ago

Dazzle Camouflage – What You Need to Know [video]

willvarfar
1pts0
matrixprofile.org 1y ago

The Matrix Profile

willvarfar
2pts1
www.bbc.com 1y ago

Meta donates $1M to Trump fund

willvarfar
8pts0
www.bbc.com 1y ago

Google scores rare legal win as 1.49B euro fine scrapped

willvarfar
3pts0
sqlite.org 1y ago

Try out SQLite FROM before SELECT in SQLite

willvarfar
3pts1
news.ycombinator.com 2y ago

Ask HN: What's the best quick'n'dirty code you've ever made or seen?

willvarfar
2pts1
www.bbc.com 2y ago

Epoch Times CFO charged in $67M crypto money laundering plot

willvarfar
97pts113
www.bbc.com 2y ago

Balsamic vinegar is likely fake

willvarfar
19pts60
www.bbc.com 2y ago

Balsamic vinegar is likely fake (2023)

willvarfar
4pts4
www.bbc.com 2y ago

Google: Political adverts must disclose use of AI

willvarfar
2pts0
www.ben-evans.com 2y ago

Generative AI and Intellectual Property

willvarfar
1pts0
www.bbc.com 3y ago

Facebook launches virtual reality subscription service

willvarfar
2pts1
www.bbc.com 3y ago

UK Covid deaths among worst of big European economies

willvarfar
12pts2
www.navalnews.com 4y ago

French Navy ATL2 MPA: Someone Just Lasered The Wrong Aircraft

willvarfar
100pts71
www.youtube.com 4y ago

Attacking Open Source Intelligence: The Fake AIS Data Epidemic Explained

willvarfar
4pts0
www.bbc.co.uk 4y ago

Pentagon to study UFO sightings in restricted US airspace

willvarfar
8pts0
www.bbc.co.uk 4y ago

Electric truck maker Rivian raises almost $12bn from share sale

willvarfar
1pts0
www.bbc.com 4y ago

Satellite images appear to show mock-up US warships in China desert

willvarfar
4pts2
news.usni.org 4y ago

China Builds Missile Targets Shaped Like U.S. Aircraft Carrier in Remote Desert

willvarfar
38pts20
news.usni.org 4y ago

Commercial Radar Satellites Reveal Russian Stealth Fighters

willvarfar
5pts0
www.youtube.com 4y ago

Spotify Engineering Culture

willvarfar
3pts1
news.usni.org 4y ago

Ecuadorian Navy Sailing Ship Interdicts Drug Smugglers in the Pacific

willvarfar
1pts0
azspcs.com 4y ago

Al Zimmermann's Programming Contests: AP Marh

willvarfar
2pts1

Exciting!

I have been on a similar odyssey making a 'zero copy' Java library that supports protobuf, parquet, thrift (compact) and (schema'd) json. It does allocate a long[] and break out the structure for O(1) access but doesn't create a big clump of object wrappers and strings and things; internally it just references a big pool buffer or the original byte[].

The speed demons use tail calls on rust and c++ to eat protobuf https://blog.reverberate.org/2021/04/21/musttail-efficient-i... at 2+GB/sec. In java I'm super pleased to be getting 4 cycles per touched byte and 500MB/sec.

Currently looking at how to merge a fast footer parser like this into the Apache Parquet Java project.

With a long time in the industry and seeing how so many big software companies work, this really really chimed with me. Many/most teams and projects and busy work are not actually moving the bottom line, at massive opportunity cost! And there's so little awareness that most people in squads and their managers will think they are the exception.

Whereas Whatsapp with its 30 software engineers was the exception etc.

A chat with friends showed how there are parallels with how LLMs will happen in the short-term future - say the next 5 years - and the whole MapReduce mess. Back when Hadoop came along you built operators and these operators communicated through disk. It took years even after Spark was about for the hadoop userbase as a whole to realise that it is orders of magnitude more efficient to only communicate through disk when two operators are not colocatable on the same machine and that most operators in most pipelines can be fused together.

So for a while LLMs will be in the Hadoop phase where they are acting like junior devs and making more islands that communicate in bigger bloated codebases and then there might be a realisation in about 2030 that actually the LLMs could have been used to clean up and streamline and fuse software and approach the Whatsapp style of business impact.

Yeah it's pretty obscure, sorry.

It's called cogroup in Spark and similar architectures.

It does a group-by to convert data into the format (key_col_1, ... key_col_n) -> [(other_col_1, ... other_col_n), ...]

This is useful and ergonomic in itself for lots of use-cases. A lot of Spark and similar pipelines do this just to make things easier to manipulate.

Its also especially useful if you cogroup each side before join, which gives you the key column and two arrays of matching rows, one for each side of the join.

A quick search says it's called "group join" in academia. I'm sure I've bumped into as another name in other DB engines but can't remember right now.

One advantage of this is that it is bounded memory. It doesn't actually iterate over the cartesian product of non-unique keys. In fact, the whole join can be done on pointers into the sides of the join, rather than shuffling and writing the values themselves.

My understanding is that a lot of big data distributed query engines do this, at least in mixer nodes. Then the discussion becomes how late they actually expand the product - are they able to communicate the cogrouped format to the next step in the plan or must they flatten it? Etc.

(In SQL big data engines sometimes you do this optimisation explicitly e.g. doing SELECT key, ARRAY_AGG(value) FROM ... on each side before join. But things are nicer when it happens transparently under the hood and users get the speedup without the boilerplate and brittleness and fear that it is a deoptimisation when circumstances change in the future.)

Seriously, this is not what big data does today. Distributed query engines don't have the primitives to zip through two tables and treat them as column groups of the same wider logical table. There's a new kid on the block called LanceDB that has some of the same features but is aiming for different use-cases. My trick retrofits vertical partitioning into mainstream data lake stuff. It's generic and works on the tech stack my company uses but would also work on all the mainstream alternative stacks. Slightly slower on AWS. But anyway. I guess HN just wants to see an industrial track paper.

specifically I've discovered how to 'trick' mainstream cloud storage and mainstream query engines using mainstream table formats how to read parallel arrays that are stored outside the table without using a classic join and treat them as new columns or schema evolution. It'll work on spark, bigquery etc.

I had a great euphoric epiphany feeling today. Doesn't come along too often, will celebrate with a nice glass of wine :)

Am doing data engineering for some big data (yeah, big enough) and thinking about efficiency of data enrichment. There's this classic trilemma with data enrichment where you can have good write efficiency, good read efficiency and/or good storage cost, pick two.

E.g. you have a 1TB table and you want to add a column that, say, will take 1GB to store.

You can create a new table that is 1.1TB and then delete the old table, but this is both write-inefficient and often breaks how normal data lake orchestration works.

You can create a new wide table that is 1.1TB and keep it along side the old table, but this is both write-inefficient and expensive to store.

You can create a narrow companion table that has just a join key and 1GB of data. This is efficient to write and store, but inefficient to query when you force all users to do joins on read.

And I've come up with a cunning forth way where you write a narrow table and read a wide table so its literally best of all worlds! Kinda staggering :) Still on a high.

Might actually be a conference paper, which is new territory for me. Lets see :)

/off dancing

I agree that social media is a net negative, but want to also point out that before social media it was the mainstream press and TV have been shaping society for decades. Things like buying a used car from Nixon or fighting in Vietnam etc are all mainstream press impact.

I remember when syntax highlighting was introduced in Borland's Turbo Pascal editor (on DOS). It was a very major usability improvement and put TP's IDE at the forefront of getting things done. Fond memories :)

Kudos, neat digging and writeup that makes us think :)

If you merge linear probed tables by iterating in sorted hash order then you are matching the storage order and can congest particular parts of the table and cause the linear probing worse case behaviour.

By changing the iteration order, or salting the hash, you can avoid this.

Of course chained hash tables don't suffer from this particular problem.

My quick thought is that hash tables ought keep an internal salt hidden away. This seems good to avoid 'attacks' as well as speeding up merging etc. The only downside I can think of is that the creation of the table needs to fetch a random salt that might not be quick, although that can alleviated by allowing it to be set externally in the table creation so people who don't care can set it to 0 or whatever. What am I missing?

This is going to be an interesting take but I think it is plausible that we'll see a quiet growth in American tech companies having even bigger offshore campuses instead. Google Zurich or Google London could grow, Google does hardware in Taiwan and Apple and Intel do hardware in Israel, and pretty much all the big tech companies have the biggest chunk in Hyperbad.

The withdrawal of the H1B means companies can't compete on offering them to attract talent, but that talent still wants to work somewhere and companies can instead complete on the perks they offer at those offshore places.

Things will get interesting if Europe can become the place that US tech companies offer visa support for people to move to though.

A really clear explanation!

So if I were running a provider I would be caching popular prefixes for questions across all users. There must be so many questions that start 'what is' or 'who was' etc?

Also, can subsequences in the prompt be cached and reused? Or is it only prefixes? I mean, can you cache popular phrases that might appear in the middle of the prompt and reuse that somehow rather than needing to iterate through them token by token? E.g. must be lots of times that "and then tell me what" appears in the middle of a prompt?

I desperately want the kind of success we used to have searching on google back over a decade ago. Relevant results. A few annoying ads started appearing with paid placement, but we all ignored them.

Nowadays google search results are so cluttered with paid promotion that the genuine content creating websites and blogs are drowned. So we turn to AI not because it's better than the old straightforward search, but because it is better and currently less ad-laden than the current search?

I know I paid about 1000EUR for an air-air heat-pump with install in Sweden, but that was a decade ago and they cost 1500-2000EUR total these days. I also have a fancy big ground-source heat-pump bigger than most residential ones and that cost under 10000EUR total. So not sure what makes them so expensive in other countries; you'd hope competition kept prices competitive.

The south of Sweden is expensive because Sweden did away with the previous single energy market and split into zones with sales abroad. Often Swedish producers sell to Germany at the same time Swedish consumers are forced to buy from German producers. It was a big thing about 'free market' and iirc Denmark was upset that Danish manufacturing could not compete with the price of energy across the straights in Sweden. The solution was to make energy more expensive in Sweden.

Yeah small air-air pumps - which are the most common for single houses - are easily under 2000EUR including installation; if you keep eyes out for special offers it'd be about 1500EUR in Swedish prices.