tomconnors | 3 months ago | on: 100k TPS over a billion rows: the unreasonable effectiveness of SQLite
tomconnors's comments
tomconnors | 7 months ago | on: Clojure Async Flow Guide
- getting back pressure right. You need to tune the buffers for the input chans correctly, which takes some thinking, and in my case, some blowing up in prd.
- flow monitor (the UI for debugging flows) can't handle large process states, which makes it pretty much useless for my program.
- understanding the flow as a whole (rather than specific processes, which are easy to understand in isolation). For example, answering questions like "why hasn't this process received a message for a while?" was tricky.
tomconnors | 2 years ago | on: Shouldn't FROM come before SELECT in SQL? (2011)
HoneySQL lets us define queries with maps, like {:select [:col1 :col2] :from :table}, and turns that into SQL. In a better world, SQL would be structured data like HoneySQL, and the strange SQL syntax we know and love would be a layer on top of that, or wouldn't exist.
tomconnors | 4 years ago | on: The Great Boston Molasses Flood of 1919 (2018)
tomconnors | 4 years ago | on: REPL vs CLI: IDE wars
tomconnors | 5 years ago | on: Clj-3DF: Clojure(Script) Client for Declarative Dataflow
[:find (max ?num) :where [_ :attr ?num]]
It seems like Datomic's transaction log can only tell us that the result of this query might have changed. Does differential dataflow solve that problem?tomconnors | 5 years ago | on: Scrollbar Blindness
tomconnors | 5 years ago | on: Unofficial Guide to Datomic Internals (2014)
On your last point, I agree that it still has a way to go. It's good for some (many?) production use cases now, as Nubank's success demonstrates, and hopefully with Nubank's resources it'll start to live up more to its promise.
tomconnors | 5 years ago | on: Unofficial Guide to Datomic Internals (2014)
I agree with you that the Datomic cloud stuff comes across as being frighteningly complex. I think they probably just need to work on the documentation, like making it more obvious what the differences and tradeoffs are between the deployment scenarios.
Did you inherit a Datomic system that was previously developed by a small team or a small company? Because inheriting a system that's hard to understand and change transcends languages and databases. It is the tie that binds us all as software developers.
tomconnors | 5 years ago | on: Nubank acquires Cognitect
tomconnors | 6 years ago | on: Picardy Third
tomconnors | 7 years ago | on: Commanding infinite streaming storage with Apache Kafka and Pyrostore
Storing all data forever in a single source of truth is awesome until regulation like GDPR comes along. Do you have plans to support excision or is your guidance on personal data to avoid putting it into a system like Kafka/Pyrostore?