Slashdot Mirror


Northeastern University Sues Google Over Patent

kihbord writes to mention that Boston's Northeastern University and Waltham, Mass. based company Jarg have brought suit against Google for apparently infringing on a distributed database system developed by Kenneth Baclawski. "The patent describes a distributed database system that breaks search queries into fragments and distributes them to multiple computers in a network to get faster results. The patent was assigned to Northeastern University, which licensed it exclusively to Jarg, according to the lawsuit, filed last Tuesday with the U.S. District Court for the Eastern District of Texas."

17 of 159 comments (clear)

  1. Solution in the last Slashdot story? by ErikTheRed · · Score: 3, Funny

    Too bad we can't apply the Stupid Filter to the patent system.

    --

    Help save the critically endangered Blue Iguana
  2. Bayh-Dole strikes again by GrEp · · Score: 3, Informative

    It looks like Bayh-Dole strikes again: http://en.wikipedia.org/wiki/Bayh-Dole_Act .

    --

    bash-2.04$
    bash-2.04$yes "Don't you hate dialup connections?"| write USERNAME
  3. Patent In Question & University Patent Portfol by eldavojohn · · Score: 4, Informative
    A a link to the patent, according to the article with the description:

    A distributed computer database system including a front end computer and a plurality of computer nodes interconnected by a network into a search engine. A query from a user is transmitted to the front end computer which forwards the query to one of the computer nodes, termed the home node, of the search engine. The home node fragments the query and hashes the fragments of query to create an index by which the hashed query fragments are transmitted to one or more nodes on the network. Each node on the network which receives a hashed fragment uses the fragment of the query to perform a search on its respective database. The results of the searches of the local databases are then gathered by the home node. However, I submitted this story yesterday and found a list of patents by that professor with that company and suspected a more interesting patent. From that description:

    A distributed computer database system connected to a network, e.g., the Internet or on an intranet, indexes interests of agents that have registered with the system, examines information objects, for example, that reside on the network, and, responsive to a match with the registered agents' interests, specifies to the agents the relevant information objects. It's your decision whether or not he's a patent troll but that professor seems to have many patents. I fear that the future only holds more and more patents being acquired by professors. I do not think this was the norm 10 years ago but my professor at George Mason University gave me a very frank lecture one day that essentially spelled out that the university rewards them for these things and the university is building a portfolio. What the states pay a professor is not much compared to what they could be earning in the field so he really has no choice.

    I congratulated him on the several patents he just acquired. Although I can't say I was very happy about his recent moves.
    --
    My work here is dung.
  4. Prior art (?) by geophile · · Score: 4, Informative

    Breaking a query into pieces and evaluating them at nodes containing a subset of the database has been written about since the 1970s. I read about it in grad school back then. Whether that's actually the thing actually patented by jarg is an entirely separate question. If it is, the PTO has screwed up once again. If it isn't, then perhaps there is a deeper similarity that TFA isn't describing.

  5. Re:University with Patents? by drhamad · · Score: 3, Informative

    Most major universities control massive patent/IP portfolios... see the CalTech or BU for major examples. Universities are corporations, nothing more or less. The research done there is assigned to the corporation/school.

    --
    -Daniel
  6. Dont be so quick to shout troll by quo_vadis · · Score: 3, Informative

    I know the initial urge of a small company suing a larger one (especially a darling of slashdot such as Google) will have a lot of people yelling patent troll, but this may not be the case. The fact that this is a company from a university professor means that the company very likely has a working product that has been derived from several years worth of research. To those who are not used to the American system of research at the university level (for Professors and PhDs), any researcher can apply for a patent on the research they have been doing in the lab. The patent is usually issued in the name of the university or jointly in the name of the researcher and the university. There is usually an exclusive licencee for the patent. This forces the university to allow the researcher to have first dibs on licensing the technology he worked on exclusively to some company he decides. This is done as university's usually take anywhere from 50-75% of all royalties generated by the patent as research was done on university property. Thus many profs usually spin off companies and sit on the board of directors for the company and earn a supplementary income this way.

    So , heres how it works :
    1. Do research on some area.
    2. Get funding from $Federal Agency of choice
    3. Make a few students get PhD's doing research on this topic
    4. Go to the office of tech licensing on campus and draw up patent
    4.a Make sure the exclusive license clause is in the patent
    5. ??? -> Form company and sit on board of directors
    6. Profit.

    --
    Legally obligatory sig : My opinions are my own... etc etc
  7. Re:Just another patent troll... by EvilRyry · · Score: 3, Informative

    Not quite. The patent was for splitting a single query into multiple chunks. In the case of a DNS server, a single DNS server gives you a reply. For round robin; same thing, one request from one client, one reply from one server.

    The patent was for taking a single request, breaking it up into subrequests, then distributing the subrequests amongst multiple servers and then gluing the results back together.

    So to make the required car analogy, its like taking a shopping list, breaking it up by area of town that the store is in, then deploying a separate car to each area and meeting back at home.

  8. Re:We need a solution to the madness by Talez · · Score: 4, Insightful

    If a north eastern company has to sue a north western company in a Texas court because they're more friendly to patent litigation then you're dealing with a patent troll.

  9. Prior Art? by CustomDesigned · · Score: 4, Interesting

    We had a system in our office in 1985 that distributed records for each table to N processors via a hash function, where N could be a large as you liked. Queries were sent to all nodes and run in parallel, and the results combined (since SQL is set based, this works perfectly). Queries on any size database could be made arbitrarily fast by adding more nodes. The only bottle neck was the band width to the control processor and any order by clauses, which was proportional to the result set size, not the database size.

    1. Re:Prior Art? by yorugua · · Score: 3, Interesting

      Well, TFA mentions Dec 7 1997 as "the day". In 1996, I worked in a project which involves Oracle Parallel Server on a RS/6000 SP2 parallel system. OPS used "I/O shipping" to send to several nodes the I/O request for a given query, and used the VSD subsystem for doing that (VSD stands for Virtual Shared Disk. The disk were attached to several SP2 nodes, which did the actual I/O while the many OPS nodes all saw the complete database as directly connected to it). Back then, 1996, the other "standard" of doing the parallel-database-thing was called "function shipping", in which not the IO, but the query was split among the nodes that had the tables and/or data involved. Of course, in both cases, all the nodes were networked using the SP2 switch in order to have huge bandwidht and low latency. Sounds familiar...

  10. Re:Lawyers Troll the Patent Office? by DustyShadow · · Score: 3, Insightful

    It is very rare to find a law firm to take a patent case on a contingency basis. The cases take an enormous amount of time and resources and are too risky for contingencies.

  11. Too quick to dismiss Northeastern as a troll by The+Empiricist · · Score: 5, Interesting

    The /. posts labeling Northeastern University as a patent troll or claiming that the patent should not have issued have been posted too quickly to be credible assessments of the morality of this suit and the worthiness of the patent. The current Wikipedia definition is that a patent troll is "a person or company that enforces its patents against one or more alleged infringers in a manner considered unduly aggressive or opportunistic." If the patent was obtained through lawful and ethical means, is valid, and is infringed on by Google, then how is it "unduly aggressive or opportunistic" for Northeastern University to enforce the patent?

    Some argue that a patent troll is merely a person or company that seeks to enforce a patent but does not practice the patent. Maybe Northeastern University is not practicing the patent. Then again, the mission of most universities seems to be conducting research, not applying and commercializing research. Licensing research to companies that can and will apply and commercialize that research is one way that universities fund additional research. Maybe universities should have to give all of their research away for free. But currently they do not. And it seems unfair to fault Northeastern for exercising its rights while not pushing the scope of its mission.

    Given how quickly Northeastern was accused of being a patent troll, and given that there was no discussion about the proper role of universities or any real analysis of the worthiness of the patent (which was filed in 1994...almost 4 years before Google was founded), it seems likely that some people consider a patent troll to be any person who tries to enforce any patent rights.

    Maybe Northeastern is acting like a patent troll. And maybe their patent is worthless. But it takes more than a quick glance at the 20-page issued patent or the 6-page complaint against Google to come up with a reasonable assessment of these issues.

    Some analysis of the complaint would at least show that it doesn't look like Northeastern really knows the details of Google's search infrastructure:

    13. A part of its search engine services, Google uses one or more hashing algorithms.
    14. As part of its search engine services, Google returns search results responsive to user queries.
    ...
    16. Google maintains and operators clusters of networked computers to provide search engine services to users.
    ...
    26. Google has directly and/or indirectly infringed on one or more claims of the '593 patent, and Google is continuing such infringement by practicing or causing others to practice one or more of the inventions claimed in the '593 patent. For example, Google makes, uses, imports, sells and/or offers for sale search engine services and systems that infringe or that are used in ways that infringe one or more claims of the '593 patent in this district and elsewhere in the United States.

    Then again, Google's code is not open to the world. If it was, more detailed analysis would be possible. How can Northeastern try to get access to the code? By suing and demanding it as part of discovery. Does this make Northeastern a patent troll? Maybe. But the alternative (aside from discarding the patent system altogether, at least for software innovations) is a system that rewards patent infringers who keep their source code inaccessible to patent holders.

  12. Re:Interesting Dates by bstone · · Score: 4, Interesting

    Aside from obviousness, the idea has been around forever. nCube built a business around it in the early 80's.

  13. Re:Former student by Curze · · Score: 3, Interesting

    I am a recent former student, and my experience is quite opposite of yours. Prof Baclawski, besides having the added benefit of speaking English natively, was an excellent teacher both for myself and the handful of others in my class that I spoke with regularly. He usually referenced "back in the day" stories, but in a humorous way that lead into the subject at hand, and I ended up learning more than most in that class. Also rediculously apparent was his apathy for monetary compensation, he just wanted to teach and research new things, hell the guy wore the same damn dirty coat for the 5 years I was there! The move on google is most likely a move by the NU corp, as they are bloodthirsty when it comes to money, just look at tution costs of NU.http://www.neu.edu/admissions/costs/tuition.html

  14. Re:Patent In Question & University Patent Port by Ash+Vince · · Score: 3, Insightful

    One of the interesting things I've noticed over the past 10+ years of working in IT is that more and more companies are asking questions like "How many patents do you have?" on job applications. But the answer will almost always be zero as the patents would be owned by whoever was paying you when you came up with the idea. Even if you come up with the idea while studying it will just be the uni that owns it.

    The fact is that the patent system has long been designed so that you need money to enjoy its protection, people who are unemployed very rarely have enough money to file a patent and most contracts of employment sign any patent rights over to your employer.
    --
    I dont read /. to RTFA, I read /. to offend people in ignorance.
  15. Re:We need a solution to the madness by Talez · · Score: 5, Insightful

    They have no competing product, they're hiring lawyers on a contingency basis, they're filing in the United States District Court for the Eastern District of Texas based on the most stretched association with that venue and they've demanded a jury trial and an injunction up front. They're basically trying to force Google to make the suit go away and they're just rolling the dice to see if they get lucky.

    Looks like a patent troll, sounds like a patent troll, smells like a patent troll. They're not going to be able to claim damages for lost profits. The only difference between these people and a typical dedicated patent troll IP firm is that they don't employ their own lawyers and they make some shitty, unrelated product that really has no relevance to this case.

  16. Re:We need a solution to the madness by Duhavid · · Score: 4, Insightful

    "Reality is that there's a lot of things that are "obvious" in hindsight ""

    Dividing the search up among multiple machines if one
    machine is not enough is pretty obvious. And not just
    in hindsight.

    "but who gets to say so?"

    I see the problem, but I don't think we should allow that
    as an excuse for such things.

    --
    emt 377 emt 4