frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: Gin rummy strategies

13•bix6•10h ago•2 comments

Ask HN: So what happened to Facebook "localhost" tracking?

71•juliusceasar•11h ago•82 comments

Ask HN: Spent thousands, got no customers. What's wrong with my site?

8•petebay•14h ago•12 comments

I'm tired of LLM skill slop, so I built mine with regression tests

3•iliaov•1h ago•0 comments

Ask HN: Why is it still so hard for LLMs to query NoSQL databases?

4•cammasmith•8h ago•1 comments

Ask HN: How do you find deep technical content?

19•f311a•11h ago•10 comments

Being privacy-conscious comes with some downsides

4•wqtz•2h ago•2 comments

Ask HN: Good books/resources for learning SQL?

3•CobaltFire•4h ago•1 comments

Ask HN: Who is hiring? (June 2026)

238•whoishiring•3d ago•415 comments

Ask HN: Who wants to be hired? (June 2026)

148•whoishiring•3d ago•496 comments

Life saving / first aid posters

33•cpu_•2d ago•3 comments

Ask HN: AI efficiency in the workplace

3•localhoster•10h ago•0 comments

Google killed my $1M ARR startup overnight

4•vadumo•13h ago•3 comments

Ask HN: What are all the ways to punch through NAT?

4•jupr•10h ago•5 comments

Tell HN: Max messenger app removed from App Store

8•secondary_op•20h ago•3 comments

Ask HN: A Brief History of LLMs

9•menomatter•1d ago•6 comments

Laid off. Broke. Depressed. & idk how to market my SaaS

14•touseefbuilds•1d ago•23 comments

Ask HN: Why Ask HN has only 14 questions now?

11•throwaw12•1d ago•3 comments

Ask HN: What is your opinion on index rule changes to accommodate Mega-Cap IPOs?

16•figmert•2d ago•10 comments

Ask HN: Why are so many Show HNs being flagged?

3•866-RON-0-FEZ•1d ago•6 comments

Angular jasmine unit tests are harder to code/maintain than the actual feature

4•GamingAtWork•2d ago•0 comments

I'm Done Using AI

32•nyxtom•2d ago•23 comments

$100 to a Debian Developer who can get Fresh Editor into Trixie

28•jph•4d ago•14 comments

Please don't spam people looking for employment. It's just cruel

960•IliaLitviak•2d ago•271 comments

Recruiters, How do you vet resume in 2026?

15•CoffeeSky•4d ago•8 comments

AI Goal: Senior Software Engineer

4•oryocyph•2d ago•5 comments

You've reached the end!

Open in hackernews

Ask HN: Why is it still so hard for LLMs to query NoSQL databases?

4•cammasmith•8h ago
LLMs are good at SQL. It's precise, expressive, and unambiguous. If you connect an MCP server to Postgres, then the agent can query it directly. The same cannot be said for NoSQL, and given how many people use NoSQL databases, I’m surprised there isn’t more discussion about it.

Part of the problem is diversity. MongoDB, DynamoDB, Cassandra, Redis, and Neo4j all have different query models. There's no shared interface for an LLM to reason about. So instead of writing a query, the agent has to write code: SDK calls, manual aggregation, pagination logic. It becomes more complex, harder to review, and quickly breaks on anything non-trivial.

We ran into this problem with DynamoDB specifically and ended up building our own solution. I wrote about it here if anyone's curious: https://dynamosql.hashnode.dev/why-llm-agents-still-can-t-query-nosql-databases. But I'm more interested in how others have handled this. Why is it still such an unresolved problem?

Comments

posix_compliant•15m ago
This reads like an wholesale AI-generated blog post and HN submission.