Tagged Questions
17
votes
7answers
931 views
MySQL indexes - what are the best practises?
I've been using indexes on my mysql databases for a while now but never properly learnt about them. Generally I put an index on any fields that i will be searching or selecting using a WHERE clause ...
9
votes
3answers
484 views
Can you index tables differently on Master and Slave (MySQL)
Is it possible to set up different indexing on a read only slave, from on the master? Basically, this seems like it makes sense given the different requirements of the two systems, but I want to make ...
5
votes
2answers
110 views
MySQL & nested set: slow JOIN (not using index)
I have two tables:
localities:
CREATE TABLE `localities` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`type` varchar(30) NOT NULL,
`parent_id` int(11) DEFAULT NULL,
...
5
votes
5answers
301 views
MYSQL: Should I create indexes on large tables used as logs?
I have a basic analytics mysql database table which keeps track of all ipaddresses and urls visited on a user's visit and the time they visited.
There are a large number of inserts (millions per ...
5
votes
6answers
1k views
Determining if MySQL table index exists before creating
Our system's automated database migration process involves running .sql scripts containing new table definitions and their accompanying indexes.
I require the ability to create these tables and ...
4
votes
2answers
507 views
What does “The indexes PRIMARY and id seem to be equal and one of them could possibly be removed.” mean?
What does this mean and how can I fix it?
4
votes
2answers
181 views
Transient Mysql::Error: Duplicate entry on a high-traffic site - any ideas?
In my hoptoad logs I will periodically see
Mysql::Error: Duplicate entry 'XXXX' for key 'YYY'
This happens for most of my models, about 6 in all, and I will see this error once every few hours ...
4
votes
6answers
286 views
MySQL composite indexes and operator BETWEEN
I have a question about this query:
SELECT *
FROM runs
WHERE (NOW() BETWEEN began_at
AND finished_at)
Do you think it makes sense to create composite index for began_at and ...
4
votes
4answers
278 views
Is there any point using MySQL “LIMIT 1” when querying on indexed/unique field?
For example, I'm querying on a field I know will be unique and is indexed such as a primary key. Hence I know this query will only return 1 row (even without the LIMIT 1)
SELECT * FROM tablename ...
4
votes
3answers
203 views
Are indexes good or bad for a large database?
I read on MySQL Performance Blog that when tables are large, it is better to scan full tables, instead of using indexes.
I have a table with tens of millions of rows. When conducting queries, if I ...
4
votes
4answers
4k views
Why do MySQL InnoDB inserts / updates on large tables get very slow when there are a few indexes?
We have a series of tables that have grown organically to several million rows, in production doing an insert or update can take up to two seconds. However if I dump the table and recreate it from the ...
3
votes
4answers
84 views
MySQL Order by Optimization
Below is the structure of a table:-
Article: ID, Title, Desc, PublishedDateTime, ViewsCount, Published
Primary Key: ID
Query Used:
Select Title FROM Article ORDER By ViewsCount DESC, ...
3
votes
2answers
47 views
Strange MySQL table sizes
I implemented an inverted index in MySQL using mainly these three tables:
WORDS (word_id, word)
INSTANCES (word_id, doc_id)
DOCUMENT (id, text)
where word_id is INT and doc_id is BIGINT
Then, I ...
3
votes
4answers
82 views
I have one hell of an SQL query I'd like to optimize. Let's talk about it
So, here's a question that will probably have the SQL experts jumping all over me calling me lazy, but I'm stumped. Our online store crashed and burned this morning, and here is the suspect query. ...
3
votes
1answer
64 views
Mysql select with in clause does not use index
I have a contacts table which has a primary key of id. It also has a secondary index idx_id_del_user (id, deleted, user_id).
The following query uses the index and therefore is very fast -
select id
...
3
votes
2answers
53 views
MySQL Indexes creation
I have a table with 10 columns and I need to support combined range filters for most of them.
Let's say for example:
WHERE column_a >= a_min AND column_a <= a_max
AND column_b >= b_min AND ...
3
votes
3answers
157 views
Naming MySQL indexes
Is it considered bad form to give an index the same name as the column it is based on?
Like if you have a column named 'foo' and you want to create a normal index on it, would it be okay to name the ...
3
votes
2answers
103 views
MySQL not using index when checking = 1 , but using it with = 0
Here is a perplexing issue I am having:
Query:
EXPLAIN SELECT id,hostname FROM queue_servers WHERE live=1
id select_type table type possible_keys key key_len ref rows ...
3
votes
4answers
228 views
MYSQL: need help for rapidly growing table and decreasing speed (4mio rows)
I'm facing some issues with a rapidly growing table at increasing speed (currently 4mio rows, 300k inserts a day). I hope I can get some ideas and advices here to improve my setup and squeeze the last ...
3
votes
2answers
113 views
Indexes in MySQL - 101 intro?
I have worked with creating tables and keys, basic stuff. No experience with indexes. So the question is: Do I need to manually create any index or does MySQL auto create it for me for all tables i ...
3
votes
2answers
158 views
Composite Primary and Cardinality
I have some questions on Composite Primary Keys and the cardinality of the columns. I searched the web, but did not find any definitive answer, so I am trying again. The questions are:
Context: Large ...
3
votes
3answers
58 views
Should I use indexes for a many-to-many database table?
does it make sense to create indexes for a table called user_movies with the following columns:
user_id
movie_id
There will be much more reading than inserting or updating on this table but I'm not ...
2
votes
1answer
32 views
mysql - join first and last records by group type?
With a table like:
idx type dat
0 a foo1
1 b foo2
2 c foo3
3 a foo4
4 b foo5
5 c foo6
6 a foo7
7 b foo8
8 c foo9
How can i get the first and last data ...
2
votes
2answers
34 views
Does a two field table (both int) need an index?
I have a table which has only two fields, id1 and i2.
Both are ids from other tables and are int(10).
Should I have an index on this table?
Edit: What I'm thinking is that this table is made up of ...
2
votes
1answer
49 views
Issue with innodb clustered secondary index and range queries
I recently read that with innodb tables, putting an index on (something,primary_key) is redundant, as the primary key is automatically clustered with all secondary indexes.
So to decrease my index ...
2
votes
1answer
72 views
Slow insert in MySQL innoDB table when adding secondary key
I have a buffing problem with an InnoDB table that I cannot figure out:
I have a table with 5 columns, of which 4 columns make up the primary key and there are 3 more secondary keys; in that table ...
2
votes
1answer
47 views
Mysql Indexes being considered but still having large table scan
I have a Job table with an primary key and a couple of date related fields ...
+------------------+---------------+------+-----+-------------------+----------------+
| Field | Type ...
2
votes
4answers
86 views
Help Optimizing a MySQL SELECT with ORDER BY
Currently the table has the following indexes:
forum_id_index
other_forum_id_index
forum_id_on_other_forum_id_index => [forum_id, other_forum_id]
The query:
SELECT `topics.*`
FROM `topics`
...
2
votes
2answers
312 views
Indexing a mysql table for geo lookup using latitude/longitude
I have a legacy innodb table Listing containing a business with latitude/longitude. Given an input latitude/longitude (below 51.2167/4.41667), the query is to return the first active, enabled, ...
2
votes
2answers
84 views
How much bigger is a combination index than a single index?
For MySQL speciffically, but I'm guessing the structures are similar across most brands of SQL. Are combination indexes much bigger than single indexes? For example, would the amount of space needed ...
2
votes
4answers
252 views
MySQL indexes: how do they work?
I'm a complete newbie with MySQL indexes. I have several MyISAM tables on MySQL 5.0x having utf8 charsets and collations with 100k+ records each. The primary keys are generally integer. Many ...
2
votes
1answer
84 views
Putting an index on a date field in MySQL
Is there going to be any real benefit to me putting indexes onto date fields that are going to be mainly used in queries using stuff like.
dateField < 'var'
And
'var' BETWEEN dateField1 AND ...
2
votes
3answers
435 views
How do mysql indexes work?
I am really interested on how mysql indexes work that it could not scan the whole table to give us results? It's off-topic, I know, but if there is someone who could explain me that picturesquely I ...
2
votes
2answers
28 views
After importing sql files indexes in place, but not actually indexed
I imported all of our database to a new server. When I looked at the tables I see the indexes, but they all show a cardinality of 0. If I remove one index and add it back in, it triggers all the ...
2
votes
2answers
65 views
MYSQL moving the position of an index
So a search on google didn't turn up anything and neither did StackOverflow so far.
Essentially my problem is this: I have a merge table and another normal table I wish to merge into it. ...
2
votes
3answers
198 views
MySql using primary index instead of multiple column one!
Ok so I've a SQL query here:
SELECT a.id,... FROM article AS a WHERE a.type=1 AND a.id=3765 ORDER BY a.datetime DESC LIMIT 1
I wanted to get exact article by country and id and created for that ...
2
votes
3answers
221 views
MySQL Slow join - but not always and not on all tables
We're experiencing a performance issue with a MySQL database that's so weird we need another set of eyes to tell us whether we're going crazy or not.
We've got 2 MySQL Certified Developers in the ...
2
votes
3answers
232 views
Simple Select Statement on MySQL Database Hanging
I have a very simple sql select statement on a very large table, that is non-normalized. (Not my design at all, I'm just trying to optimize while simultaneously trying to convince the owners of a ...
2
votes
1answer
86 views
Two sets of indentical tables with joins using indexes in MySQL; one requires full-table scan
Im getting very confused with indexes in MySQL.
I have two tables: TableA1 and TableA2.
I created indexes on these for the joins between them and queries run really fast.
I have another 2 tables ...
2
votes
3answers
130 views
mysql index performance on small “fast-moving” tables
We've got a table we use as a queue. Entries are constantly being added, and constantly being updated, and then deleted. Though we might be adding 3 entries/sec the table never grows to be more than a ...
2
votes
4answers
180 views
Creating a “secondary ID” in mysql
I have a table that stores "records" and already has primary key.
Table A
=======
id (INT) PK auto_increments
project_id (INT)
record_text (TEXT)
This table stores "records" for all of my ...
1
vote
0answers
14 views
Less RAM than Index_length MyISAM [migrated]
I'm working on a database to store "time series" data (the value of X was Y at this time). The table itself is very small and static in size, with the primary key consisting of two smallint columns, 1 ...
1
vote
1answer
54 views
MySQL simple query with int index is slow
This simple query:
SELECT trip_id from stop_times WHERE stop_id = 345
Takes about 80ms, which is way too much time considering I'm iterating through ~10k rows. My stop_times table has about 3.5M ...
1
vote
1answer
50 views
Python processes and MySQL
I am running several thousand python processes on multiple servers which go off, lookup a website, do some analysis and then write the results to a central MySQL database.
It all works fine for about ...
1
vote
1answer
41 views
Multi column index slower than single column index in mysql
I have a myisam table with a primary key spanning 5 columns. I do a select using a WHERE on every of those 5 columns ANDed. Using the primary key (multicolumn index) it takes 25s, using a single index ...
1
vote
5answers
60 views
MySQL: Undefined indexes, even though they have been defined
I have some pretty simple code:
$result = mysql_query("
SELECT max(id) as id, ip, max(entry), COUNT(ip) AS count
FROM table_name
GROUP BY ip
ORDER BY max(id) asc
");
$i = 0;
$num_rows = ...
1
vote
1answer
28 views
Does a MySQL index on columns (A,B,C) optimize for queries than just select/order by (A,B) only?
Given a table with columns A,B,D,E,F.
I have two queries:
one that orders by A then B.
one that orders by A, then B, then C
I want to add an index on (A,B,C) to speed up the second query.
I'm ...
1
vote
1answer
58 views
Where to start with optimizing/adding indexes to speed up query?
I'm not really sure where to start with cutting down this query in the search section of my site so that it doesn't take so long. You run a search on a variety of tables, and get filtered results ...
1
vote
3answers
54 views
How do I find out which tables have no indexes in MySQL
I am dealing with a database that has about 300 tables and I am looking for a way to find all tables that have NO indexes (excluding PRIMARY). Ideally I would like to get back a result set that gives ...
1
vote
1answer
55 views
Redundant MySQL Index?
Action Keyname Type Unique Packed Column Cardinality Collation Null Comment
Edit Drop PRIMARY BTREE Yes No TickerID 23200 A
Timestamp 13897209 A
Edit Drop ...