frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OpenAI raises $110B on $730B pre-money valuation

https://techcrunch.com/2026/02/27/openai-raises-110b-in-one-of-the-largest-private-funding-rounds...
303•zlatkov•8h ago•407 comments

The Most-Seen UI on the Internet? Redesigning Turnstile and Challenge Pages

https://blog.cloudflare.com/the-most-seen-ui-on-the-internet-redesigning-turnstile-and-challenge-...
25•corvad•1h ago•27 comments

I am directing the Department of War to designate Anthropic a Supply-Chain Risk

https://twitter.com/secwar/status/2027507717469049070
428•jacobedawson•1h ago•324 comments

A new California law says all operating systems need to have age verification

https://www.pcgamer.com/software/operating-systems/a-new-california-law-says-all-operating-system...
247•WalterSobchak•8h ago•256 comments

NASA announces overhaul of Artemis program amid safety concerns, delays

https://www.cbsnews.com/news/nasa-artemis-moon-program-overhaul/
183•voxadam•7h ago•187 comments

A better streams API is possible for JavaScript

https://blog.cloudflare.com/a-better-web-streams-api/
348•nnx•9h ago•115 comments

Let's discuss sandbox isolation

https://www.shayon.dev/post/2026/52/lets-discuss-sandbox-isolation/
81•shayonj•4h ago•22 comments

Otters as Bioindicators of Estuarine Health

https://emt.pensoft.net/article/185117/
9•PaulHoule•1h ago•1 comments

Show HN: Claude-File-Recovery, recover files from your ~/.claude sessions

https://github.com/hjtenklooster/claude-file-recovery
25•rikk3rt•7h ago•10 comments

Writing a Guide to SDF Fonts

https://www.redblobgames.com/blog/2026-02-26-writing-a-guide-to-sdf-fonts/
57•chunkles•5h ago•5 comments

Show HN: I built a self-hosted course platform in Clojure

https://clojure.stream
21•jacekschae•1d ago•4 comments

Open source calculator firmware DB48X forbids CA/CO use due to age verification

https://github.com/c3d/db48x/commit/7819972b641ac808d46c54d3f5d1df70d706d286
114•iamnothere•7h ago•53 comments

Allocating on the Stack

https://go.dev/blog/allocation-optimizations
111•spacey•7h ago•45 comments

Rob Grant, creator of Red Dwarf, has died

https://www.beyondthejoke.co.uk/content/17193/red-dwarf-rob-grant
185•nephihaha•4h ago•51 comments

PCB Tracer

https://pcbtracer.com
35•Luc•3d ago•14 comments

Kyber (YC W23) Is Hiring an Enterprise Account Executive

https://www.ycombinator.com/companies/kyber/jobs/59yPaCs-enterprise-account-executive-ae
1•asontha•4h ago

Modeling cycles of grift with evolutionary game theory

https://www.oranlooney.com/post/grifters-skeptics-marks/
74•ibobev•3d ago•32 comments

Get free Claude max 20x for open-source maintainers

https://claude.com/contact-sales/claude-for-oss
388•zhisme•14h ago•180 comments

Leaving Google has actively improved my life

https://pseudosingleton.com/leaving-google-improved-my-life/
352•speckx•4h ago•193 comments

Emuko: Fast RISC-V emulator written in Rust, boots Linux

https://github.com/wkoszek/emuko
3•felipap•34m ago•0 comments

Implementing a Z80 / ZX Spectrum emulator with Claude Code

https://antirez.com/news/160
117•antirez•2d ago•57 comments

Building secure, scalable agent sandbox infrastructure

https://browser-use.com/posts/two-ways-to-sandbox-agents
44•gregpr07•8h ago•9 comments

Court finds Fourth Amendment doesn’t support broad search of protesters’ devices

https://www.eff.org/deeplinks/2026/02/victory-tenth-circuit-finds-fourth-amendment-doesnt-support...
457•hn_acker•8h ago•82 comments

Reading English from 1000 AD

