How to optimize Big Data Queries

Source: Internet
Author: User

If the query method is unreasonable for querying millions of data, the system performance and server pressure will be seriously affected.

Common query optimization solutions are as follows:

1. To optimize the query, try to avoid full table scanning. First, consider creating an index on the columns involved in where and order.

2. Try to avoid null judgment in the WHERE clause; otherwise, the query will discard the index for full table scanning. You can set the default value to 0 on null.

3. Try to avoid using or in the WHERE clause to connect to the condition. Otherwise, the query will discard the index for full table scan. You can consider replacing it with Union all.

4. Use in and not in with caution. Otherwise, full table scan may occur. If you can use between, you do not need in.

5. Avoid using like for fuzzy search. You can use full-text search.

6. Try to avoid using it in the WHERE clause! = Or <> operator. Otherwise, full table scan is performed.

7. Use view to accelerate query.

8. You can use distinct instead of group.

9. If Union all is used, union is not used.

10. Avoid performing function operations in the WHERE clause.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.