> "Most applications today run on a database technology that was introduced in the 1970s," Ittycheria said. "In the '70s, I was using a rotary phone to have a phone conversation. So people are looking for a modern, scalable and flexible platform." It's like a weird version of the Turing test where you have to decide whether someone's speaking seriously or in jest when they talk about NoSQL. https://www.youtube.com/wa…
Most vehicles are rolling around on technology that was invented 10000 years ago. (Is that the same idea?)
MongoDB shares jump more than 30% in $192M IPO
151–160 of 425 posts
Re: MongoDB shares jump more than 30% in $192M IPO
#152Earlier quoted context omitted.
> RDBMS makes sense for most applications. But "applications" are built by development teams. So: Does an "RDBMS makes sense for most applications"?
Could you point to a definition of "application" that has the word "team" in it?
Re: MongoDB shares jump more than 30% in $192M IPO
#153> "Most applications today run on a database technology that was introduced in the 1970s," Ittycheria said. "In the '70s, I was using a rotary phone to have a phone conversation. So people are looking for a modern, scalable and flexible platform." It's like a weird version of the Turing test where you have to decide whether someone's speaking seriously or in jest when they talk about NoSQL. https://www.youtube.com/wa…
I'm continuously amazed when I hear about mongodb in use. Not over say postgres, I get that there are nosql advantages, but over literally any other nosql option. https://en.wikipedia.org/wiki/Poe%27s_law is the term you're looking for...
Re: MongoDB shares jump more than 30% in $192M IPO
#154Earlier quoted context omitted.
Sure. The most direct argument against that is that Postgresql jsonb is just non-relational data support in a first class relational DB, which is pretty great, so to an extend you get the best of both worlds, though I'm sure you can find a case where it's not quite optimal vs some nosql db. This talk is a pretty nifty perf overview: https://www.percona.com/live/e17/sessions/high-performance-j... That said, if you kno…
PostgreSQL JSONB doesn't have a dedicated driver though i.e. you can't do partial updates via the JDBC/ODBC drivers. Which means you can't use it for any big data/analytics use cases. MongoDB has fantastic client libraries e.g. Spark, Java.
Re: MongoDB shares jump more than 30% in $192M IPO
#155Re: MongoDB shares jump more than 30% in $192M IPO
#156Is it me..or does Mongo not seem as relevent and 'hip' as it once was... I mean I feel postgres is much more solid, and you can combine some of the aspects of document store via the json data types they added... of course I'm not really a DBA and don't have a lot of Mongo experience ... but personally I feel rdbms make more sense for growth/scaling..
Mongo is no longer as "hip", but it is slowly breaking into the enterprise as people learn the right use cases for it.
Re: MongoDB shares jump more than 30% in $192M IPO
#157Re: MongoDB shares jump more than 30% in $192M IPO
#158Technology aside, how's their financial status now that they have IPO'ed? Does it seem like a good investment?
Re: MongoDB shares jump more than 30% in $192M IPO
#159Earlier quoted context omitted.
They only guarantee consistency as long as you don't use them over a network, i.e. communications with the database are always reliable. But once you do use them over a network - CAP theorem comes in and forces you to either use something like two-phase commit or no promises of consistency. Which is the opposite of what his post implied, like there is CAP consistency with those databases. But there never was! Althoug…
Proper RDMS databases have two phase commit with transactions.....