HN user

leastangle

238 karma
Posts12
Comments24
View on HN
Immich 3.0 20 days ago

Migrated 700GB of photos from Google to local Immich. The whole family uses it and we’re happy to be supporting the project!

As far as I can tell you can’t step through tests in the debugger

Maybe I am missing something, but that is not correct. You can debug tests the same way as you debug any other code. Even works with the mentioned/used Go extension for VS Code.

gRPC in Production 9 years ago

I like the approach of custom name resolver though. Pretty straight forward to build one e.g. backed by Consul.

I don't think that this is true: OpenHAB, Nexus 3, a lot of the enterprise application servers... One can probably compile a pretty long list of things "running in production" using OSGi.

To quote the FAQ:

The single license annual subscription price for Zing is $3500 USD per server, with significantly lower prices for higher volumes and longer-term subscriptions.

[dead] 9 years ago

An estimated 37.4 percent of Silicon Valley employees are foreign born

Interesting figure

Author here.

Great discussion around the CAP theorem but it misses the point. AP vs CP / Cassandra being AP is not relevant to this particular problem:

1) This is not a distributed systems corner case. You will run into this if you are running Cassandra on a single node. A node should be able to guarantee consistency internally during normal operation. If it is not able to do that, there is something wrong with the system.

2) This is a case where queries are being send from the same process/thread and go to exactly the same nodes. Attach a simple, monotonically increasing query counter to each call and you can easily serialize it on the other side.