Hacker Newsnew | past | comments | ask | show | jobs | submit | arman_ashrafian's commentslogin

"The Dream Machine" by M. Mitchell Waldrop.

It tells the history of computing by following J.C.R Licklider. As one of the directors of ARPA, he was responsible for funding research labs to work on computer research. He had a major impact on which projects got funded, and in-turn which systems are now being used 60 years later. I honestly love this book so much. If you love computers and history, its a must-read.


I just started using kSQL at work to build a data pipeline from Postgres to Elasticsearch. This will be replacing our error-prone batch processes. So far it has been a really nice experience, however I don't have it running in production yet.

Little bit concerned with how we will update the schema of the streams in production. At some point we will need to drop a stream and recreate it with a different schema, and I'm afraid we will miss some incoming data during the downtime. Confluent just released a migration tool, but I'm pretty sure this only works for adding/dropping columns and not changing the datatype of a column.


Hey, ksqlDB contributor from Confluent here. In addition to the migration tooling that you mentioned (https://www.confluent.io/blog/easily-manage-database-migrati...), ksqlDB also supports in-place schema evolution (https://docs.ksqldb.io/en/latest/how-to-guides/update-a-runn...). There are some constraints on what kinds of evolution are supported, but it's something we're constantly chipping away at.


There's a whole class of interesting problems related to query evolution - and it varies greatly depending on the "environment" that you're interested in (see mjdrogalis' docs on updating a running query). Generally, the strategy that ksqlDB takes at the moment is to validate what upgrades are possible to do in-place and which are not - for the former, ksqlDB "just does it" and for the latter, we are designing a mechanism to deploy topologies side-by-side and then atomically cut over when the new topology is caught up to the old one.

There's an in-progress blog post that describes exactly this class of problems - keep an eye out for it!


Nice I'll check it out!

I'm just going to throw out another problem since you guys are here :)

The current batch process joins some tables before sending data to elasticsearch. This means that the debezium connector doesn't write all the data I need into kafka. I was thinking I could create a materialized table in ksql with infinite retention for the other postgres tables I need to join on. Then when I stream in an update for the data I want in elasticsearch, I can join on these tables.

The issue is that a Stream-Table join only gets triggered when the stream changes. This means that when the data in the tables change we will not see these updates in elasticsearch.

I guess my only option is to join everything in our app and then produce the full message to the elastic sink topic?


Is it an option to model it as a table/table join? t/t triggers when there's a change on either side of the expression.

If that doesn't work, feel free to swing by our community Slack room and we can get into the weeds. :)


Oh cool need to think about this a bit more. I’ll see you in the slack channel :)


I really like this textbook that was used in my undergrad networking course.

https://book.systemsapproach.org/index.html

The “perspective” sections at the end of every chapter are really interesting!


Was about to post this as well.

I think these two articles are also a great launch point before diving into the whole stack:

- https://apenwarr.ca/log/20170810 The World in Which IPv6 was a good design (which is actually a mini CS history course on networking in disguise)

- https://tailscale.com/blog/how-nat-traversal-works/


Cool seeing this post tonight. I just finished implementing a router for my networks class like 30 minutes ago.

https://cseweb.ucsd.edu/classes/wi21/cse123-a/project.html

We use this book and its amazing:

https://book.systemsapproach.org/index.html

Section 3.5 covers router implementation details.


THANK YOU for the link to book.systemsapproach.org! My "library" has been missing a resource like this. :)


Wow, that’s cool - fun assignments, too. Are you allowed to share the skeleton code referenced in the descriptions?


I have been using CDK at work and it is fantastic. It feels like React for Infrastructure. I used to write raw Cloudformation at my last internship, and being able to write Typescript instead feels like moving from assembly language to C.


I'm setting up a blog soon. I'm planning on using pandoc and some shell scripts to generate the html from markdown and host on github pages.


The Dream Machine might be my favorite book of all time.


Agreed. I only found out about the Dream Machine from Hacker News (I think it was Alan Kay who recommended it) and it was absolutely the best book ever written on the topic.


I would like to see him on lex fridman's podcast


Rogan and Fridman both ask very shallow questions. I want to see him get grilled by someone familiar with the subject matter. Anything less gets questions about the lowest common denominator.


How about Eric Weinstein? He asks great questions on The Portal.


I find him lacking intellectual curiosity, although I've only had limited exposure to him. Do you have something you'd recommend for a "deeper look" into him or his work?


Sure, check out his YouTube channel: https://www.youtube.com/user/nobani88/videos


Coachella is being delayed till October.


Source? Neither their website nor Twitter says so.

EDIT: Confirmed. https://www.nytimes.com/2020/03/10/arts/music/coronavirus-co...


At my school there is a 2 unit class that you must take along with the intro DS&A course that teaches bash, vim, git, testing, etc. It was definitely the class that helped me the most in my internship and also made me a Vim user.

http://ieng6.ucsd.edu/~cs15x/


I too use (Mac)Vim.

In my experience, most CS majors at UCSD that I've met complain about the course. On the other hand, DSC doesn't have an equivalent, which I find disappointing but understandable. Maybe it'll get one in the future.


Oof, the main memory I associate with this class was not realizing there was a midterm and therefore not showing up for the midterm.

Still passed though, and with an A somehow. Thank you, guardian angel TA!


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: