Live data from Hacker News

C2: Affordable X86-64 Servers

blog.scaleway.com

131–140 of 231 posts

Re: C2: Affordable X86-64 Servers

#133
post #103

Earlier quoted context omitted.

Go's net/http framework uses a go routine per connection.

For my understanding: One request is executed on serveral cores?

No. There's a certain amount of basic serialism in a single HTTP request. Go, Erlang, Haskell, a few others make it really easy to write handlers that may themselves be running on multiple cores, but the HTTP handling itself is essentially serialized by the fact that you have to get the request, then send the headers, then send the body, which itself probably has order constraints (such as HTML, which certainly does, at least unless you really go out of your way to write yourself a CSS framework that would render chunks of the HTML order-independent). Most of the required bits of handling a request, like header parsing, header generation, etc. have been made so efficient in the implementations that care about that that any attempt to multithread that would lose on coordination costs to a single-threaded implementation, I think... at least, I'd need to see a benchmark to the contrary before I'd believe in a win.

(You can play a lot of games in how a lot of requests are handled, even going to the HTTP2 extreme of interleaving responses to different requests on the underlying network stream, but what I said will be true on a per-request basis.)

Re: C2: Affordable X86-64 Servers

#134
post #6

Invite only.... So you cannot even get them. What's the use of this announcement?

I think I have a number of invites, but the site is very slow at the moment.

If the free-invite-train hasn't left the station, please count me in!

Re: C2: Affordable X86-64 Servers

#135
Their support isn't great, and they're only in Canada and EU, but Kimsufi[1] is my goto for beefy but cheap dedicated servers. Their cheapest offering is $5/month for an Atom, 2G RAM, and 500G harddrive. But where the value really lies is a step up to about $25 where you start getting non-Atom processors, 16+G of RAM, and 1+TB harddrives. Also free bandwidth. It's a real dedicated server so you can install whatever on it, but KVM access is expensive if you break it into not booting. You can deploy a fairly good set of distros through their built-in wizard for free

1: https://www.kimsufi.com/us/en/

Re: C2: Affordable X86-64 Servers

#137

Dammit. Cheap - very cheap - for everything but storage. It seems impossible to find a low-cost server with some big, slow spinning disks on it at the moment. I'm really not sure why. Anyone got any recommendations there? Where would I look, if anywhere, for, say, 4Tb of storage attached to a low-cost virtual or dedicated server, for less than Google Nearline or equivalent?

There is So You Start[1] which offers 2x3TB with soft RAID.. Dedicated server, so you might be able to pay some amount and get them to add more space to it

1: https://www.soyoustart.com/us/essential-servers/

Re: C2: Affordable X86-64 Servers

#138
post #129

Earlier quoted context omitted.

Seems the data centers are also hosted in the Paris area: https://www.scaleway.com/faq/general/ "The service is hosted in our own datacenters, Iliad’s datacenters, DC2 and DC3. Both are located near Paris, France." I have to say this is quite an interesting offer, especially for private/side projects. Currently I rent a virtual server at Hetzner, which costs me 23 € / month and is way below the specs mentioned on the…

Interesting. I'm currently using servers by OVH, which compete in the same low-end segment using their Kimsufi[1] offering, and have datacenters in France, Canada and Germany. Paris is close to me, so these might be interesting for VNC or other low-latency applications. [1] http://kimsufi.com

Nope, OVH doesn't have data center in Germany afaik.

Re: C2: Affordable X86-64 Servers

#139
post #135

Their support isn't great, and they're only in Canada and EU, but Kimsufi[1] is my goto for beefy but cheap dedicated servers. Their cheapest offering is $5/month for an Atom, 2G RAM, and 500G harddrive. But where the value really lies is a step up to about $25 where you start getting non-Atom processors, 16+G of RAM, and 1+TB harddrives. Also free bandwidth. It's a real dedicated server so you can install whatever o…

Charging for KVM access.... Sounds extremely unpleasant. Why would you want a provider like the that, who is going to kick you in the genitals when you're down?

Re: C2: Affordable X86-64 Servers

#140
post #135

Their support isn't great, and they're only in Canada and EU, but Kimsufi[1] is my goto for beefy but cheap dedicated servers. Their cheapest offering is $5/month for an Atom, 2G RAM, and 500G harddrive. But where the value really lies is a step up to about $25 where you start getting non-Atom processors, 16+G of RAM, and 1+TB harddrives. Also free bandwidth. It's a real dedicated server so you can install whatever o…

> KVM access is expensive

Somebody correct me if I'm wrong, but I got the impression that KVM access on KimSufi or SoYouStart requires somebody to walk over to your machine and plug a USB key into your machine. That would explain why it costs $30.

Post reply on HN