Questions tagged [reindex]
459 questions
0
votes
1 answer
Magento Reindex Product Flat error
Sice last week the procduct flat index is broken. All other reindexer are working.
Exception:
Product Flat Data index process unknown error:
exception 'PDOException' with message 'SQLSTATE[HY000]: General error: 1005 Can't create table…

boti
- 677
- 5
- 12
0
votes
2 answers
IBM DB2 recreate index on truncated table
After truncating table, and inserting new values in table, auto-increment values are not set to started value 1. When inserting new values it's remember last index-ed value of auto-increment.
Colum in table named: ID
Index: PRIMARY,
Initial Value: …

Marin Sagovac
- 3,932
- 5
- 23
- 53
0
votes
1 answer
Magento: reindex after import.csv (product dont show, all index are upgraded)
I have this problem I'm going crazy.
I imported new configurable products, see them in admin enabled, assigned to the category, assigned to the site but in front-end not seen!!
I re-updated indexes using SSH, but no result.
Moreover, there is a way…

Luca Db
- 3
- 4
-1
votes
1 answer
Magento 2 while reindex INSERT INTO 'catalog_category_product_index_store1' stuck the query
I am working on Magento 2.3.2. When I run re-index command php bin/magento indexer:reindex Design Config Grid and Customer Config Grid is completed. But it is taking too much time to re-index Category Products and Product Categories
I checked the…

David Coder
- 1,138
- 2
- 14
- 48
-1
votes
2 answers
pandasObject.index() Vs reindexing using series
The functionality of reindexing in python pandas can also be done python Series as below.
import pandas as pd
order = ['a','c','b']
series_data = pd.Series([1,2,3],index=order)
series_data
In that case why do we explicitly go for reindex?

Meghana Bandaru
- 67
- 1
- 2
- 6
-1
votes
3 answers
magento re-indexing takes too much time
I have 75 K products in my store.
I uploaded 100 Products through Data Import Profile.
It re-indexes all 75 K? Because it takes a lot of time and I get error of too many connections in Mysql.
What is the solution to it?

Shaz
- 419
- 3
- 11
-1
votes
1 answer
Magento catalog disappear after reindex
One of my clients has tried to add a product attribute called 'Shipping Date' to products earlier today. He has created the attributed, and then assigned into default attributes set. After the he re-indexed everything to realised that category…

Pradeep
- 71
- 1
- 12
-2
votes
3 answers
magento and solr reindexing issue
im having troubles reindexing magento with solr, im getting the following error via ssh (all other indexes successfully:
Error reindexing Solr: Solr HTTP error: HTTP request failed, Operation timed out after 5001 milliseconds with 0 bytes…
-4
votes
2 answers
Splatpacking versus array_values() to re-index an array with numeric keys
As of PHP7.4, there is a newly available technique to re-index an array with numeric keys.
I'll call it "array re-packing" or maybe something fun like "splatpacking". The simple process involves using the splat operator (...) -- aka "spread…

mickmackusa
- 43,625
- 12
- 83
- 136