Few tips on working with huge database

How many results do you need to show on screen?

Couple of quick things.

  • SQL index
  • Limit rows on open query (select top, limit, etc.)
  • Only select fields you need
  • Cache common queries.
2 Likes

Showing 40/80 items per page would do. Normally I just create navigation through an entire record set of hundreds or thousands but that won’t work right now. And thanks for your tips, gonna check it out.

This one is a good article to checkout for optimized pagination:

I think caching makes sense, when your query need to long or you have a load problem.
Otherwise i would not start caching it.

1 Like

Other things…

  • You can use TOP, LIMIT etc and pop up a message if recordcount eq limit to tell a user to revise a search.
  • Decide at which screens to much info is to much. One screen could allow a thousand where 200 might be to much on another screen.
  • Make sure they search boxes don’t allow less than 3 characters or so if needed.
  • Make sure you test with a slow database server for development. I had a customer complain once that a query took all resources for 30sec on their box. Our development DB server took 5 minutes. I fixed one index and some query house keeping took that down to 30 secs on our box which I think was under 5 secs on the customers DB server.
1 Like

A few other suggestions:

Use Views when ever possible
Use Query of Query
Database & Application tuning will help with response time & hardware requirements
Rewrite Slow Queries
Instead of “Select * from XXX” use Select Column, 2, 3, 4… from XXX"

1 Like

Use Query of Query

https://lucee.daemonite.io/t/query-of-query-sucks-upgrade-hsqldb/4501

1 Like

Wow, everyone thanks so much for all the useful answers, this will do more then get me started. I’m gonna check all this info out, thanks.

I do not think QoQ “sucks”, in all instances.

Running applications that have 100+ GB databases on public front end sites and QoQ works just fine both under AFC, Lucee, running both MySQL & MSSQL.

I am sure there are databases that QoQ would not work well, such as high memory clustered modern databases, some nosql databases, and other modern databases that have addressed many of the legacy problems of traditional databases.

1 Like

QoQ are handled by Lucee with the help of hsqldb, regardless of the database you use.

2 Likes

Beware of using OFFSET for pagination. It does not scale. The database engine practically has to gather all of the results and then toss away most of them.

QoQ can be OK in edge cases, but when your goal is performance it should be avoided. Use the right tool for the right job. QoQ is not the right tool.

Create the indexes that you need for faster search, but do not add unnecessary indexes as they would hurt DML queries.

Understand the actual needs of your system and optimize it accordingly. For example, does your database have many more READ operations than WRITE? If so, you can use replication and add more databases in “read-only” mode, then load-balance your system by directing SELECTs into the read-only databases and DML operations to the master database.

1 Like

Thanks for that addition, will check it out :+1:

Use StoredProcedure ~ CFSTOREDPROC or CFQUERY EXECUTE, rather than a standard Coldfusion query.

Index your database tables:

And never loop over your queries when writing to the database. Use a WHERE…IN() clause with multiple IDs or a sub query.

2 Likes

Thanks Sir, will check it out :+1:

I would add to the limit suggestion and advise you to really look at your listing page(s). Rare is the case that a user will need to or want to page through thousands, let alone millions of records. So what we’ve done is put a default limit of 1,000 rows on all our search queries and we only remove that limit when the user expressly needs more records. In our system, all of our listing pages have a parenthetical that discloses this 1,000 row limit (which is what they page through on the client). If the user needs more they have two choices. One is the download a csv, in which case we remove the limit and send them the complete data set (which is returned real time or via a scheduled download if the result set is enormous) and the other is to simply change their filter criteria.

The other thing I would suggest from a lot painful experience is to avoid running queries automatically in such pages. In other words, design your search listing pages in such a way that users have to press a search button after selecting their filters rather than having the page kick off a default search with little or no filtering. It sounds basic, but that alone will prevent a lot of server load in the form of one default search followed by one tailored to their needs.

Now reports are another matter. For reports where you might be returning a ton of data, it might be best to send the entire result set and forego paging altogether. And when your result set is simply too long (and you need to think about what that means) you can still handle that by informing the user that the report has been scheduled and will be emailed to them when it is done being generated. I mention this because there is a definite trade off in performance when trying to support online reporting where the data is very large. In many cases you might be better served sending your user a csv that they can load into Excel let them do their thing. Hardcore analysts might even thank you for that anyway.

1 Like

Awesome additional info, thanks :+1:

Hi,

I got Lucee working with an Elasticsearch “database”. I let mySQL and Lucee create an Elasticsearch “database” every day (cron job) and the visitors of the website query the Elasticsearch file. Lightning fast!

1 Like

Interesting indeed, will check it out :+1:

@MvdO FWIW, 10 million records in a database is hardly “huge”.

There are most likely many things that you can do with your database to improve its performance, before adding other components that will add new layers of complexity to your system.

1 Like

Thanks, for me it feels like huge :grin: I am sure there are much bigger db’s though. I had already many tips on improving performance so that will cover the things I can do with the db instead of other components.

1 Like

im very interested in using elasticsearch. can you share with me how you do this with lucee. consider i havent used elasricsearch at all yet. thanks for the help if your willing to share your experience.