Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Facebook

Why Facebook Really Shut Down Parse (medium.com) 39

New submitter isisilik writes: For those working in the 'aaS' business the Parse shutdown was the main topic of conversation this weekend. So why did Facebook decide to shut down their developer platform? The author claims that Facebook never wanted to host apps to begin with, they just wanted developers to use Facebook login. And he builds up a good case.
This discussion has been archived. No new comments can be posted.

Why Facebook Really Shut Down Parse

Comments Filter:
  • They haven't shut Parse down, they have shuttered it down [slashdot.org].

  • Is the aaS business?

    • "as a Service." Now, if someone could explain what "Facebook Login" is...
      • Using Facebook as a login screen.

        IOW: No FB account ==> no access.

        FB: The future of DRM for websites.

    • by plopez ( 54068 )

      RTFWU: "developer platform". You might also try following the handy link the poster provided. Or is clicking a link too much for you?

      • Re: (Score:2, Insightful)

        by Anonymous Coward

        Smart-ass snarky comments add little to the thread. GP post is intended to highlight the fact that the summary is deficient by dint of failing to include basic info that really belongs in the summary, and might not be know to a significant proportion of readers. Such as WTF is "aaS", or Parse, for that matter. Yes, you can follow the links, or Google it, to get said info; in fact generally on Slashdot, you've already read about it two days ago on another site. But that doesn't obviate the fact that the summ

    • by PPH ( 736903 )

      A better headline would have been: Facebook blows aaS!

  • FTFY (Score:3, Insightful)

    by Anonymous Coward on Monday February 08, 2016 @12:25PM (#51462913)

    The author claims that Facebook never wanted to host apps to begin with, they just wanted developers to use Facebook login. And he builds up a good case.

    The author tries to oversimplify a complex subject by reducing it to childish terms, using phrases such as "they never really wanted apps" and "this was their plan all along", treating a multi-billion-dollar company as if it was an individual yet again, and failing to understand that the priorities and focus of such a company might validly shift over long periods of internet time. And he builds a good case for readers who have similar cognitive biases.

    • by HiThere ( 15173 )

      While you are technically correct, people who are not invested in a company won't follow the details of internal politics...in fact those are usually hidden even from those that do, so as a short-cut technique for figuring out how much to trust a company you attend to its externally visible actions. This does require that you treat the company as an entity, and ignore the details about who decided what...but that's usually secret anyway.

      So yes, this is an invalid way to think about a company. It is, howev

  • by Anonymous Coward

    Is that they need to do actual programming, not just glue together scripts from a grab-bag of cloud services and hope they never change or shut down. Of course, you need actual programmers for this, not hipster script-kiddies.

    • Re: (Score:2, Offtopic)

      by tylersoze ( 789256 )

      Really dude? It's more of the fact it was an easy to use service that wrapped a nice API around a solved problem. I'm a mobile app developer I just want an easy to use standard REST/CRED database backend I can connect my app to save my data. I don't want to program a back end for a solved problem. The only issue with Parse was it was developed, hosted and run by another party. Obviously the best approach would be to host the service on your own servers, Facebook is thankfully making the code available to do

      • by Anrego ( 830717 ) *

        Indeed, it's pretty hard to develop software without depending on _something_. The stuff I work on is quite far removed from the web, but we depend on a whole pile of third party libraries and tools. Best you can do is abstract 3rd party stuff within the realm of practicality and accept occasionally having to migrate to something else as a cost of business.

        • by rockmuelle ( 575982 ) on Monday February 08, 2016 @01:48PM (#51463623)

          There's nothing wrong with depending on 3rd party tools and products. The problem is that most of the REST APIs that people are more and more dependent on are services, not traditional libraries.

          If a library vendor goes out of business, I still have the last copy of the library and possibly even the source code. My product can continue to function until I find a suitable replacement. This is an acceptable cost of doing business, especially since commonly used libraries rarely just disappear.

          If a service API goes down, my product is essentially bricked until I find and implement a replacement. This is one of those risks that most modern (er, young) developers don't appreciate. We haven't had a bust yet that shuts down a number of services over a relatively short period of time (hint: if you're using the service for free/at-a-cost-less-than-power-consumption or if it's not the vendor's core business, such as Parse, there's a good chance it will go away at some point). When that happens, the successful apps that relied on less successful services will be in a tough spot.

          It'd be fun to do an analysis of the various API services people use and their interdependencies. I bet we'd find a few really scary single points of failure...

          -Chris

          • People like you and me want to own the whole stack from top to bottom for reasons of long term security of our business model.

            But people willing to ride the tidal wave and risk getting the floor yanked out from underneath them (to mix metaphors) build Candy Crush and Words with Friends and so forth.
            • People like you and me want to own the whole stack from top to bottom for reasons of long term security of our business model. But people willing to ride the tidal wave and risk getting the floor yanked out from underneath them (to mix metaphors) build Candy Crush and Words with Friends and so forth.

              That is a function of your security requirements as well as cash flow. Everyone wants to own the full stack, but economics makes it hard (and in many cases, just impossible.)

              And just because there are applications that have more lax requirements than yours (assuming you actually operate on requirements and not on personal technological biases), that does not mean these applications are of the "Candy Crush" type.

          • It's more about acceptable risk in non-critical applications. If you're relying on someone else's service chances are that what you're doing isn't that critical. After all, if you can read Facebook's data, so can other people. The competitive advantage then transforms into not WHAT you have, but HOW you present it or HOW you handle the data. If you're using someone else's data that anyone else, ostensibly, has access to then your application isn't really critical to anyone anywhere. So you can feel free to
          • [ Depending on a service offering (especially a dirt cheap one) is a risk ]

            Which is why you should use layers of abstraction.

            In this example, it would be sensible to support at least two services for back-end data storage. If you want a minimal footprint, you don't even have to ship your mobile app with multiple back-ends enabled (nor the config options to choose a back-end). You'd still be in a position to more quickly provide an update if the service disappears or looks like it's about to.

          • There's nothing wrong with depending on 3rd party tools and products. The problem is that most of the REST APIs that people are more and more dependent on are services, not traditional libraries.

            If a library vendor goes out of business, I still have the last copy of the library and possibly even the source code. My product can continue to function until I find a suitable replacement. This is an acceptable cost of doing business, especially since commonly used libraries rarely just disappear.

            If a service API goes down, my product is essentially bricked until I find and implement a replacement. This is one of those risks that most modern (er, young) developers don't appreciate. We haven't had a bust yet that shuts down a number of services over a relatively short period of time (hint: if you're using the service for free/at-a-cost-less-than-power-consumption or if it's not the vendor's core business, such as Parse, there's a good chance it will go away at some point). When that happens, the successful apps that relied on less successful services will be in a tough spot.

            It'd be fun to do an analysis of the various API services people use and their interdependencies. I bet we'd find a few really scary single points of failure...

            -Chris

            That is an inherent, unavoidable risk when doing distributed computing.

      • by phantomfive ( 622387 ) on Monday February 08, 2016 @01:11PM (#51463341) Journal

        The only issue with Parse was it was developed, hosted and run by another party.

        That's actually a really big issue.
        I would hope that people would remember this in the future, but I don't have much hope since there have been many publicly documented failures of the 'cloud,' and people still think it's a good idea to depend on other people's servers.

        • There is nothing wrong to "depend on other people's servers" as long as you have a contract, an SLA in place. To depend on other people's servers is perfectly fine as long as there is an understanding on both sides what that means exactly.

          To depend on the servers of people who don't owe you anything and to who you don't owe anything either, that's a different story.

          • by HiThere ( 15173 )

            Contracts aren't necessarily worth any more than the paper they are written on. What are your enforcement powers? How expensive is it to enforce the contract? Do you trust the party that wrote the contract to honestly tell you what it means? (Do they even know?) Etc.

            Once you make yourself dependent on someone else, you are dependent on them. A contract *MAY* give you the tools to damage them somewhat if they disregard it, but that won't give you back your lost time and effort. It may well not even pa

        • The only issue with Parse was it was developed, hosted and run by another party.

          That's actually a really big issue. I would hope that people would remember this in the future, but I don't have much hope since there have been many publicly documented failures of the 'cloud,' and people still think it's a good idea to depend on other people's servers.

          Only if you do not have an enforceable SLA. And if you are big enough, chances are your systems are running in whole or in part in an external data center... with an SLA.

          I mean, if you have a non-trivial presence, chances are you depend on Akamai CDN for performance and DoS protection, Google or Akamai analytics for, well, analytics. So right there, you have a set of vital functional requirements being performed on someone else's infrastructure, the failure of which can cause terrible financial harm to yo

          • True, true.

            But if you don't have the ability to migrate quickly from Akamai, you're still screwed. Maybe not today, but someday. So don't depend on them too much.
    • Is that they need to do actual programming, not just glue together scripts from a grab-bag of cloud services and hope they never change or shut down. Of course, you need actual programmers for this, not hipster script-kiddies.

      You are oversimplifying. Though it is true that the developer's world is infected by script kiddies, there is a legitimate place for integration-centric glue code. Parse, or something like it would fit that bill. More precisely, if one has a sufficiently good back-end made available as a service, then why not leverage it?

      Obviously there are issues in such an approach, but so is with everything. Engineering is about trade-offs - cost, security, availability, etc. I can roll my own back-end, but then I coul

What is research but a blind date with knowledge? -- Will Harvey

Working...