TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Predicting the Future of Distributed Systems

173 点作者 borisjabes9 个月前

12 条评论

purpleidea9 个月前
&gt; Programming Models<p>If you read this section, the author gets a lot of things right, but clearly doesn&#x27;t know the space that well since there have been people building things along these lines for years. And making vague commentary instead of describing the nitty-gritty doesn&#x27;t evoke much confidence.<p>I work on one such language&#x2F;tool called mgmt config, but I have had virtually no interest and&#x2F;or skill in marketing it. TBQH, I&#x27;m disenchanted by the fact that it seems to get any recognition you need to have VC&#x27;s and a three-year timeline, short-term goals, and a plan to be done by then or move on.<p>If you&#x27;re serious about future infra, then it&#x27;s all here:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;purpleidea&#x2F;mgmt&#x2F;">https:&#x2F;&#x2F;github.com&#x2F;purpleidea&#x2F;mgmt&#x2F;</a><p>Looking for coding help for some of the harder bits that people might wish to add, and for people to take it into production and find issues that we&#x27;ve missed.
评论 #41365680 未加载
评论 #41386784 未加载
awkii9 个月前
I think the author has a point with one-way doors slowing down the adoption of distributed systems. The best way to build two way doors is to push for industry adoption of a particular API. In theory the backend of these APIs matter little to me, the developer, so long as they are fast and consistent. Some examples that come to mind is that Apache Beam is a &quot;programming model&quot; for Data pipelines, Akka is a &quot;programming model&quot; for stateful distributed systems, OpenTelemetry for logging&#x2F;telemetry, and Kubernetes for orchestration. Oh, and local development is a strong preference.
评论 #41364174 未加载
评论 #41363934 未加载
jamesblonde9 个月前
I really enjoyed this article. The one point I have issue with is that the dominance of object storage in today&#x27;s distributed systems is very much due to economics, not technology. There&#x27;s basically cheering every little step S3 takes towards a POSIX-like distributed file system like HDFS - &quot;consistent listing of files, yeah!&quot;. Last week it was preconditions for writing files. There&#x27;s still huge gymnastics needed in Iceberg&#x2F;Delta to work with S3 given the lack of atomic rename.
buro99 个月前
Things I have come to know about distributed systems:<p>The S3 API (object storage) is the accepted storage API, but you do not need AWS (but they are very good at this).<p>The Kafka API is the accepted stream&#x2F; buffer&#x2F; queue API, but you do not need Confluent.<p>SQL is the query language, but you do not need a relational database.
评论 #41365036 未加载
willvarfar9 个月前
Something I anticipate is smarter storage that can do some filtering on push down predicates. There&#x27;s compute on the storage nodes that is being wasted today.<p>I was kinda expecting BigQuery to do this under the hood, but it seems like they don&#x27;t, which is a shame. BigQuery isn&#x27;t faster than, say, trino on gcs, even though Google could do some major optimisations here.
评论 #41406939 未加载
评论 #41365473 未加载
pjdesno9 个月前
Something missing here in the discussion of object storage and databases is any mention of the declining importance of the file system.<p>From the 70s through the 90s or 00s everything was file system-based, and it was just assumed that the best way to store data in a distributed system - even a globally-distributed one - was some sort of distributed file system. (e.g. Andrew File System, or research projects like OceanStore.<p>Nowadays the file system holds applications and configuration, but applications mostly store data in databases and object stores. In distributed systems this is done almost exclusively through system-specific network connections (e.g. port 3306 to MySQL, or HTTP for S3) rather than OS-level mounting of a file system.<p>(not counting HPC, where distributed file systems are used to preserve the developer look and feel of early non-distributed HPC systems)
jensneuse9 个月前
I&#x27;d like to add that I&#x27;m seeing more and more companies unifying synchronous and asynchronous APIs. With the concept of GraphQL Federation, it&#x27;s possible to &quot;extend&quot; Entities by defining their (primary) keys in a GraphQL Schema. If we&#x27;re combining this with Async APIs, e.g. NATS or Kafka, we can enable teams to build APIs around events, while still being able to distribute the implementation of how certain fields can be resolved. The Federation Router then joins the Stream with additional data from synchronous services, a very powerful pattern I believe. I wrote a bit more on the topic here: <a href="https:&#x2F;&#x2F;wundergraph.com&#x2F;blog&#x2F;distributed_graphql_subscriptions_with_nats_and_event_driven_architecture" rel="nofollow">https:&#x2F;&#x2F;wundergraph.com&#x2F;blog&#x2F;distributed_graphql_subscriptio...</a>
__turbobrew__9 个月前
Pushing as much down to the infra sounds like aws lambda and friends. You basically upload a zip or container and say, “just run this business code somewhere, I don’t care”. OCI bundles are basically a two day door at this point, you can build them with many tools, and run them with many other tools.<p>It works great for stateless things, but not so great for stateful things. I guess this plays into state being persisted in object storage or DBs, this allows the application to be stateless.
nyrikki9 个月前
On a unrelated note, does anyone know the origins of the one way vs two way door analogy?<p>In this post it is attributed to Jeff Bezos quotes, but it was popular in the Pacific North West before his rise.
BraveNewCurency9 个月前
&gt; One-Way-Door and Two-Way-Door Decisions<p>See also the &quot;Linux kernel management style&quot; document that&#x27;s been in the kernel since forever: <a href="https:&#x2F;&#x2F;docs.kernel.org&#x2F;6.1&#x2F;process&#x2F;management-style.html" rel="nofollow">https:&#x2F;&#x2F;docs.kernel.org&#x2F;6.1&#x2F;process&#x2F;management-style.html</a>
评论 #41364886 未加载
评论 #41364041 未加载
notverysubtle9 个月前
The right time to mention Designing Data-Intensive Applications by Martin Kleppmann. Amazing book explaining distributed systems concepts in a digestible language.
samstave9 个月前
&gt;&gt;<i>the biggest opportunity for a new programming model is extracting the majority of the code from an application and moving it into the infrastructure instead. The second biggest opportunity is for the remaining code—what people refer to as the business logic, the essence of the program—to be portable and secure.</i><p>This was such a well put comment, that truly made me grok the entire article in just this one statement.<p>---<p>Infrastructure needs to be invisible, and that is where the future of AI-enabled orchestration&#x2F;abstraction will allow development to be more poetry than code - whereby we can describe complex logic paths&#x2F;workflows in a language of intent - and all the components required to accomplish that desired outcome will be much more quickly, elegantly be a reality.<p>THe real challenge ahead is the divide between those who have the capability and power of all the AI tools available to them, and those who are subjugated by those who do.<p>For example, an individual can build a lot with the current state of the available tool universe... but a more sophisticated and well funded organization will have a lot more <i>potential</i> capability.&#x27;<p>What I am really interested to know, is if there is a dark Dystopian Cyberpunk AI under-world happening yet?<p>Whats the state of BadActor&#x2F;BigCorpo&#x2F;BigSpy&#x27;s capability and covert actions currently?<p>While we are distracted by AI_ClipArt and celebrity voice squabbles, and seemingly Top AI Voices are being ignored after founding organizations for Alignment&#x2F;Governance&#x2F;Humane&#x2F;etc and warning of catastrophe - define The State of Things?<p>But yeah - extracting the code and letting logic just be handled yet portable, clonable, refactorable easily is where we are already headed. Its amazing and terrifying at the same time.<p>I&#x27;m thankful that all my Cyberpunk Fantasy reading, thinking, imagining and then my tiny part in the overall evolution of the world of tech today, having the opportunity to be here, worked with and build to, in with -- and now seeing the birth of AI and using it daily in my actual interactions with my IRL.<p>Such an amazing moment in Human History to be here through this.