Hi,
I think that your current session is trying to load every products you got in a single page (which is a big amount of data).
The best will be to force the limitation of the number of products in the backend listing.
You can edit the file "administrator/components/com_hikashop/views/product/view.html.php" and replace
$pageInfo->limit->value = $app->getUserStateFromRequest( $this->paramBase.'.list_limit', 'limit', $app->getCfg('list_limit'), 'int' );
if(empty($pageInfo->limit->value)) $pageInfo->limit->value = 500;
By
$pageInfo->limit->value = $app->getUserStateFromRequest( $this->paramBase.'.list_limit', 'limit', $app->getCfg('list_limit'), 'int' );
if(empty($pageInfo->limit->value) || $pageInfo->limit->value > 100) $pageInfo->limit->value = 100;
I hope it will help.
Regards,