https://lewiscampbell.tech/blog/260224.html
98•LAC-Tech•3d ago•36 comments

Can you reverse engineer our neural network?

https://blog.janestreet.com/can-you-reverse-engineer-our-neural-network/
251•jsomers•2d ago•180 comments

Distributed Systems for Fun and Profit

https://book.mixu.net/distsys/single-page.html
4•vinhnx•3d ago•0 comments

"Just a little detail that wouldn't sell anything"

https://unsung.aresluna.org/just-a-little-detail-that-wouldnt-sell-anything/
94•bobbiechen•3d ago•19 comments

Tell HN: MitID, Denmark's digital ID, was down

115•mousepad12•12h ago•160 comments

A Chinese official’s use of ChatGPT revealed an intimidation operation

https://www.cnn.com/2026/02/25/politics/chatgpt-china-intimidation-operation
94•cwwc•7h ago•74 comments

Show HN: RetroTick – Run classic Windows EXEs in the browser

https://retrotick.com/
169•lqs_•10h ago•48 comments
Open in hackernews

Beyond Elk: Lightweight and Scalable Cloud-Native Log Monitoring

https://greptime.com/blogs/2025-04-24-elasticsearch-greptimedb-comparison-performance
25•xzhuang1984•10mo ago

Comments

firesteelrain•10mo ago
Any reason to use this like in Azure over their cloud native options such as with AKS that has fluentd built into the ama-pod? It already sends logs to Azure Monitor/LogA. Azure Managed Grafana can take in Kusto queries. AMA can monitor VMs. Further you can use DCE/DCRs for custom logs. Azure provides Azure native ElasticSearch too. It seems to own this market.

You can predictably control costs and predict costs with these models.

killme2008•10mo ago
Agree. Leveraging capabilities provided by cloud vendors is always a good idea. However, as the scale grows, cost inevitably becomes an issue. Third-party solutions often offer cost advantages because they support multi-cloud deployments and are optimized for specific scenarios.
chreniuc•10mo ago
How does it compare to openobserve?
atombender•10mo ago
How does Greptime handle dynamic schemas where you don't know most of the shape of the data upfront?

Where I work, we have maybe a hundred different sources of structured logs: Our own applications, Kubernetes, databases, CI/CD software, lots of system processes. There's no common schema other than the basics (timestamp, message, source, Kubernetes metadata). Apps produce all sorts JSON fields, and we have thousands and thousands of fields across all these apps.

It'd be okay to define a small core subset, but we'd need a sensible "catch all" rule for the rest. All fields need to be searchable, but it's of course OK if performance is a little worse for non-core fields, as long as you can go into the schema and explicitly add it in order to speed things up.

Also, how does Greptime scale with that many fields? Does it do fine with thousands of columns?

I imagine it would be a good idea to have one table per source. Is it easy/performant to search multiple tables (union ordered by time) in a single query?

killme2008•10mo ago
Thanks for your question. GreptimeDB, like MongoDB, is schemaless. When ingesting data via OTEL or its gRPC SDKs, it automatically creates tables by inferring the schema and dynamically adds new columns as needed.

Secondly, I prefer wide tables to consolidate all sources for easy management and scalability. With GreptimeDB's columnar storage based on Parquet, unused columns don't incur storage costs.

atombender•10mo ago
Thanks, that seems promising. So much of the documentation is schema-oriented, I didn't see that it supported dynamic schemas.

I find it interesting that Greptime is completely time-oriented. I don't think you can create tables without a time PK? The last time I needed log storage, I ended up picking ClickHouse, because it has no such restrictions on primary keys. We use non-time-based tables all the time, as well as dictionaries. So it seems Greptime is a lot less flexible?

killme2008•10mo ago
Yes, GreptimeDB requires a time index column for optimized storage and querying. It's not a constraint of a primary key, but just an independent table constraint.

Could you elaborate on why you find this inconvenient? I assumed logs, for example, would naturally include a timestamp.

