This is an old revision of the document!
As with most applications, this is the most important step of the entire application lifecycle. During the design step, key decisions are made about how to approach Omnidex queries and updates in the application. These decisions can lead to high-performing applications, and they can also lead to poor performance. It is worth spending the needed time on this step.
This article focuses on the design steps for an Omnidex Application. It does not focus on the steps for application design in general. These steps should be interwoven with the design steps needed for the overall application. Designing an Omnidex Application has six important steps:
An Omnidex architecture is a plan for where the various components of the application will reside and how they will talk to each other. In the simplest applications, everything resides on a single machine. There may not even be a web server or an application server. In more traditional applications, there is a web server, an application server and a data server, often on three separate machines.
Omnidex adds three new concepts that affect the application architecture: Omnidex Snapshots, Omnidex Grids and Omnidex Index Servers. These concepts add a great deal of flexibility to the application architecture and are worth considering before embarking on a full application.
In brief, Omnidex Snapshots are simple copies of the database stored in flat files that can be indexed and queried as an independent database. Omnidex Snapshots are very convenient because they can be heavily indexed, and then easily distributed to different servers. Many businesses direct a great deal of their query traffic to Omnidex Snapshots, gaining performance in their application while reducing the load on their relational database. This assures the highest performance without requiring changes to the data model.
Omnidex Grids allow large databases to be partitioned to improve performance and scalability. Databases with over 20 million rows are candidates for Omnidex Grids, and there are several strategies for distributing the nodes of the grid to achieve the greatest flexibility and performance. Omnidex Grids are also a common way to incorporate large amounts to new data. Large volumes of data can be added to a new node in the grid without having to affect the entire database.
Omnidex Index Servers are replications of the Omnidex indexes onto different servers. In many applications, Omnidex can resolve most queries using only the Omnidex indexes. This is especially true for applications that rely heavily on obtaining counts or aggregations. When the indexes are distributed to different servers, these types of queries can be directed away from the main data server onto commodity index servers, improving the performance of both types of servers.
Architects would benefit from a deeper understanding of these concepts, and are encouraged to ready the article on Omnidex Architecture article.
Design begins with obtaining three key pieces of information:
The database schema should show all of the tables, their respective columns and datatypes, and their respective primary and foreign constraints. This schema provides an understanding of the table relationships that is necessary for optimizing table joins. The schema also provides a list of columns for identifying likely candidates for indexing.
Database schemas can be obtained from the underlying relational database, or can be obtained using the Omnidex Administrator program.
The table and column cardinalities help determine the best approach for Omnidex indexing. Tables cardinalities simply show the number of rows in each table. Column cardinalities show the number of distinct values in a column. For example, an INDIVIDUALS table may have a table cardinality of 300 million, meaning that there are 300 million rows in the table. The GENDER column may have a column cardinality of two, meaning that there are two distinct values in the column.
Cardinalities can be obtained from the underlying relational database, or can be obtained using the Omnidex Administrator after an UPDATE STATISTICS statement has been completed on a table.
Sample SQL queries are necessary to effectively determine the appropriate indexing strategy. Some designers may elect to index everything using Omnidex, but this may result in over-indexing, and it also doesn't insure that the correct indexing options are used on each column. It also does not insure that table joins and aggregations will be properly optimized.
The best approach to obtaining sample queries is to log the queries for an application for a period of time. Analyzing these queries allows the designer to understand the patterns of queries, and which types of queries are most common. It also reveals which queries tend to take the most time. Typically, a designer comes up with somewhere between 20 and 100 queries that are to be well optimized by Omnidex.
When analyzing SQL queries, there are several patterns to recognize: