My recollection is reverse engineering is legal, but it needs to be done carefully. Using staff that designed the "thing" you are trying to reverse engineer is not part of the doing it carefully bit...
Because Wall Street executives caused the economy to collapse and only one of them got thrown in jail. Executives only end up in jail when they hurt the rich (see: Enron, Bernie Madoff)
I think ironically to the bubble many of us live in the Silicon Valley, this was proposed by a Republican and passed in the House. Never made it in the Senate. A refreshing reminder good ideas still come from all slices of our political spectrum.
Everyone hates the AMT; very roughly Democrats think it's a broken tool for addressing a real problem, and Republicans see the problem it addresses as a good thing.
I'm not sure about "a lot of startups", I'm personally only aware of a very few that are doing this. Word on the street that I hear is that maaaaybe your current employer might do this for employees they like, but not as a consistent policy. Many board members, founders, etc... feel they will take a retention hit if they were to implement something like this.
I personally think the status quo is insane, and I will never take another role with a options component of the package that does not have a policy like this.
Good for you all (not sarcastic!) but as someone who did a job search recently, the number of startups that offer this is much much closer to 0% than 100%.
A late edit: and you will get pushback for even asking. Apparently we're all supposed to pretend that we're never going to leave the company / we owe them our undying loyalty. I've previously taken the honest route when asked why I was leaving a job and said the ceo didn't deliver on her promises (growth, revenue), so why would I stay? That approach does not necessarily work well =P
> Apparently we're all supposed to pretend that we're never going to leave the company / we owe them our undying loyalty. I've previously taken the honest route when asked why I was leaving a job and said the ceo didn't deliver on her promises (growth, revenue), so why would I stay?
I mean, part of getting promoted and learning how to rise politically in your career is learning how to lie.
Why did you expect honesty to work? You have to learn how to play the game, say the right things that people want to hear.
Oh I know there are more than a few these days. My point was the majority of startups I'm aware of are still very hesitant to do this. From the conversations I've had its less that the founders of these firms are morally opposed to the idea, but that their VCs really don't like the idea as a global policy.
So just as a FYI the reason that probably happened to you is that the underlying host was failing. I am assuming they wanted to give you a window to deal with it but the host croaked before then. I've been dealing w/ AWS for a long long time and I've never seen a maintenance event go early unless the physical hardware actually died...
Operating Cassandra at the scale that Uber is going to require is going to be painful and as operationally draining as MySQL if not more.
There are really not a large number of options here anymore with the departure of FoundationDB from the market. CockroachDB might be an option in a few years, though I'm still confused why they are moving towards a SQL-ish vs key-value interface...
Pissed me off so much. Only thing close to Google's F0 RDBMS on the market, at a reasonable rate, and the beginning of a good offer to enterprises. Then, "poof!" It's a good example of why I tell companies to not put anything critical into something from a startup. If they do, better have a synchronized, backup option tested and ready to go.
"why they are moving towards a SQL-ish vs key-value interface..."
That's easy: most databases and buyers use SQL. Key-value is preferred by startups & non-critical, side projects in big companies you see here a lot but aren't representative of most of the market. Need first-rate, SQL support. I think EnterpriseDB shows that it's also a good idea to clone a market leader's features onto alternative database.
+1 to this as long as you are ok with an external vendor.
A couple of caveats. If you are coming from Nagios, this is a different worldview on monitoring. Like many other solutions commented here this is all based around metrics and their associated time series, and then you need to alert on those metrics. You ask the system questions with a time series query language.
Wavefront doesn't yet have a great solution for poll-based monitoring (i.e. hitting host Xs /healthcheck endpoint) so I still use terrible 'ol Nagios for that in my environment. However the rest of my work is all done in Wavefront - I'd say easily the high 90% of all my material alerts are done in wavefront with a small subset of work done in Nagios.
The killer feature here is the query language. I don't think there is anything else on the market that has its level of sophistication. I've had ex-Googlers on my team who "grew up" with Borgmon, which is in some sense the Ur-time series monitoring system and they loved it.
All this said, there are a lot of options about there. I have a strong bias against supporting my own complicated monitoring infrastructure. I want to focus on my own product. If you don't share that opinion or are on a super duper tight cash budget (but you do have time) than disregard the above ;)
> The killer feature here is the query language. I don't think there is anything else on the market that has its level of sophistication. I've had ex-Googlers on my team who "grew up" with Borgmon, which is in some sense the Ur-time series monitoring system and they loved it.
Prometheus is inspired by Borgmon, and has a query language that is unmatched by almost everything else I'm aware of.
Are there public docs on the semantics and features of the WaveFront language so I can compare?