atombender•10mo ago
It's less convenient because it makes the database less general-purpose. The moment you need to go beyond time-based data, you have to reach for other tools.

ClickHouse is such a wonderful database precisely it's so incredibly flexible. While most data I interact with is time-based, I also store lots of non-time-based data there to complement the time-based tables. The rich feature set of table engines, materialized views, and dictionaries means you have a lot of different tools to pick from to design your solution. For example, to optimize ETL lookup, I use a lot of dictionaries, which are not time-based.

As an example, let's say I'm ingesting logs into Greptime and some log lines have a customer_id. I would like the final table, or least a view, to be cross-referenced with the customer so that it can include the customer's name. I suppose one would have to continually ingest customer data into a Greptime table with today's date, and then join on today's date?

killme2008•10mo ago
Fair point. Joining time-series data with business data is often necessary. While GreptimeDB currently supports external tables for Parquet and CSV files, we plan to expand this support to include datasources like MySQL and PG in the future.
client4•10mo ago
For logs I'd be more likely to choose https://www.gravwell.io as it's log agnostic and I've seen it crush 40Tb/s a day, whereas it looks like greptime is purpose-tuned for metrics and telemetry data.
dijit•10mo ago
is gravwell open source?

(it seems greptime is.)

reconnecting•10mo ago
I'm always skeptical toward software companies with an outdated year in the footer.
killme2008•10mo ago
Thanks for pointing it out! The footer has been updated.
reconnecting•10mo ago
Thank you for your prompt attention to this matter. Until next year, then.
killme2008•10mo ago
We'll find a way to fix it forever :D
emmanueloga_•10mo ago
a "no brown M&Ms" razor!
reconnecting•10mo ago
From a website perspective, finding the current year can be challenging, but there's always a way to hack around it. For example, by parsing another website to get the year.
ByteBard1979•10mo ago
What scenario would I use best?
qmarchi•10mo ago
Am I the only one that got, "This article smells like it was written by an AI told to 'compare these two products'"?

Something around the sentence structure just is offputting.

killme2008•10mo ago
The author is not a native speaker; I promised it's not an AI article but with some minor reviews from AI :)
up2isomorphism•10mo ago
This space is so crowded, I think any new startup is very unlikely to survive, unless it solves its own business case first.
killme2008•10mo ago
Yes, so many startups are trying to solve the log issue in the current stack.

In my personal observation, the vast majority of startups are still focused on the product layer and use ClickHouse directly for storage. However, ClickHouse’s tightly coupled storage and compute architecture makes it difficult to scale, and this becomes a real problem as workloads grow. GreptimeDB, on the other hand, is more focused on being an all-in-one observability database. Our log UI, however, still has quite a gap compared to products like Kibana.

This space is very crowded. I think it’s unlikely that any new startup will succeed here unless it can first solve its own business use case exceptionally well.

Would love to hear your thoughts.

atombender•10mo ago
Reading the web site, I just noticed the open-source version does not have "Log query endpoints".

Does that mean you have to use SQL (or the visual SQL builder) to query logs, and you don't get access to a log query language the way Kibana gives you KQL and Lucene syntax?

If so, I think it's a little disingenuous to write an article comparing the ELK stack, which is open source and comes with a perfectly usable query UI, to Greptime's equivalent, which is not.

killme2008•10mo ago
In fact, we have an open-source query language, but it's still in experimental, so we don't present it on the website. The description of the enterprise feature is not precise. Sorry for the inconvenience.

GreptimeDB also open-sources the log view UI if you read the article.

I agree with you that ETL is so powerful, and GreptimeDB is so young, we still have lots of work to do. Thank you.

atombender•10mo ago
Thanks, sounds interesting. It's actually not at all clear from the article that the UI, as presented, is open source. I'm looking for an ELK replacement (in an enterprise setting), so it sounds like Greptime is something I might be able to use.
killme2008•10mo ago
Thanks for your feedback. We fixed the descriptions of log query endpoints. Hope it's more clear. Glad you're considering giving it a try and looking forward to your feedback.