(no title)
avianlyric | 1 month ago
If moving big files around is a major part of the system you’re building, then it’s worth the effort. But if you’re only occasionally moving big files around, then reusing your existing gRPC infrastructure is likely preferable. Keeps your systems nice and uniform, which make it easier to understand later once you’ve forgotten what you originally implemented.
pipo234|1 month ago
Still, stateful protocols have a tendency to bite when you scale up. And HTTP is specifically designed to be stateless and you get scalability for free as long as you stick with plain GET requests...
jayd16|1 month ago
If you happen to be on ASP.NET or Spring Boot its some boilerplate to stand up a plain http and gRPC endpoints side by side but I guess you could be running something more exotic than that.
hpdigidrifter|1 month ago
feel free to put them both behind load balancers and see how you go
a-dub|1 month ago
also, http/s compatibility falls off in the long tail of functionality. i've seen cache layers fail to properly implement restartable http.
that said, making long transfers actually restartable, robust and reliable is a lot more work than is presented here.
chasil|1 month ago
These would be the ultimate in resumability and mobility between networks, assuming that they exploit the protocol to the fullest.