Question

While re indexing got an error:

PHP Fatal error: Uncaught Error: Call to undefined method Magento\Customer\Model\Indexer\Source::addAttributeToSelect() in /var/www/html/ncsmokehouse/vendor/magento/framework/Indexer/Handler/AttributeHandler.php:38

Was it helpful?

Solution

Add a function :

public function addAttributeToSelect($fieldName, $alias = null)
    {
       $this->customerCollection->addAttributeToSelect($fieldName, $alias);
       return $this;
   }

in this file /www/vendor/magento/module-customer/Model/Indexer/Source.php

you can override this file because we can't change in core module. it's working

OTHER TIPS

In my case, it works. However, after that, I've found another reindex issue, which I've solved by following this Magento 2 How to Unlock Reindex Process: Index is locked by another reindex process Skipping

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top