简体   繁体   中英

Store data in the file with two indexes

I am looking for a way to store a big amount of data in the file or files. The additional requirement is: it should be indexed, two indexes on integer fields should allow selecting a specific set of data very fast.

Details: the data record is a fixed-length set of 3 integers like this:

A (int) | B (int) | N (int)

A and B are indexable columns while N is just a data value.

This data set may contain billions of records (for example 30M) and there should be a way to select all records with A= as fast as possible. Or records with B= as fast as possible.

I can not use any other technologies except MySQL and PHP and you can say: "Wow, you can use MySQL.". Sure, I am already using it, but because of MySQL's extra data, my database takes 10 times more space than it should. plus index data.

So I am looking for a file-based solution.

Are there any ready algorithms to implement this? Or source code solution?

Thank you!

Update 1:

CREATE TABLE `w_vectors` (
    `wid` int(11) NOT NULL,
    `did` int(11) NOT NULL,
    `wn` int(11) NOT NULL DEFAULT '0',
    UNIQUE KEY `did_wn` (`did`,`wn`),
    KEY `wid` (`wid`),
    KEY `did` (`did`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Update 2:

The goal of this table is to store document-vs-words vectors for a word-based search application. This table stores all the words from all the documents in compact form (wid is the word ID from the word vocabulary, did is the document ID and wn is the number of the word in the document). This works pretty well, however, in case you have, let's say, 1000000 documents, each document contains average of 10k words, this table becomes VERY VERY huge like 10 billion rows. And with row size 34 bytes it becomes a 340 Gb structure for just 1 million documents.., not good? right?

I am looking for a way to optimize this.

If you must use MySQL, you could try:

  • Convert the table to MyISAM, which takes less space than InnoDB, and allows multiple indexes per table. I rarely recommend MyISAM because it doesn't support ACID properties. But if your option is to use a file-based solution, that won't support ACID either.

  • Use one of the various solutions for compressed data in MySQL. There's a nice comparison here: https://www.percona.com/blog/2018/11/23/compression-options-in-mysql-part-1/

You may as well change

UNIQUE KEY `did_wn` (`did`,`wn`)

to

PRIMARY KEY(did, wn)

and get rid of

INDEX(did)

since that composite index takes care of queries to did .

With that PK, these will be very efficient:

... WHERE did = 123
... WHERE did = 123 AND wn = 456
... WHERE wn = 456 AND did = 123

Meanwhile, your INDEX(wid) benefits any WHERE clause that tests for a single value of wid or a range of wids.

Since I don't know about your original A and B , I can't answer your question in terms of the real column names. Anyway:

there should be a way to select all records with A= as fast as possible. Or records with B= as fast as possible.

For those, you need

INDEX(A)  -- or any index _starting with_ A
INDEX(B)  -- or any index _starting with_ B

But if either of those is did , don't add it. (The PK will take care of making it fast.

Also, use InnoDB, not MyISAM. Alas, that leads to "10 times more space than it should" in your case. If you choose to use MyISAM, I will need to start over on index recommendations.

Once you map A and B to the column names, I'll give you one more tip.

More discussion of indexes: http://mysql.rjweb.org/doc.php/index_cookbook_mysql

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM