Some embodiments of the present invention relate generally to data modeling using computer systems, and more particularly, to a methodology for reindexing a database in a live environment.
The approaches described in this section could be pursued, but are not necessarily approaches that have been previously conceived or pursued. Therefore, unless otherwise indicated herein, the approaches described in this section are not prior art to the claims in this application and are not admitted to be prior art by inclusion in this section.
Computers are powerful tools for accessing and storing vast amounts of information. Computer databases are a common mechanism for storing information on computer systems. Databases can take many different forms. One typical database is a collection of tables having rows and columns of information. For example, a database table of employees may have a row for each employee, and the columns designating specifics about the employee, such as the employee's name, address, salary, etc.
One important aspect of databases is the speed at which they are able to retrieve information. The faster a given database is able to perform a search or retrieve requested information, the better user experience a user of the database will have. One way to improve the speed of a database is to create an index. Generally, an index is a data structure that improves the speed of retrieving data from the database at the cost of additional storage space. Improved methods relating to indexes may result in better searches, and are always needed.
In the drawings:
In the following description, for the purposes of explanation, numerous specific details are set forth in order to provide a thorough understanding of the present invention. It will be apparent, however, that the present invention may be practiced without these specific details. In other instances, well-known structures and devices are shown in block diagram form in order to avoid unnecessarily obscuring the present invention.
Techniques are provided for reindexing a database in a live environment. Specifically, in one embodiment, a dispatch server receives a request to reindex a database. At the time the request to reindex is received, the dispatch server is configured to send queries for information in the database to a first index server, the first index server comprising a first index of information in the database. In response to receiving the request to reindex and while the database is live, a second index of the information in the database is generated. The second index is stored at a second index server. The dispatch server is then configured to use the second index server as a live index server and to no longer use the first index server as a live index server.
System 100 includes dispatch server 105, server application 110, database 115, client device 120, index server1125, index server 1A 130, index server2135, and index server 2A 140. Dispatch server 105 may be any kind of computing device including, but not limited to: servers, racks, work stations, personal computers, general purpose computers, laptops, Internet appliances, hand-held devices, wireless devices, wired devices, portable or mobile devices, wearable computers, cellular or mobile phones, portable digital assistants (PDAs), smart phones, tablets, multi-processor systems, microprocessor-based or programmable consumer electronics, game consoles, set-top boxes, network PCs, mini-computers, and the like. Dispatch server 105 is communicatively connected, using wired and/or wireless connections, to database 115, client device 120, index server1125, index server 1A 130, index server2135, and index server 2A 140. Although a single dispatch server 105 is shown in
In one embodiment, server application 110 includes programming to access database 115, handle requests, generate indexes, and/or other actions related to database 115. Server application 110 may access database 115 in any suitable manner, such as using a database connector. Server application 110 includes programming to send requests to search and/or index servers, such as index server1125 and/or index server2135. The requests may be search requests from client devices for information that is locatable using the index server(s). The requests may be transparent to any client devices. In other words, the client device is not aware of where or how server application 110 obtains the answer to a request or query.
In one embodiment, server application 110 includes programming to reindex a live database by generating a new index. Server application 110 may receive a request to reindex a live database in any suitable manner. Once received, server application 110 queries the database and generates a new index. Preferably, because the database is live, the new index is generated slowly, to minimize any impact on database performance. For example, the request to generate a new index may specify a batch size and thread count. The batch size defines the size of blocks of data to be retrieved from the database, while the thread count refers to a number of processors or cores assigned to the process. Continuing the example, a batch size of 1000 and a thread count of 4 may not impact a database in a noticeable way, but will still allow a new index to be generated over time. Optionally, server application 110 may determine the batch size and/or thread count based on any suitable factors, such as available server and/or database capacity. Further, server application 110 may dynamically vary the batch size and/or thread count. Thus, for example, the batch size and thread count may increase at night, when fewer users are requesting information from the database. Regardless of the batch size and/or thread count, server application 110 iterates through all of the information in database 115. However, because the database is live, a complete iteration may not be possible until dispatch server is quiesced, as discussed below.
In one embodiment, server application 110 includes programming to save the newly generated index at a “shadow” index server. A shadow index server is not a live server. In other words, no search requests are sent to a shadow index server. Index servers, both live and shadow, are discussed in more detail below. Server application 110 may save a newly generated index as the new index is generated by one or more threads processing the information in the database that is being reindexed. Server application 110 may store the new index in any suitable manner or format. For example, rather than storing the new index in memory, and thereby occupying a potentially large amount of server capacity, server application 110 may store the new index in a commit log. Then, when the new index is ready for use, a server may read the commit log and generate an in memory representation of the new index based on the content of the commit log.
In one embodiment, server application 110 includes programming to quiesce, or pause, the dispatch server 105. While the dispatch server is quiesced, no information will be added to database 115, and server application 110 is able to complete the generation of a new index, such as by completing iteration though the information in database 115. Once the generation of a new index is completed, server application 110 reconfigures dispatch server 105 to send future search requests to the new index, thereby replacing the “old” live index server with a new index server (i.e., the shadow index server) featuring the newly generated index. Once reconfigured, server application 110 returns dispatch server 105 to a live state, and all new search requests will subsequently be directed to a live index server with the newly generated index.
In one embodiment, database 115 is any suitable storage device such as one or more hard disk drives, memories, or any other electronic digital data recording device configured to store data. Although database 115 is depicted as a single device in
In one embodiment, database 115 is managed by a database management system (not shown). The database management system may be implemented by any one of a variety of different database management systems and embodiments of the invention are not limited to any particular database management system. For example, the database management system may be implemented by a conventional relational database management system (RDBMS). Alternatively, as another example, the database management system may be implemented using a “NoSQL” database management system or other database management system that differs from a traditional RDBMS in one or more respects. In one particular non-limiting embodiment, the database management system is implemented using a version of the Apache HBase database management system. In one embodiment, database 115 may be embodied as a collection of one or more file system files. For example, database 115 may be embodied as a collection of one or more files of an operating system. Alternatively, database 115 may be a file system itself. For example, database 115 may be a distributed file system such as, for example, the Apache Hadoop Distributed File System (HDFS).
In one embodiment, database 115 organizes data in a structure that is described using an ontology, embodied in a database schema, comprising a data model that is used to represent the structure and reason about objects in the structure. The ontology may define one or more object types, and each object type may have one or more properties. Optionally, the ontology is able to be changed by a user or administrator, and may be a reason for reindexing.
In one embodiment, client device 120 may be any kind of computing device including, but not limited to: work stations, personal computers, general purpose computers, laptops, Internet appliances, hand-held devices, wireless devices, wired devices, portable or mobile devices, wearable computers, cellular or mobile phones, portable digital assistants (PDAs), smart phones, tablets, multi-processor systems, microprocessor-based or programmable consumer electronics, game consoles, set-top boxes, network PCs, mini-computers, and the like. Although a single client device 120 is shown in
In one embodiment, the index servers (e.g., index server1125, index server 1A 130, index server 2, 135, and index server 2A 140) may be any computing and/or storage device(s) including, but not limited to: servers, racks, work stations, personal computers, general purpose computers, laptops, Internet appliances, hand-held devices, wireless devices, wired devices, portable or mobile devices, wearable computers, cellular or mobile phones, portable digital assistants (PDAs), smart phones, tablets, multi-processor systems, microprocessor-based or programmable consumer electronics, game consoles, set-top boxes, network PCs, mini-computers, and the like. The index servers (e.g., index server1125, index server 1A 130, index server 2, 135, and index server 2A 140) may be located on one or more separate devices, on a single device, or some combination thereof.
In one embodiment, index server1125 and index server2135 are live index servers that include programming to respond to search requests from dispatch server 105. Index server 1125 and index server2135 may be any type of indexes. Specifically, index server1125 and index server2135 may each by a different type of index, with different strengths and weaknesses. For example, index server1125 may be a search server that is optimized for searching text whether the text is structured or unstructured, such as full text searches. Specifically, index server1125 may be an inverted index. Continuing the example, index server2135 may be a horizon server optimized for searching objects, locations, and/or other types of information. Specifically, index server2135 may be an in-memory column store. However, index server1125 and index server2135 may each be any type of index optimized for any type of search. In one embodiment, index server1125 and index server2135 may be different shards of the same index, and therefore may be optimized for the same type of searches.
As indicated by the dotted lines, index server1A 130 and index server 2A 140 are secondary, or “shadow,” index servers that do not receive live search requests from dispatch server 105. Rather, index server 1A 130 and index server 2A 140 include a second, or new, index of their corresponding “live” index server. The second, or new, index may be partial or otherwise is in the process of being created. Once the second index is completed, index server 1A 130 and/or index server 2A 140 may be switched from a “shadow” state to a “live” state (such as by dispatch server 105 directing searches to index server 1A 130 and/or index server 2A 140, etc.), effectively replacing the corresponding live index servers (i.e., index server1125 and index server2135, respectively), and begin to respond to search requests from dispatch server 105 using the new index. Alternatively, rather than reconfiguring the shadow index servers to be live index servers, the newly generated index may be copied over to the live index server, and replace the “old” index, thereby removing the need to send subsequent requests to a different server.
In step 205, a request to reindex a database is received. The request may be received in any suitable manner and/or format. Specifically, the request is received from an administrator or other user of the database, and may contain specific instructions, such as a specified batch size and/or thread count to use when generating the new index. Alternatively, the request may be received from another process or other suitable source, and/or may not contain a specified batch size and/or thread count. In one embodiment, the request may be the result of defining a new ontology for the database, changing the number of shards in an index server, or any other suitable reason. In the event that the reindex request is based on a new ontology, the new ontology may be included in the request.
In step 210, a second index for the database is generated. Specifically, the second index for the database is generated while the database is live and servicing real requests from client devices. The second index may be generated, for example, by iterating through the information stored in the database, and processing the data to generate the second index. The second index, while containing the same or highly similar information to the “original” index, may be organized or structured in a different manner, such as by using a new ontology, or distributing the stored information across a different number of shards.
In step 215, the second index is stored at a second index server. The second index may be stored in any suitable manner. In one embodiment, the second index is stored in a commit log, to minimize use of server resources. Then, when the second index is completed, the second index server can use the commit log to generate an in memory representation of the second index. Alternatively, the second index may initially be stored in memory, or in any other suitable location, instead of in a commit log. While the second index is being stored at the second index server, the second index server is not live. In other words, the second index server will not and does not receive live search requests until, for example, step 235.
In step 220, the dispatch server is quiesced. The dispatch server may be quiesced, or paused, in any suitable manner. For example, the dispatch server may store any received requests in a buffer for later response, or may simply ignore all requests received while quiesced. By quiescing the dispatch server, the database will be able to maintain a steady state, allowing the generation of the second index to complete.
In step 225, generation of the second index is completed. The generation may be completed in any suitable manner. For example, the generation of the second index may be completed by finishing iterating through all of the information in the database, and subsequently storing the now completed second index at the second index server.
In step 230, the dispatch server is configured to use the second index server as a live index server. In response to the completion of the second index, or at any other time after the completion of the second index, the dispatch server is reconfigured to use the second index server as the live index server. In other words, search requests will now be sent to the second index server, and responded to using the new second index, instead of the first “original” index server. Alternatively, rather than reconfigure the dispatch server to use the second index server as a live index server, the newly generated second index may instead be copied over to the “original” index server, where the second index will replace the “original” index. Thus, the “original” index server will be updated with the second index, and reconfiguring the dispatch server to send requests to the second index server would be unnecessary.
In step 235, the dispatch server is returned to a live state. The dispatch server may be returned to a live state in any suitable manner. Once returned to a live state, the dispatch server will begin sending search requests to the second index server, which will return results based on the second index. Alternatively, as discussed in step 230, the dispatch server may still send search requests to the “original” index server in the embodiment where the second index is copied over to the “original” index server.
In
In
Eventually, reindex process 320 determines that for the generation of the new index to complete, dispatch server 300 needs to be quiesced. In response, reindex process 320 quiesces dispatch server 300, thereby temporarily halting any changes to database 305, and allowing the reindex process to complete. Subsequently, once the completed new index has been stored on new index server 315, reindex process, or an administrator or other user, reconfigures dispatch server 300 to use new index server 315 as the live index server. After the reconfiguration, the dispatch server 300 is returned to a live state, and the example continues in
According to one embodiment, the techniques described herein are implemented by one or more special-purpose computing devices. The special-purpose computing devices may be hard-wired to perform the techniques, or may include digital electronic devices such as one or more application-specific integrated circuits (ASICs) or field programmable gate arrays (FPGAs) that are persistently programmed to perform the techniques, or may include one or more general purpose hardware processors programmed to perform the techniques pursuant to program instructions in firmware, memory, other storage, or a combination. Such special-purpose computing devices may also combine custom hard-wired logic, ASICs, or FPGAs with custom programming to accomplish the techniques. The special-purpose computing devices may be desktop computer systems, portable computer systems, handheld devices, networking devices or any other device that incorporates hard-wired and/or program logic to implement the techniques.
For example,
Computer system 400 also includes a main memory 406, such as a random access memory (RAM) or other dynamic storage device, coupled to bus 402 for storing information and instructions to be executed by processor 404. Main memory 406 also may be used for storing temporary variables or other intermediate information during execution of instructions to be executed by processor 404. Such instructions, when stored in non-transitory storage media accessible to processor 404, render computer system 400 into a special-purpose machine that is customized to perform the operations specified in the instructions.
Computer system 400 further includes a read only memory (ROM) 408 or other static storage device coupled to bus 402 for storing static information and instructions for processor 404. A storage device 410, such as a magnetic disk or optical disk, is provided and coupled to bus 402 for storing information and instructions.
Computer system 400 may be coupled via bus 402 to a display 412, such as a cathode ray tube (CRT), for displaying information to a computer user. An input device 414, including alphanumeric and other keys, is coupled to bus 402 for communicating information and command selections to processor 404. Another type of user input device is cursor control 416, such as a mouse, a trackball, or cursor direction keys for communicating direction information and command selections to processor 404 and for controlling cursor movement on display 412. This input device typically has two degrees of freedom in two axes, a first axis (e.g., x) and a second axis (e.g., y), that allows the device to specify positions in a plane.
Computer system 400 may implement the techniques described herein using customized hard-wired logic, one or more ASICs or FPGAs, firmware and/or program logic which in combination with the computer system causes or programs computer system 400 to be a special-purpose machine. According to one embodiment, the techniques herein are performed by computer system 400 in response to processor 404 executing one or more sequences of one or more instructions contained in main memory 406. Such instructions may be read into main memory 406 from another storage medium, such as storage device 410. Execution of the sequences of instructions contained in main memory 406 causes processor 404 to perform the process steps described herein. In alternative embodiments, hard-wired circuitry may be used in place of or in combination with software instructions.
The term “storage media” as used herein refers to any non-transitory media that store data and/or instructions that cause a machine to operation in a specific fashion. Such storage media may comprise non-volatile media and/or volatile media. Non-volatile media includes, for example, optical or magnetic disks, such as storage device 410. Volatile media includes dynamic memory, such as main memory 406. Common forms of storage media include, for example, a floppy disk, a flexible disk, hard disk, solid state drive, magnetic tape, or any other magnetic data storage medium, a CD-ROM, any other optical data storage medium, any physical medium with patterns of holes, a RAM, a PROM, and EPROM, a FLASH-EPROM, NVRAM, any other memory chip or cartridge.
Storage media is distinct from but may be used in conjunction with transmission media. Transmission media participates in transferring information between storage media. For example, transmission media includes coaxial cables, copper wire and fiber optics, including the wires that comprise bus 402. Transmission media can also take the form of acoustic or light waves, such as those generated during radio-wave and infra-red data communications.
Various forms of media may be involved in carrying one or more sequences of one or more instructions to processor 404 for execution. For example, the instructions may initially be carried on a magnetic disk or solid state drive of a remote computer. The remote computer can load the instructions into its dynamic memory and send the instructions over a telephone line using a modem. A modem local to computer system 400 can receive the data on the telephone line and use an infra-red transmitter to convert the data to an infra-red signal. An infra-red detector can receive the data carried in the infra-red signal and appropriate circuitry can place the data on bus 402. Bus 402 carries the data to main memory 406, from which processor 404 retrieves and executes the instructions. The instructions received by main memory 406 may optionally be stored on storage device 410 either before or after execution by processor 404.
Computer system 400 also includes a communication interface 418 coupled to bus 402. Communication interface 418 provides a two-way data communication coupling to a network link 420 that is connected to a local network 422. For example, communication interface 418 may be an integrated services digital network (ISDN) card, cable modem, satellite modem, or a modem to provide a data communication connection to a corresponding type of telephone line. As another example, communication interface 418 may be a local area network (LAN) card to provide a data communication connection to a compatible LAN. Wireless links may also be implemented. In any such implementation, communication interface 418 sends and receives electrical, electromagnetic or optical signals that carry digital data streams representing various types of information.
Network link 420 typically provides data communication through one or more networks to other data devices. For example, network link 420 may provide a connection through local network 422 to a host computer 424 or to data equipment operated by an Internet Service Provider (ISP) 426. ISP 426 in turn provides data communication services through the world wide packet data communication network now commonly referred to as the “Internet” 428. Local network 422 and Internet 428 both use electrical, electromagnetic or optical signals that carry digital data streams. The signals through the various networks and the signals on network link 420 and through communication interface 418, which carry the digital data to and from computer system 400, are example forms of transmission media.
Computer system 400 can send messages and receive data, including program code, through the network(s), network link 420 and communication interface 418. In the Internet example, a server 430 might transmit a requested code for an application program through Internet 428, ISP 426, local network 422 and communication interface 418.
The received code may be executed by processor 404 as it is received, and/or stored in storage device 410, or other non-volatile storage for later execution.
In the foregoing specification, embodiments of the invention have been described with reference to numerous specific details that may vary from implementation to implementation. The specification and drawings are, accordingly, to be regarded in an illustrative rather than a restrictive sense. The sole and exclusive indicator of the scope of the invention, and what is intended by the applicants to be the scope of the invention, is the literal and equivalent scope of the set of claims that issue from this application, in the specific form in which such claims issue, including any subsequent correction.
This application claims the benefit 35 U.S.C. § 120 as a continuation of application Ser. No. 14/837,951, filed Aug. 27, 2015, the entire contents of which are hereby incorporated by reference for all purposes as if fully set forth herein. The applicants hereby rescind any disclaimer of claim scope in the priority applications or the prosecution history thereof and advise the USPTO that the claims in this application may be broader than any claim in the priority applications.
Number | Name | Date | Kind |
---|---|---|---|
5724575 | Hoover et al. | Mar 1998 | A |
5872973 | Mitchell et al. | Feb 1999 | A |
5897636 | Kaeser | Apr 1999 | A |
6073129 | Levine et al. | Jun 2000 | A |
6161098 | Wallman | Dec 2000 | A |
6243717 | Gordon et al. | Jun 2001 | B1 |
6304873 | Klein et al. | Oct 2001 | B1 |
6366933 | Ball et al. | Apr 2002 | B1 |
6418438 | Campbell | Jul 2002 | B1 |
6510504 | Satyanarayana | Jan 2003 | B2 |
6560620 | Ching | May 2003 | B1 |
6574635 | Stauber et al. | Jun 2003 | B2 |
6745382 | Zothner | Jun 2004 | B1 |
6976210 | Silva et al. | Dec 2005 | B1 |
7058648 | Lightfoot et al. | Jun 2006 | B1 |
7111231 | Huck et al. | Sep 2006 | B1 |
7461158 | Rider et al. | Dec 2008 | B2 |
7725530 | Sah et al. | May 2010 | B2 |
7725728 | Ama et al. | May 2010 | B2 |
7730082 | Sah et al. | Jun 2010 | B2 |
7730109 | Rohrs et al. | Jun 2010 | B2 |
7962495 | Jain et al. | Jun 2011 | B2 |
8041714 | Aymeloglu et al. | Oct 2011 | B2 |
8112425 | Baum et al. | Feb 2012 | B2 |
8126848 | Wagner | Feb 2012 | B2 |
8185819 | Sah et al. | May 2012 | B2 |
8443013 | Lin | May 2013 | B1 |
8504542 | Chang et al. | Aug 2013 | B2 |
8676857 | Adams et al. | Mar 2014 | B1 |
8719225 | Rath | May 2014 | B1 |
8930331 | McGrew et al. | Jan 2015 | B2 |
9037825 | Donlan | May 2015 | B1 |
9043696 | Meiklejohn et al. | May 2015 | B1 |
9053167 | Swift | Jun 2015 | B1 |
9116975 | Shankar et al. | Aug 2015 | B2 |
20010051949 | Carey et al. | Dec 2001 | A1 |
20020091694 | Hrle et al. | Jul 2002 | A1 |
20030105759 | Bess et al. | Jun 2003 | A1 |
20030115481 | Baird et al. | Jun 2003 | A1 |
20030120675 | Stauber et al. | Jun 2003 | A1 |
20030212718 | Tester | Nov 2003 | A1 |
20030225755 | Iwayama et al. | Dec 2003 | A1 |
20030229848 | Arend et al. | Dec 2003 | A1 |
20040111410 | Burgoon et al. | Jun 2004 | A1 |
20040117345 | Bamford et al. | Jun 2004 | A1 |
20040117387 | Civetta et al. | Jun 2004 | A1 |
20040148301 | McKay et al. | Jul 2004 | A1 |
20040225865 | Cox | Nov 2004 | A1 |
20050097441 | Herbach et al. | May 2005 | A1 |
20050108231 | Findleton et al. | May 2005 | A1 |
20050114763 | Nonomura et al. | May 2005 | A1 |
20050289524 | McGinnes | Dec 2005 | A1 |
20060074881 | Vembu et al. | Apr 2006 | A1 |
20060080316 | Gilmore et al. | Apr 2006 | A1 |
20060116991 | Calderwood | Jun 2006 | A1 |
20060161558 | Tamma et al. | Jul 2006 | A1 |
20060218206 | Bourbonnais et al. | Sep 2006 | A1 |
20060218491 | Grossman et al. | Sep 2006 | A1 |
20060242630 | Koike et al. | Oct 2006 | A1 |
20060253502 | Raman et al. | Nov 2006 | A1 |
20060265397 | Bryan et al. | Nov 2006 | A1 |
20070050429 | Goldring et al. | Mar 2007 | A1 |
20070061266 | Moore | Mar 2007 | A1 |
20070061487 | Moore et al. | Mar 2007 | A1 |
20070143253 | Kostamaa et al. | Jun 2007 | A1 |
20070233756 | D'Souza et al. | Oct 2007 | A1 |
20070271317 | Carmel | Nov 2007 | A1 |
20080015970 | Brookfield et al. | Jan 2008 | A1 |
20080104149 | Vishniac et al. | May 2008 | A1 |
20080195672 | Hamel et al. | Aug 2008 | A1 |
20080270316 | Guidotti et al. | Oct 2008 | A1 |
20080301378 | Carrie | Dec 2008 | A1 |
20090031247 | Walter et al. | Jan 2009 | A1 |
20090106308 | Killian et al. | Apr 2009 | A1 |
20090164387 | Armstrong et al. | Jun 2009 | A1 |
20090271435 | Yako et al. | Oct 2009 | A1 |
20090313223 | Rantanen | Dec 2009 | A1 |
20090313311 | Hoffmann et al. | Dec 2009 | A1 |
20100036831 | Vemuri et al. | Feb 2010 | A1 |
20100076939 | Iwaki et al. | Mar 2010 | A1 |
20100082541 | Kottomtharayil | Apr 2010 | A1 |
20100114817 | Broeder et al. | May 2010 | A1 |
20100114831 | Gilbert et al. | May 2010 | A1 |
20100138842 | Balko et al. | Jun 2010 | A1 |
20100145909 | Ngo | Jun 2010 | A1 |
20100161565 | Lee et al. | Jun 2010 | A1 |
20100161688 | Kesselman et al. | Jun 2010 | A1 |
20100191884 | Holenstein et al. | Jul 2010 | A1 |
20100211550 | Daniello et al. | Aug 2010 | A1 |
20100211618 | Anderson et al. | Aug 2010 | A1 |
20100235606 | Oreland et al. | Sep 2010 | A1 |
20100281013 | Graefe | Nov 2010 | A1 |
20100283787 | Hamedi et al. | Nov 2010 | A1 |
20100325581 | Finkelstein et al. | Dec 2010 | A1 |
20110029498 | Ferguson et al. | Feb 2011 | A1 |
20110173619 | Fish | Jul 2011 | A1 |
20110184813 | Barne et al. | Jul 2011 | A1 |
20110191347 | Maddali | Aug 2011 | A1 |
20110258158 | Resende et al. | Oct 2011 | A1 |
20110258242 | Eidson et al. | Oct 2011 | A1 |
20110264668 | Hacker | Oct 2011 | A1 |
20110270812 | Ruby | Nov 2011 | A1 |
20120013684 | Lucia | Jan 2012 | A1 |
20120066228 | Charboneau | Mar 2012 | A1 |
20120072825 | Sherkin et al. | Mar 2012 | A1 |
20120109933 | Kravets | May 2012 | A1 |
20120150791 | Willson | Jun 2012 | A1 |
20120159307 | Chung et al. | Jun 2012 | A1 |
20120166407 | Lee | Jun 2012 | A1 |
20120185608 | McGowan | Jul 2012 | A1 |
20120197868 | Fauser | Aug 2012 | A1 |
20120221528 | Renkes | Aug 2012 | A1 |
20120284250 | Downum | Nov 2012 | A1 |
20120284258 | Liu | Nov 2012 | A1 |
20120330908 | Stowe et al. | Dec 2012 | A1 |
20130024440 | Dimassimo | Jan 2013 | A1 |
20130036346 | Cicerone | Feb 2013 | A1 |
20130073602 | Medway | Mar 2013 | A1 |
20130097130 | Bingol et al. | Apr 2013 | A1 |
20130311428 | Patel | Nov 2013 | A1 |
20130318060 | Chang et al. | Nov 2013 | A1 |
20140006411 | Boldyrev | Jan 2014 | A1 |
20140046949 | Bloomfield | Feb 2014 | A1 |
20140149272 | Hirani et al. | May 2014 | A1 |
20140188840 | Agarwal | Jul 2014 | A1 |
20140201179 | Chang | Jul 2014 | A1 |
20140278807 | Bohacek | Sep 2014 | A1 |
20140279881 | Tan | Sep 2014 | A1 |
20140304266 | Leuoth | Oct 2014 | A1 |
20140344231 | Stowe et al. | Nov 2014 | A1 |
20140351203 | Kunnatur | Nov 2014 | A1 |
20150106347 | McGrew et al. | Apr 2015 | A1 |
20150112956 | Chang et al. | Apr 2015 | A1 |
20150117631 | Tuchman | Apr 2015 | A1 |
20150134796 | Theimer | May 2015 | A1 |
20150186429 | Chen | Jul 2015 | A1 |
20150205588 | Bates | Jul 2015 | A1 |
20150220583 | Teletia | Aug 2015 | A1 |
20150227295 | Meiklejohn et al. | Aug 2015 | A1 |
20150242413 | Goo | Aug 2015 | A1 |
Number | Date | Country |
---|---|---|
2555126 | Feb 2013 | EP |
2863326 | Apr 2015 | EP |
2891992 | Jul 2015 | EP |
Entry |
---|
Antoshenkov, Gennady, “Dictionary-Based Order-Preserving String Compression,” The VLDB Journal, 1997, vol. 6, pp. 26-39. |
“Apache HBase,” <http://hbase.apache.org/> printed Sep. 14, 2011 in 1 page. |
“BackTult—JD Edwards One World Version Control System,” printed Jul. 23, 2007 in 1 page. |
Baker et al., “Megastore: Providing Scalable, Highly Available Storage for Interactive Services,” 5th Biennial Conference on Innovative Data Systems Research (CIDR'11), Jan. 9-12, 2011, Asilomar, California, pp. 12. |
Bernstein et al., “Hyder—A Transactional Record Manager for Shared Flash,” 5th Biennial Conference on Innovative Data Systems Research (CIDR '11), Jan. 9-12, 2011, Asilomar, California, pp. 12. |
Chang et al., “Bigtable: A Distributed Storage System for Structured Data”, Google, Inc., OSDI'06: Seventh Symposium on Operating System Design and Implementation, Seattle, WA, Nov. 2006, pp. 14. |
Chung, Chin-Wan, “Dataplex: An Access to Heterogeneous Distributed Databases,” Communications of the ACM, Association for Computing Machinery, Inc., vol. 33, No. 1, Jan. 1, 1990, pp. 70-80. |
Devanbu et al., “Authentic Third-party Data Publication,” 2000, pp. 19, http://www.cs.ucdavis.edu/˜devanbu/authdbpub.pdf. |
Dreyer et al., “An Object-Oriented Data Model for a Time Series Management System,” Proceedings of the 7th International Working Conference on Scientific and Statistical Database Management, Charlottesville, Virginia USA, Sep. 28-30, 1994, pp. 12. |
Elmasri et al., “Fundamentals of Database Systems,” 2004, Fourth Edition, pp. 455-491. |
Hogue et al., “Thresher: Automating the Unwrapping of Semantic Content from the World Wide Web,” 14th International Conference on World Wide Web, WWW 2005: Chiba, Japan, May 10-14, 2005, pp. 86-95. |
Klemmer et al., “Where Do Web Sites Come From? Capturing and Interacting with Design History,” Association for Computing Machinery, CHI 2002, Apr. 20-25, 2002, Minneapolis, MN, pp. 8. |
Kokossi et al., “D7-Dynamic Ontoloty Management System (Design),” Information Societies Technology Programme, Jan. 10, 2002, pp. 1-27. |
Mentzas et al. “An Architecture for Intelligent Assistance in the Forecasting Process,” Proceedings of the Twenty-Eighth Hawaii International Conference on System Sciences, Jan. 3-6, 1995, vol. 3, pp. 167-176. |
Miklau et al., “Securing History: Privacy and Accountability in Database Systems,” 3rd Biennial Conference on Innovative Data Systems Research (CIDR), Jan. 7-10, 2007, Asilomar, California, pp. 387-396. |
Niepert et al., “A Dynamic Ontology for a Dynamic Reference Work”, Joint Conference on Digital Libraries, Jun. 17-22, 2007, Vancouver, British Columbia, Canada, pp. 1-10. |
Nierman, “Evaluating Structural Similarity in XML Documents,” 2002, 6 pages. |
Peng et al., “Large-scale Incremental Processing Using Distributed Transactions and Notifications” Proceedings of the 9th USENIX Symposium on Operating Systems Design and Implementation, USENIX, 2010, pp. 14. |
“The Apache Cassandra Project,” <http://cassandra.apache.org/> printed Sep. 14, 2011 in 3 pages. |
Thomson et al., “The Case for Determinism in Database Systems,” The 36th International Conference on Very Large Data Bases, Sep. 13-17, 2010, Singapore, Proceedings of the VLDB Endowment, vol. 3, No. 1, pp. 11. |
Wikipedia, “Federated Database System,” Sep. 7, 2013, retrieved from the internet on Jan. 27, 2015 http://en.wikipedia.org/w/index.php?title=Federated_database_system&oldid=571954221. |
Wollrath et al., “A Distributed Object Model for the Java System,” Conference on Object-Oriented Technologies and Systems, Jun. 17-21, 1996, pp. 219-231. |
Yang et al., “HTML Page Analysis Based on Visual Cues,” 2001, pp. 859-864. |
Official Communication for European Patent Application No. 14189344.6 dated Feb. 20, 2015. |
Official Communication for European Patent Application No. 14199182.8 dated Mar. 13, 2015. |
U.S. Appl. No. 14/192,767, filed Feb. 27, 2014, Notice of Allowance, dated Dec. 16, 2014. |
U.S. Appl. No. 13/826,228, filed Mar. 14, 2013, Notice of Allowance, dated Mar. 27, 2015. |
U.S. Appl. No. 14/504,103, filed Oct. 1, 2014, Notice of Allowance, dated May 18, 2015. |
U.S. Appl. No. 14/504,103, filed Oct. 1, 2014, First Office Action Interview, dated Mar. 31, 2015. |
U.S. Appl. No. 14/451,221, filed Aug. 4, 2014, Ex Parte Quayle Action, mailed Apr. 6, 2015. |
U.S. Appl. No. 14/580,218, filed Dec. 23, 2014, Office Action, dated Jun. 26, 2015. |
U.S. Appl. No. 14/734,772, filed Jun. 9, 2015, First Office Action Interview, dated Jul. 24, 2015. |
U.S. Appl. No. 14/451,221, filed Aug. 4, 2014, Notice of Allowance, dated Aug. 4, 2015. |
U.S. Appl. No. 14/278,963, filed May 15, 2014, Final Office Action, dated Jan. 30, 2015. |
U.S. Appl. No. 14/504,103, filed Oct. 1, 2014, First Office Action Interview, dated Feb. 5, 2015. |
U.S. Appl. No. 14/837,951, filed Aug. 27, 2015, Final Office Action, dated Jan. 2, 2019. |
U.S. Appl. No. 14/837,951, filed Aug. 27, 2015, First Office Action, dated Dec. 19, 2017. |
U.S. Appl. No. 14/837,951, filed Aug. 27, 2015, Notice of Allowance, dated Apr. 17, 2019. |
U.S. Appl. No. 14/837,951, filed Aug. 27, 2015, Office Action, dated May 3, 2018. |
Number | Date | Country | |
---|---|---|---|
20190384751 A1 | Dec 2019 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 14837951 | Aug 2015 | US |
Child | 16557583 | US |