Live data from Hacker News

LaunchDarkly gets $8.7M to put the right features in front of right users

techcrunch.com

41–50 of 50 posts

Re: LaunchDarkly gets $8.7M to put the right features in front of right users

#41

If anyone from LaunchDarkly is reading: any plans to add Elixir?

It's not on our immediate roadmap, but we have had some demand for it. We think we might go about it by building an Erlang SDK. Hopefully a light wrapper on that would work well from the Elixir side.

Re: LaunchDarkly gets $8.7M to put the right features in front of right users

#42

We've used LaunchDarkly (LD) for about a year now. We previously used our own Feature Flag library built by our CTO: https://www.npmjs.com/package/dipswitch . LD provided a lot more, and continues to release new features that would've been much more expensive for us to build vs. buy here. We’ve been so pleased w/ LD that we agreed to do a case study with them if you want to take a gander: https://launchdarkly.com/cas…

We used to have our own feature flag library built by our CTO as well! We (thredUP) recently switched to Split (http://www.split.io/) and it's been incredibly helpful for our team of 25 engineers. Slow controlled roll-outs, short circuit broken features without a deploy through their dashboard, and we actually use them for A/B tests as well since they have an impression data pipeline and A/B tests are so similar to feature flagging. Definitely one of the smartest "buys" we've made in our last 4-5 "buy vs. build" discussions.

Re: LaunchDarkly gets $8.7M to put the right features in front of right users

#43
post #7
post #3

Earlier quoted context omitted.

Pretty much. The issue now is, can I implement feature flags faster than I can implement the LaunchDarkly API? I think I can do feature flags faster.

Can you implement analytics on top of those flags, plus a nice UI for nontechnical employees to toggle them faster? If you don't need those, then you probably aren't in their target audience. Disclaimer: no relation, just playing devil's advocate.

[deleted]

Re: LaunchDarkly gets $8.7M to put the right features in front of right users

#44

If anyone from LaunchDarkly is reading: any plans to add Elixir?

It's not on our immediate roadmap, but we have had some demand for it. We think we might go about it by building an Erlang SDK. Hopefully a light wrapper on that would work well from the Elixir side.

For the sake of high quality idiomatic code. I'd recommend creating the Erlang library and a separate Elixir one. But to be honest, I'm just so pleased to hear your even thinking if either of them :-D

Re: LaunchDarkly gets $8.7M to put the right features in front of right users

#45

Interesting idea but how defensible is this business? Somebody releases an open source version, what is the selling point here?

The biggest challenge in implementing this is handling scale. To be able to do feature flagging for the largest web products you need to be able to handle the scale of those products. Any of us could build this ourselves in a few minutes for a local app, but to scale up to millions of users is very tough.

Command and control app with the feature flag states as objects backed by a CDN with predictable invalidation speeds?

Re: LaunchDarkly gets $8.7M to put the right features in front of right users

#46

We've used LaunchDarkly (LD) for about a year now. We previously used our own Feature Flag library built by our CTO: https://www.npmjs.com/package/dipswitch . LD provided a lot more, and continues to release new features that would've been much more expensive for us to build vs. buy here. We’ve been so pleased w/ LD that we agreed to do a case study with them if you want to take a gander: https://launchdarkly.com/cas…

LD provided a lot more ... that would have been more expensive for us to build vs buy

we implemented most of LD in a 24-hour quarterly hackathon we hold

What's the breakdown of 'most' vs the remaining? 80/20? Alternatively, if 'most' was implemented in 24 hours, how long would it take to implement the rest?

From these two statements, I get the impression that either

(1) LD is cheap to buy to begin

(2) 'most' should be taken with a dash of salt

Re: LaunchDarkly gets $8.7M to put the right features in front of right users

#47

We've used LaunchDarkly (LD) for about a year now. We previously used our own Feature Flag library built by our CTO: https://www.npmjs.com/package/dipswitch . LD provided a lot more, and continues to release new features that would've been much more expensive for us to build vs. buy here. We’ve been so pleased w/ LD that we agreed to do a case study with them if you want to take a gander: https://launchdarkly.com/cas…

LD provided a lot more ... that would have been more expensive for us to build vs buy?

we implemented most of LD in a 24-hour quarterly hackathon we hold

What's the breakdown of 'most' vs the remaining? 80/20? Alternatively, if 'most' was implemented in 24 hours, how long would it take to implement the rest?

From these two statements, I get the impression that either

(1) LD is cheap to buy to begin (2) 'most' should be taken with a dash of salt

Re: LaunchDarkly gets $8.7M to put the right features in front of right users

#48
post #30

Interesting idea but how defensible is this business? Somebody releases an open source version, what is the selling point here?

I'm working on that. Currently we are using LD but it's had some issues, enough that their CEO sent email and refunded some of our money. As far as Scale is concerned we routinely see request timeout to LD and then suddenly a user loses a FF they previously had. Our cached value for the FF expires and then LD fails and then my customer is mad

wow...!!!

Please do post it, I'd love to help out anyway I can.

Re: LaunchDarkly gets $8.7M to put the right features in front of right users

#50
Feature flags certainly aren't new -- anyone who has been into SaaS and staged rollouts of production changes likely has built their own or leveraged libraries that implement feature flags. However, the downside of homegrown or library-based models soon becomes visible once you have a more focused organization where each group focuses on what it does best (product vs engineering vs customer success). As Joel Spolsky asserts in defense of NIH syndrome (https://www.joelonsoftware.com/2001/10/14/in-defense-of-not-...), do build what is critical to your business. For a business that revolves around user modeling/behavior/marketing, it would make some sense to build your own. For example, Mixpanel or Totango could probably use their own internal segmentation engines to target users for new features, thereby 'eating their own dogfood'. I work at Upserve, where we provide software to help restaurants and bars run their businesses better. We are obviously not directly in the business of producing feature flags for our customers, but we leverage the hell out of them.

Here are a few key benefits I've seen as an avid user of LaunchDarkly, that are end up costing a lot to build on your own:

- ability to have people outside of engineering control who gets access to what features. Specifically, product management should have control over what features are available, and they probably don't want to go into a dev console to make the changes. Sure, you could build a UI on top of home grown FFs, but why spend valuable time on this?

- rules-based user targeting -- rather than embedding ugly logic into your code about what type of user should be served a feature, you can handle most of that within LaunchDarkly's UI. For example, we have some restaurant groups that have 100's of locations. Rather than setting values at the location or user-level, I can simply set a flag at the restaurant group level and that automatically propagates to the user level. Sure, you could build this hierarchy into your homegrown tool, but I guarantee doing that in a very flexible manner won't be a slam dunk, and you'll soon find that you will want to change it and have to invest more time on something that may not be core to your business.

- custom rollout -- you can roll out by % of users or user properties. For instance I can roll out to 10% of users that are in Rhode Island, US. Did you really add this to your homegrown FF service? I hope you didn't tell your VCs that if so...

- centralized feature flag service -- we leverage across dozens of components, and use feature flags centrally on our cloud servers and on 1000's of agents installed inside our customers' locations (and on hardware that we don't own). Since LaunchDarkly uses server-sent events (SSE) this introduces no additional latency in making network calls to a central server. Changes to users and flags are sent streaming, seamlessly, behind the scenes, with minimal network impact. This key infrastructure decision that the team at LaunchDarkly made has given us confidence of using feature flags wherever we could feasibly imagine them without having any adverse impact to us or our customers. Oh, did you remember to build that into your homegrown FF solution?

- multivariate flags -- LaunchDarkly supports multivariate flags. For example, we throttle data transport for some of our remote agents. We can control this centrally so that certain agents only send back certain amounts of data (e.g. 1MB, 5MB, 10MB per batch of data sent). This actually extends the concept of FeatureFlags -- there are discrete variations within a single 'flag'. Don't forget to build that into your homegrown solution too.

- feature flag chaining -- you can specify a prerequisite for a feature flag. For example, for a rebranding of an entire website, you could have individual feature flags for each page, and then have a 'big bang' flag that does the entire thing at once. This allows you to test and manage 'micro features' but then turn on the 'major feature' easily.

- they have thought a lot about the technical debt that feature flags can introduce. How often have you added a feature flag only to not use it again or forget to remove it? It can make your code base ugly in a hurry. LaunchDarkly has analytics that help you identify usage paths as well as 'flag the flag' so you can be more conscious about what is a temporary vs permanent flag. This might not sound like much, but it prevents questions later about 'can we remove this flag' without causing impact. You've future proofed your homegrown solution to grow into this too, no doubt.

- organizational visibility and integrations with third party services -- LaunchDarkly has many integrations already built into it. For example, we use it to post to our #product channel in slack, so we can see when a new feature becomes available and when someone changes an existing flag/adds users to it. This has made communication about features much less time intensive because anyone can see the current state of a feature. You didn't really build a Slack integration or create a bot just for your homegrown feature flag service, did you?

If you think you'll eventually be in the place where what I've spoken about would be helpful, I would strongly suggest you consider a service like LaunchDarkly early in your development so that you can focus your energy on the right things and take advantage of the hard work that LD is putting into their service.

Post reply on HN