169 comments

[ 2.8 ms ] story [ 223 ms ] thread
This is pretty amazing. Its also something that while I'm not surprised, I'm curious (if anyone from Shopify wants to weigh in that'd be even more cool) that they aren't taking the approach that I've seen other large Ruby based enterprises take, which is moving critical functionality to a more complimentary stack, such as Go or Elixir for speed improvements. Is really investing more into Ruby in this fashion better than the alternative?

EDIT: I posit the last question as well..a real question. In another words, I guess we'll find out how this goes! I don't know what the "right" answer is. I'm more interested in the trade offs they evaluated on this front, or if its such that 500K is just a "hail mary see what happens" situation

Not sure about what’s best from a pure corporate financial perspective. It is really nice for one of the likely upcoming tech behemoths to still be pushing Ruby like Shopify is doing and has been doing.
Those might be complementary but they are still other languages. They have completely different semantics, performance characteristics, deployment stories, etc that will need to be learned, developed and supported internally.

It seems like they like ruby and appreciate what it allows them to do. There's no particular reason to think that the strengths they value in ruby will be present in those or any other languages either. They mentioned metaprogramming for example and it truly does feel easy and powerful in ruby in a way that I've only felt in certain lisps otherwise. Presumably they're heavily invested in certain techniques and powers, have earned and maintain internal expertise in them and find them valuable.

Moving the critical functionality into a language where they'd be giving up that hard-earned expertise is a bold move. It may be the standard move, but imo it's pretty radical and a fairly significant gamble. If you're pushing the limits of a language that otherwise works very well for you, expanding those limits does seem wise, even the conservative choice.

Metaprogramming, yes but also pure objects. Ruby has that Smalltalk heritage in a way no other language has. Also the fact that it focuses on developer happiness makes it a way more pleasant language to use compared to say Golang or Rust.
Other than SELF, Objective-C, Dylan or Common Lisp.
I have been working with Ruby for over a decade and IMO most metaprogramming is the worst part of Ruby code. It makes code very difficult to reason about outside of runtime and makes unclear traces when something does go wrong. Now I know it can be done right, but I think the Ruby community ran too much with DRY (Don't Repeat Yourself) and "clean" minimal syntax at the cost of maintainability and readability.

It also makes it hard for tools to reason about what is being run as well when you have stuff running in `instance_eval` contexts and `method_missing` being abused. So now here we are trying to unravel that by trying to make the interpreter smarter with caching to improve performance but if I had to turn back time, I would reverse every instance where one tried to be clever with metaprogramming in the name of syntax.

Yeah I kinda knew I'd regret mentioning any specific feature of ruby that one in particular.

Anyway it doesn't matter. The point was that they presumably have identified certain things ruby does well for them and have invested heavily in them. If ruby does other things less well then abandoning ship for an unknown set of tradeoffs is a riskier move than improving the specific weaknesses that are their obstacles.

What ruby's inherent strengths are or even if they exist at all doesn't matter as much as their investment and expertise in them does.

> They have completely different semantics, performance characteristics

Many times it is the different semantics that allow for better performance.

If you can add new methods or change their implementation at runtime, performance optimizations get a lot trickier, for example.

The immutability that's foundational to Elixir and Erlang enable the incredible scaling capabilities of the Erlang VM.

> The immutability that's foundational to Elixir and Erlang enable the incredible scaling capabilities of the Erlang VM

This. If you want at least one order of magnitude of scaling to come "for free" (note: further orders of magnitude may still cost you), the BEAM VM will hook you up thanks to this fundamental design decision

> If you can add new methods or change their implementation at runtime, performance optimizations get a lot trickier

This particular example is a non-issue though - it's completely solved through dynamic deoptimisation (as in the machine code with and without method redefinition is exactly the same.)

I wonder if there is a fear of talent drain if management starts signalling that there's a "better" language being brought in for the "critical" things.
> I'm more interested in the trade offs they evaluated on this front, or if its such that 500K is just a "hail mary see what happens" situation

It's actually much more than 500K. I think they have at least 6 very senior devs working on it¹. I think 3 million $ per year is a very conservative estimation.

That said, it's definitely very mysterious what their analysis was.

¹=https://shopify.engineering/porting-yjit-ruby-compiler-to-ru...

I recognize Tenderlove in a photo, so whatever they're doing is probably more than Adequate. If Aaron is involved I'm bullish. It's great to see Shopify giving back to Ruby in a serious way. Imagine Ruby's future if most companies that benefit from it make a similar tithe. That sure has paid off in terms of open source, e.g. Rails et. al. If that community also collectively finances teams of researchers the ROI should be similarly worthwhile. Integrating contributions into GitHub seems like a good direction.
Ruby is one of the greatest programming languages alive. It is nice to see Shopify pushing it!
It's also really slow so idk if I'd use it at a large scale..
What a great company, too bad I bombed that interview lol damn cat
Oof. Give it another go in a year!
Don't. It's not that amazing.
Probably mostly in my head. But working on core Ruby or Rails is a dream of mine...curious though what's your experience like there?
Nowhere is amazing, really. Shopify would still be a fantastic career move for most people in terms of resume clout and income.

Plus I was just trying to be nice!

What did the cat do?
It's on me really, I made the huge mistake of taking the interview when my child was sick and my super loud father in law and wife were in the house with my toddler child. It was after the interview was postponed twice and I didn't want to postpone it again. In addition to all the noise they made the cat hated it that I closed the door during the interview and kept meowing to be let in...if I had let her in she would have kept bumping into me but in retrospect that would have been better. The icing on the cake was I took a room in the house that had a lousy connection so I was disconnected twice during the Leetcode thing (I don't remember if it was Leetcode but it was one of those online coding platforms). It was such a disaster it was the first time ever I asked to stop the interview in the middle - I just gave up and was a complete sweaty mess lol.

So lesson learned - important interview needs to be in an empty house. I don't have a great solution for the cat problem.

Anyway I usually don't take interview failure that hard but this one was painful because my performance was so embarrassing and I cared about the job. Probably my poor performance was in direct proportion to how excited I was about the opportunity - too bad.

Sounds like this was great practice, even if the stakes were a bit high.

(Definitely let the cat in! Every zoom meeting I am in has at least one cat, and it is a welcome distraction compared to all of the crying babies and other nonsense)

It was a good experience in the sense I find it very unlikely I'll ever have an interview worse than that - ever, unless the interviewer physically assaults me or something. So you live through a 45 minute ordeal and understand that life goes on, there's that.
Shopify has made great efforts to improve its ecosystem and developer experience. I am so glad they do!
I've always been fascinated by this phenomenon, which one can also see in the Lua and Python communities: Use a language whose natural implementation is extremely slow, and then invest enormous amounts of time and effort to make it fast. Why not just use a language whose natural implementation is already pretty fast? While I understand the value of some dynamic language features, many of the features of dynamic languages that are hardest to make fast are undesirable in any code base larger than a 50 line script anyway.
walmart and a few others did this with node back in the 0.10 days, except iirc it was them that was holding up node at that version. iirc when iojs forked off, they had a much faster release schedule, and then at some point rejoined the main node project which then proceeded at a much faster rate.

Was it also nike and paypal? I remember it being walmart and some others that were big champions of node in the beginning.

> iirc it was them that was holding up node at that version

really? I thought it was Joyent? Would love a source on this.

yeah sorry about that, thats just off the top of my head. it was a wild time for me, so the events happening at the time coincided with me reading about the whole debacle live as iojs was happening.
Yours is a fair question. Theories: * Cheaper to invest in your tools than overhauling your people/codebases/etc * Sense of wanting to give back to your core tooling * The decision maker(s) for the investment just really love Ruby?
Theory #4: The performance is actually fine, but the developers were given a project to improve performance in order to keep them around for hot fixes in a codebase they know well and to mentor junior employees.
This is why we have C bindings. Let performance things be performant and readable things be readable.
And in the process add a couple of CVEs...
You don't need to stay in C. You can pop through to Rust or Golang or what have you.
Which begs the point why use Ruby at all, plenty of AOT/JIT languages with great IDE tooling to chose from.
You think Shopify should've written their backend in Rust? I really wonder if people saying this have ever used Rust.

Ruby is great for developers of all skill to learn and be productive.

Rust is fast as the devil but you have to be a damn good coder to learn it. Even then I doubt you can be as productive managing memory all the damn time. It's a low-level language great at low-level things.

Ruby is a great option for Shopify. Rust is a great option for Firefox's Servo (though that project failed so maybe not).

Where does "Plenty of AOT/JIT languages" imply Rust?
reading my comment from yesterday I don't know what I was thinking, apologies
cost of improving the language vs cost of hiring new people in different language, keep things stagnating for 10 years while rewrite is in progress, having to deal with talent exodus etc.
Why do you put a high level managed language into the same category as one with a runtime and a GC? Like, why would you want 2 runtimes at the same time? Makes 0 sense.
Which of those do you think is a high level managed language with a runtime aside from Ruby?

Both of those are comparable to C and compiled. Rust is a bit lower level, Golang a bit closer to C++.

C and Rust is obviously a low level language, as well as C++.

Go is the odd one in the list, you might as well say that one should write an external function in Java and call that from Ruby (which would be fair if Ruby would already run on the JVM, e.g. in case of TruffleRuby).

Go has nothing at all to do with C++, C++ is a low level language, and an expressive one at that. Go is neither of those, it is managed and not good at expressiveness (by design).

FYI Ruby does already run on the JVM since 2001 via JRuby.

There's no need to wait for TruffleRuby (unless you want to).

https://www.jruby.org/

Yeah, I’m aware, it was more just a tongue-in-cheek comment.
Golang is a perfectly fine choice here for performance sensitive code in place of C when paired with a less performant language like Python.
Then add JS, C#, Java, Haskell etc to the list as well, they all perform roughly in the same ballpark.
Yeah it’s an interesting point. Wrt Python, I’ve tried writing ML in many different languages for this exact reason, but at the end of the day community is everything.

Pythons community in the ML space is pretty incredible. Trying to recreate all the libraries in another language is no small task, then you also have the issue that Data Scientists don’t want to write in complex languages.

In events like this, improving the language can start to look like the best option.

Agreed, as someone who has largely done web services in Python, along with some data engineering

I work professionally in Golang now and I appreciate so many things about it, but when I go back to get something done for a personal project in Python, it is scary how much faster I can move.

Pydantic, FastAPI, SQLAlchemy, Alembic, requests, attrs, click... it's going to be a long time before other languages can hope to provide libraries with developer experiences that even come close.

Shopify was founded in 2006 and I'm sure (having never worked there) there are things in their codebase that are that old.

What were the options in 2006 for languages with both a fast runtime and reasonable DX? I honestly can't think of any. Ruby at the time was pretty far ahead on DX for mainstream and up and coming languages. It was known to be slow but DX for Java was really not great and mired in "enterprise" features and mindset.

Edit: python was of course around and I don't remember the Django timeline well enough to say if it was viable in 2006 or not. PHP was of course around but again there was a mindset issue at the time.

cough common lisp cough
Sure. Not exactly mainstream so one would need to consider the hiring pipeline, but if it serves as a competitive advantage then sure.
it was used to write viaweb back in the 90's. The original saas that made Ycombinator possible.
Ok but that still doesn't make it mainstream or have a candidate pool. If those things don't matter then anything goes.
An underrated feature of obscure languages is that they alienate people who think “$tool developer” is a an identity.
You definitely don't need to consider a hiring pipeline with Common Lisp. 1-2 people are enough to write and maintain it.

But if you prefer 500 devs instead you should consider ruby, python or PHP. Middle managers are getting high on these numbers.

Honestly, that’s just bullshit. Every language is more productive with fewer developers since communication does have an inherent cost. But there is no Silver bullets as per the famous article, no language provides not even 2fold increase in productivity over another managed one, let alone an order.
while I agree a 500 fold increase is a bit of exaggeration, There is some merit to the argument.

more expressive languages including common lisp certainly give more power for an experienced engineer to outperform someone fresh out of univeristy. enough to say that I'd rather have 2-3 senior engineers experienced with common lisp or clojure or haskell over 10-15 juniors working on go or python.

and what if you gave them the same expressive language? I'd argue that its even more dangerous. Common lisp is a powerful language but its easy to code yorself into a corner if you don't have the experience to properly use it. it;d be easy to build overcomplicated systems that are brittle. go is in fact better for them because it limits the damage they can cause.

Where would the community, mindshare, and hiring pool be? Or would you have to innovate on how you come up with that (on top of your core product) to accomplish anything there?
community is small but extremely dedicated.

I agree that the hiring pool is small but if you want go level performance, metaprogramming and developer productivity, common lisp was your best option.

Shopify went with ruby. not a terrible language but it did come at teh cost of performance.

I don't think "fast" languages are automatically better, they have downsides for sure:

* Rust - I do not understand the borrow checker at all and I'm a senior engineer at FAANG. I can barely write a simple function in Rust. I've struggled more learning Rust than any language (and I can write C and C++ just fine!)

* Go - I like Go, but there is a ton of boilerplate involved with writing it. Ruby is far more concise and you can get straight to business logic.

* Java - Even more boilerplate

* C/C++ - I think Ruby clearly wins on productivity here

What about C#? That being said, I might just be accustomed to all the boilerplate.
Biggest downside is you're likely committing yourself to the Microsoft stack and a single vendor for most of your technology.

I don't think it's necessarily the wrong decision but you have to decide if it's right for your project.

Dotnet core runs fine in Docker/on Linux?

Most C# apps I've worked on in the last 5 years are deployed to Kubernetes.

fair enough, perhaps I should give it another look
100% inaccurate/outdated (by 5 years) info. I've run .NET Core applications on Linux/Docker/K8s + Postgres. The only Microsoft 'stack' there is .NET itself.
.NET Core is still absolutely designed to nudge you into the MS stack.

- EFCore is MSSQL first, even if other options are provided

- Many libraries ship with two implementations: an over-engineered Windowsy version that barely works (with a big scary warning that it should never be used in production), and a thin wrapper around some Azure service

- Important tooling like the debugger (which wouldn't be so necessary if .NET had halfway decent support for printf debugging, but here we are...) is locked to be compatible with VS and (MS' build of) VSCode, despite both of them using supposedly open (and Microsoft-pushed!) standards like DAP

- The community is really culty, the response to "X is broken when using the non-MS-Stack alternative" always seems to be "well use the standard MS solution then"

- It's practically open source in name only, because the build engineering is so convoluted that it's nearly impossible to find the canonical source code of core features like the standard libraries

- EF Core is not MSSQL first. EF Core is an abstraction layer and is in no way tied to Sql Server. In fact, Microsoft's own getting started tutorial uses Sqlite (1). I've personally used the Postgres drivers in production and they are as good/production-ready as Microsoft's SQL library for EF Core.

- "Many libraries ship with two implementations..." I've yet to come across these "many" libraries in the 5 years since I've been building services with .NET Core.

"The community is really culty" - I'm not sure where this is coming from. It's hard to refute such vague criticisms.

- "It's practically open source in name only" - Here is the base class library source: https://github.com/dotnet/runtime/tree/main/src/libraries or https://github.com/dotnet/corefx/releases (depending on what version you're looking for)

1. https://docs.microsoft.com/en-us/ef/core/get-started/overvie...

If you want to build .NET Core yourself, Microsoft provides you with the steps necessary to do so here: https://github.com/dotnet/source-build

Maybe our definitions of open source are different, or maybe you're just shitting on Microsoft for your own reasons. Regardless of whatever your experiences have been with .NET in the past, they don't mirror the majority of the folks that use it everyday.

.Net Core is universal platform. Our API servers run .Net Core exe’s on Ubuntu behind NGINX. Full AWS stack, some Google Cloud and Mongo Cloud services internally. I don’t think we even have an Azure account.
Still a lot of Windows baggage with C#. It's changing, but I think most c# devs are still learning fundamental unix and docker stuff. So you'll get an overhead with C# too, just not in technical performance.
Source? As a .NET developer I can tell you that there are plenty of us with Linux/Docker experience. There is zero Windows baggage with C# in .NET (Core). Your information is out of date.
I work for a C# shop. However maybe the signal is ex-Microsoft rather than C# itself, when I think about it more. We have lots of ex-MSFT.
Projects making use of Sitecore, Dynamics, SharePoint, SQL Server CLR,... GUI frameworks out of Redmond

Graphical tooling to deal with process dumps, etw data, and profiler information only available on VS.

> Projects making use of Sitecore, Dynamics, SharePoint, SQL Server CLR,

What projects? None of those are forced on you or have any references to them built into .NET Core. I've been building .NET apps since 1.0 reached beta (in 2001?) I can count on one hand how many times in total that I've worked with those systems. This argument is a hell of a reach.

> GUI frameworks out of Redmond The upcoming Microsoft MAUI is cross-platform (no, Microsoft isn't building support for Linux, but there are open source efforts working on it.)

You can use https://avaloniaui.net or https://platform.uno

> Graphical tooling to deal with process dumps, etw data, and profiler information only available on VS.

https://www.hanselman.com/blog/dotnettrace-for-net-core-trac...

There's also https://github.com/SachiraChin/dotnet-monitor-ui

You can use JetBrains rider to profile in Linux/MacOS as well: https://www.jetbrains.com/help/rider/Profiling_Applications....

If you don't want to use .NET, you obviously don't have to.

Switched from a career of a windows/.net/c# to a max/ruby/js shop. Docker skills transferred. Had to learn Unix commands but it didn’t feel much different from cmd/powershell
Prove Productivity scientifically.
Why?
Because it underpins the argument above.

If Ruby is "so productive", that's a quantifiable measurement, no?

We gonna double-blind developers or something? I know Go and Ruby very well. I know what it takes to write in one vs the other.

Ruby is faster to write and more concise by a long shot—certainly if we're talking back-end web services. I prefer Go to Ruby generally but it's weird that Go developers tend not to even see how much yak shaving is involved with it. Or really any downside with it.

Try writing this in Go:

    records = User.limit(10)
    records.select { |user| user.is_admin? }.map{|user| "#{user.id} : #{user.name}"}
I may be wrong, but aren't you doing two loops by doing it that way? One for the select, and another for the map? Or does ruby compile out the select loop with smarts.

In Go, the intuitive way would be one loop with an if inside it. So it would be easy to spot this performance issue if you did it the ruby way with two loops.

https://go.dev/play/p/ixDKuosxPNp

I bet I wrote my for loop as quickly as you wrote your map. The character count isn't that much higher.

The amount of times in my career where the performance would be even measurable between these 2 styles is vanishingly few. If I cared I could just use #filter_map or a classic for-each loop. If we're assuming the project is written in Ruby in the first place, clearly we're not valuing performance that highly.

The more important thing is the ruby version is chainable and more readable—and that matters far more often.

You had me until

> more readable

Without having more context, User in your code is possibly an ActiveRecord class, so to read the #select, you have to consider that it could be radically different and heavier than Enumerable#select (eg. it may execute a DB query as a side effect). So I like your example still, because it’s representative, and certainly expressive, but not readable per se. IMO this sin here is simply that ActiveRecord shouldn’t have overloaded select.

That’s more of an argument against ORMs which I realize my example used. I was mostly trying to convey using map/filter against POROs though.

Using an ORM was a poor choice on my part. I agree the magic there does harm readability since it makes it a lot harder to understand what it really is doing.

Not sure about Ruby, but Java’s streams would do one loop only here, as they are lazy. Also, both solutions are O(n), so unless this is the hot loop of your program, or it iterates over some insane amount of entities, it is a completely meaningless microoptimization.
Thanks to generics, assuming there is some stream/sequence like type

    records := Stream.Limit(User, 10)
    records.Select(func(user User) bool {return user.IsAdmin()}).Map{func(user User) string { return fmt.Sprintf("%d %s", user.id, user.name) }
Yes a bit more verbose, that is the price to pay for static typing without full type inference as in the ML language family.
It blows my mind why Go didn’t have generics at launch. I suppose they just didn’t want people to be able to have abstractions like this at all?
> In retrospect, we were biased too much by experience with C++ without concepts and Java generics. We would have been well-served to spend more time with CLU and C++ concepts earlier.

https://go.googlesource.com/proposal/+/master/design/go2draf...

oh wow thanks for this. I haven't been actively using Go since around the time this was written so I've missed it
Stream.limit and Stream.select(…).limit are not the same thing :)

records.collect({case u if u.isAdmin => s”${u.id} ${u.name}”}).take(10) guess the language

Well you can argue semantics, it doesn't change the fact that it is possible to implement the same concepts in Go with generics.

That line of code could be Scala, or something else.

In any case, the point is that there are compiled languages that offer similar productivity like Ruby, with AOT/JIT compilers out of the box, and great IDE experiences.

It is Scala. I meant to demo type inference and pattern matching. I know pattern matching(something I cant live without) does not exist in Go and Ts, not sure how well type inference works in Go
why not just use Crystal https://crystal-lang.org, it is faster than go, with Ruby like sytnax.
I'm waiting until I hear some success people are having with it. I suspect the ecosystem is young and library support is minimal too.

Last I heard (which was years ago) it was pretty much a solo project.

That said, the demo is really something and I like what they're doing. I hope one day it becomes my language of choice.

(comment deleted)
> with Ruby like sytnax

People use Ruby because they like the way it works, not because of the syntax.

Crystal's standard library is also a close match for Ruby's. I do Ruby every day and was able to familiarise myself with Crystal in a few hours.

It's definitely lacking in the web ecosystem department but the language is a joy to use and incredibly fast.

It can be a 99.99% close-match, but if it doesn't include key methods like a runtime method_missing, then it's hard to see how we'd reimplement Rails and our code base on top of it.

I think people focus on the superficial similarity of Crystal, without thinking what semantics need to be the same for it to use usefully similar. And those semantics aren't there, so it doesn't matter if it sorts of looks the same and includes most methods.

I feel like if it was tractable to run Rails on Crystal then someone would have done that.

One major selling point of Ruby is the robust ecosystem of high quality, open source libraries which are relevant to the things SaaS companies need to get done. There's a ton of code you just don't have to write if you stick to Ruby.

The fact that "Ruby developers already basically know the Crystal syntax" is a selling point for Crystal, but if people are already evaluating a switch to another programming language, that's just one of many factors that must be considered.

Gitlab split and rewrote some services in $faster_language. Based on the hires, Github seems to be doing that as well.

Gitlab's history with $faster_language has at least some background documentation, e.g. https://about.gitlab.com/blog/2016/04/12/a-brief-history-of-....

They seemed to have liked it, as at least a couple of other services are written in $faster_language - gitlab-shell and gitaly (probably, several others).

There may be more static languages nowadays, but they're very young - I think in real world, there wasn't, pragmatically, a lot of choice, although today's young languages are... still young :)

I prefer Go to Ruby so I don't know what you're trying to argue. I just said it requires a lot of boilerplate and that makes it harder to be productive. Technology choice is about trade-offs.

It doesn't mean a project is doomed simply because it chose Go. That said, Heroku tried to do a major Go rewrite of their entire backend and the project failed miserably.

This is definitely true, and I wouldn't fault anyone for using Ruby or Python to write the initial version of their startup. However, there's a difference between initial productivity and ongoing productivity (maintenance). Statically typed languages like Go and C++ are much easier to rework and refactor, because the compiler is checking types (not to mention typos).
That's why my language of choice is TypeScript, but I think Sorbet looks promising (haven't used it though)
Same. Next whatever startup or what I will do will be done in TypeScript(/JS) for the back end and front end. The ecosystem is so massive. And most of the time people will do a library, tool, database, or whatever, and the next language they will support to interact with it is JS/TS.
make sure you give Deno a test run too. I think it could be great for some applications already.

(Specifically cases where you want the project easy to jump into with almost no toolchain setup.)

C# and F# have a good blend of performance and code style.
And in Visual Studio (full, not code) you have an amazing IDE that is an incredible help when writing the code.
You could make most scripting languages much faster by adding immutable structs and keeping everything else more or less the same. There was a game middleware company selling more or less this for Lua.
IMO Go has far more boiler plate than Java. Go is going to have countless amounts more boiler plate for simple logic. Just like your comment below try writing one of these in go:

    var lst = users.stream()
        .filter(User::isAdmin)
        .map(u -> u.id() + “ : “ + u.name())
        .limit(10)
        .toList();


    static boolean isPrime(int n) {
        return switch (n) {
            case 0, 1 -> false,
            default -> !IntStream.range(2, n).anyMatch(i -> n % i == 0)
        }
    }
Second one in Go:

    func IsPrime(n int64) bool {
        return big.NewInt(n).ProbablyPrime(0)
    }
Each language has its own pros and cons. Go wants to be explicit and simple to be understood. Java is fully-featured.

This is just anectodal evidence anyways. And these are tools in the and, and no point for a "tool fight".

The point of that example wasn't to show if there was a standard library function for it. It was to show the verbosity of writing code that contains if conditions, loops, and generic programming. I obviously could have written:

    new BigInteger(n).isProbablyPrime(0);
My general point is that if you put Ruby up against a nonspecific compiled language it's hard to argue Ruby is better. When you analyze something like Go vs Ruby or Go vs Java then the warts of particular languages come out.
You may be right. My knowledge of Java is from 1.4 in college and vastly out of date.

I should spend some time actually learning modern Java and less time avoiding it.

There's still some verbosity. I would kill for C# like properties for mutable data classes (JPA entities). I also really like Kotlin/Scala style apply functions for interfaces and Kotlin's delegates for making easy decorators, but none of these have ever convinced me to leave Java behind. The only languages that have come close are C# or D because of their lower level capabilities.
New Java is pretty damn good actually, I don't see a real need for Go over it other than compile time perhaps.
Java has a lot going for it but the JVM remains anathema to a lot of developers. Modern C++ has similar stigma on the language end – it's possible to write fantastically expressive and terse code in it nowadays, but it maintains a reputation.
2 years ago I spent 2 months learning C++ coming from almost entirely scripting languages throughout my career. (Though I have a CS degree so a decent academic background in memory management)

I came away liking C++ more than I thought I would. I didn't find it hard to learn but it was time consuming. Where learning Rust I never understood the basic concepts enough to be productive, I could be productive pretty quick with C++.

The trouble is there is a lot to learn because the language is just so old and has been through so many revisions. To some extent you can't just limit yourself to the modern stuff since in order to learn the modern stuff you need a basic understanding of what it was before to know why things are done the way they are now. You also run into code samples that use the old stuff or corner cases where they're needed.

I also think it really gets you to think about how computation and memory is happening at the metal level which is great for optimization but I think for most of the work I do it would be largely a distraction. I see this is a downside, not an upside.

That said, you're definitely right. You can have nice, expressive code in C++: I just think the learning curve is the biggest problem. I'd be happy to use C++ in my next project though.

Javac is still probably going to compile faster than go. Javac doesn't have to do ANY optimizations. I doubt you'll find a compiler faster.
(comment deleted)
Because management want's to "get things done" and quickly "evaluate ideas", a dynamic and somewhat loose language is actually an advantage in prototyping. Also it is very easy to find new developers than for example if you'd use rust, because you can just hire any frontend dev.

tooling can be built with money and money is usually not the issue for these companies.

Precisely. Twitter is a great example of this. I'm sure they have moved beyond Ruby in many areas but it was originally core and got them off the ground quickly, I presume.
Isn’t twitter running on Scala with Graal nowadays?
Splitting services and porting them to a faster language doesn't prevent prototyping in the main, slower, language (in this case, Ruby).

It also doesn't need to be microservices madness - see GitLab (and also GitHub, but I think they don't open source their internal services), which rewrote some parts in Go.

Dynamic and somewhat loose language doesn't preclude not having at very least JIT support out of the box, even BASIC was better in that regard.

And if we take into account Ruby's predecessors, Smalltalk, SELF, Dylan.

SELF was really fast, at least as claimed [0] - about half the speed of optimized C and quicker to compile. It was where the HotSpot tech for the JVM came from, and V8 uses a similar object model and thus techniques. Just wish they could have made it usable!

[0] https://bibliography.selflanguage.org/practical.html

afaict Self and Dylan were research projects / product development projects.

Smalltalk had multiple commercial implementations and was used to build mission critical software in banks and utility companies and manufacturing companies and…

https://www.davethomas.net/papers/ubiquitous1995.pdf

I think Lua is catching a stray here. For most uses, Lua, even the PUC-Rio/vanilla implementation, is pretty fast. LuaJIT is quite fast. And because Lua is an embedded language authors can defer to C or whatever the host language is for bottlenecks requiring more speed. IDK if people are seeking dynamic types specifically, but it sure is nice to have stuff like memory management + easy string manipulation built-in sometimes.
Lua definitely caught a stray here. The reference VM is pretty fast, the JIT is just way faster. No idea how Lua ended up wrapped in the conversation with Python...
Lua has no OO, and changes its stdlib all the time.
I have no idea what you're alluding to. Not only are many people on LuaJIT's api version anyway, I don't remember ever running into any meaningful stdlib change that wasn't easily fixed. And Lua not having OO isn't really a problem to most people either.
What does fast "natural implementations" mean? Runtime? Compile-time? Because if one sacrifices the latter for the former, I think that skirts over the main benefit.

With dynamic, interpreted languages that have effectively zero compile-time, one can achieve significantly tighter iteration cycles across a team, ending up limited more by test suite runtime than by slow edit/recompile cycles. This leads to higher productivity across an engineering organization with a quickly evolving codebase. Not important for all use cases, but pretty critical for many.

> effectively zero compile-time, one can achieve significantly tighter iteration cycles across a team

I don’t know what machines do people develop on, but on a fairly old laptop I get practically instantaneous iteration with incremental compiles with Rust, which is one of the slowest compiling languages. I honestly can’t imagine where is this supposed slow compiles in case of something like Java - like sure one can create some monstrosity of a build definition, but if some competent person wrote it it is just as fast as an interpreted language. Hell, it can do hot swapping just fine.

Because you already have a $50B business that runs on the slow thing. So from a risk and cost/benefit analysis making the slow thing fast sounds a lot better than "rewrite everything".
More importantly, you had to hack shit together as fast as possible to get a dice roll at the $50B business or bust game.
A better question to ask is, why are these "slow" languages winning? If performance is as important as we think it is, why don't we see startups using Rust or whatever just running circles around startups using Ruby?

The answer to this will lead to what actually matters in a language, in terms of building a product. Raw performance isn't it.

One plausible reason in my mind is that startups tend to hire devs on the younger side, and it seems (from my perspective in the USA) that most new-ish grads come out of school having done most of their programming in Python. Plus some Javascript if they've dabbled in web dev building hobby projects.
Ruby/Rails optimizes for developer productivity. Once you prove yourself as a company and your product reaches a scale where you cant just throw $$$ at the problem, you’d be in a good spot to then hire folks to start rewriting parts in $languageofchoice.
40 years ago those newly hires would have only learned BASIC.

Except at least BASIC had compilers available, and Darthmound BASIC was originally designed with what we call JIT nowadays, even if that wasn't a thing on 8 bit home computers.

This is something I've thought a lot about over the years too.

Runtime performance is great and very much welcome if you can get it for free but for a ton of web apps it's not a major selling point on its own.

If I can write 30-100% less code and be able to Google almost every single problem I encounter and find tons of high quality blog posts, documentation and videos along with having decently maintained third party libraries for common features then this is going to win every time in my book against something that doesn't have this. It doesn't matter if your web app uses 100mb of memory instead of 1gb or can serve 300 requests per second instead of 30. Most apps never come remotely near the point where this level of performance matters and Rails makes it easy enough to cache things where you can get your p95+ responses responding in 50-100ms or less without much effort.

Basically Rails sets you up where a solo dev or small team can run an entire SAAS app on a single $20-40 / month server and have tens of thousands of paying customers without really having to think much about performance. Combine this with Hotwire and you can build really nice feeling sites very quickly if you're the type of person who doesn't want to build APIs + JS front-ends.

On the other side of the spectrum with Shopify, GitHub and Basecamp you have engineers running Rails at massive scale making the framework better for everyone (themselves included). It's a self-fulfilling prophecy and win / win scenario because the more people that use it contribute back to the project (patches, community related things, etc.).

At this point the only things that matter are fast how you can build your app and how happy are you building / maintaining it. As Ruby, Rails and compute resources get faster then frameworks who focus mainly on performance become less appealing over time for a huge class of web apps because once you reach "good enough" performance it's all about the community and mass adoption. It's like a company who pops up and tries to copy another company but adds 1 small feature to differentiate themselves. As soon as the company you copied decides to add that feature you're going to be climbing way up hill to barely survive.

Latency matters, but nobody’s platform is unusably slow. Expressiveness matters for morale and hiring, and most of all while iterating early on. Efficiency only starts to matter when product/market fit brings enough load to push your backend budget.
Ruby is a helluva lot of fun and a lot of engineers at Shopify like it. Life isn't just about taking the shortest route sometimes.

One of my favorite quotes

> I think that it's extraordinarily important that we in computer science keep fun in computing. When it started out, it was an awful lot of fun. Of course, the paying customers got shafted every now and then, and after a while we began to take their complaints seriously. We began to feel as if we really were responsible for the successful, error-free perfect use of these machines. I don't think we are. I think we're responsible for stretching them, setting them off in new directions, and keeping fun in the house. I hope the field of computer science never loses its sense of fun. Above all, I hope we don't become missionaries. Don't feel as if you're Bible salesmen. The world has too many of those already. What you know about computing other people will learn. Don't feel as if the key to successful computing is only in your hands. What's in your hands, I think and hope, is intelligence: the ability to see the machine as more than when you were first led up to it, that you can make it more. Alan J. Perlis

The thing is, interpreted languages have a natural advantage vs. more performant, compiled ones when it comes to iteration speed (and also often ease of early deployment). I think the reason we see this is that while it would be great to pick a more performant language at the beginning, it may mean that your iteration speed is too slow and you simply don't survive as a company (run out of funding, can't pivot fast enough, etc.) In my mind, it's actually a very reasonable choice to start with what you think will be the most optimized for early developer productivity. Once you get to be a company worth tens of billions, you can just pay people to solve this problem for you.
Time-to-market with a viable product is extremely important. In the case of Rails in particular, the developer experience is such that even a very green programmer (for example, an entrepreneur who has taken a class or two) can bootstrap a working proof of concept quickly. That alone can be worth whatever drawbacks the language "speed" is, and is partly why Rails (and python stacks) were and continue to be popular.

Also, language speed alone isn't a deciding factor if your bottlenecks are elsewhere: network latency, i/o etc.

Having a "fast" language, for many projects, is something you worry about only after achieve some kind of success, and that success is made more achievable by having good developer tools.

I mean for Lua we at least have LuaJIT which is pretty fast.

But Ruby?

To be fair, investing half a million is nothing if it results in the improvements they want.

It would be far costlier to rebuild infrastructre, train and shape a culture around another technology stack in an already monoculture company like Shopify.

(comment deleted)
It doesn't seem to be mentioned here, but I'm especially intrigued by the possibility of implementing shaped objects. See https://chrisseaton.com/truffleruby/rubykaigi21/ and the previous HN conversation here: https://news.ycombinator.com/item?id=28476654

Shaped objects (aka Self's maps or JavaScript hidden classes) are an old idea, but they seem to have been only recently rediscovered, and the basic idea suddenly allows a lot of other potential optimizations (where research would be helpful). We don't know if they'd really improve Ruby performance, but I think it's very likely & I suspect they'd also enable future improvements.

Pretty cool. Interesting approach instead of just building applications that need high performance in Go/whatever other fun language enterprise rails companies have shifted to.
why does shopify not just use Crystal https://crystal-lang.org, it is faster than go, with Ruby like sytnax. Invidious the youtube proxy is written in it.
We have a code base already written in Ruby.
Because that would require porting all their code. The syntax is similar, but they're different languages (and I'm saying that as a person usually mentioning they're not that different). At their scale even updating to a new minor version of Ruby and fixing all warnings is likely a multi-day adventure. Moving to different Ruby runtime would take weeks/months. Moving to crystal would be effectively a rewrite from scratch.
since facebook named their optimized php compiler "hip hop"

can we call this optimized ruby compiler "reggaton"

All jokes aside, they should get in contact with teh guys at gemstone software. I remember there was work on a highly optimized ruby vm called "maglev". I wonder whatever happened to that.

It's a JIT, it's not gonna affect Ruby syntax at all. Hip Hop got a new syntax, was forked and is basically a different language than PHP now.
How popular is Ruby these days?

I haven’t paid much attention but the “optimize ruby” posts seemed to be much more common 5-10 years ago.

Makes me wonder if devs just moved to node/python in the meantime?

people learned how to scale, not a big deal unless you are handling 1/3rd of the internet traffic for a specific industry.
Basically, what you are reading here is the marketing bs. Shopify would better invest in MRI silently. TruffleRuby? Don't be shy; just call it ShopifyRuby — the board sure like it.
I thought they already had yjit, which is much much better these folks were doing years ago. Looks more like a big namedropping event to get better yjit buy-in from ruby-core
No, YJIT is separate to this, as the article says. This is about the new garbage collection effort, a new option for a JIT, and making interpreters faster.
One can write Scala like ruby or python or typescript nowadays. What seems to be the problem?