TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

QueryLeaf: SQL for Mongo

23 pointsby tilt14 days ago

4 comments

ttfkam14 days ago
Would much rather have &quot;Mongo&quot; for SQL like this:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;microsoft&#x2F;documentdb">https:&#x2F;&#x2F;github.com&#x2F;microsoft&#x2F;documentdb</a><p>I am skeptical that SQL with Mongo backing it would be at all performant except in the most trivial cases. On the flip side, Postgres&#x27;s jsonb indexing makes the inverse very doable.
评论 #43945878 未加载
评论 #43947038 未加载
评论 #43945748 未加载
评论 #43946130 未加载
sparky_12 days ago
I can appreciate the technical aspect of a translation layer, but I struggle to understand the use case for a tool like this. If your data is inherently relational, then you should be using a relational store anyway. And if it isn&#x27;t, trying to hammer it on-demand into something that looks relational is going to eat you with performance implications. Unless I&#x27;m missing something.
gavinray12 days ago
It&#x27;s somewhat of a secret, but AWS&#x27;s JDBC driver for DocumentDB supports Mongo as well<p>Let&#x27;s you interact with Mongo as if it were a regular SQL JDBC database<p><a href="https:&#x2F;&#x2F;github.com&#x2F;aws&#x2F;amazon-documentdb-jdbc-driver">https:&#x2F;&#x2F;github.com&#x2F;aws&#x2F;amazon-documentdb-jdbc-driver</a>
评论 #43948116 未加载
gitroom12 days ago
Honestly, putting Mongo and SQL together always confuses me a bit. I&#x27;m way more comfy with Postgres and jsonb. Anyone else feel like scaling Postgres is still kinda a pain?