Hi ! I need a little help; I am using Typesense for an e-commerce site for a client. I have a database of approximately 2 million products. I can't load more than 7,000... From what I've seen in other answers he's given, @Jason Bosco recommendation was to increase the CPU. Can I do this in Typesense, in the client configuration? Typesense is installed directly on my local machine, through Homebrew. I am not using Docker or anything else.
My client config looks like this :
<?php
require 'vendor/autoload.php';
use Typesense\Client;
use Dotenv\Dotenv;
$dotenv = Dotenv::createImmutable(DIR, '.env.development');
$dotenv->load();
$client = new Client(
[
'nodes' => [
[
'host' => $_ENV['TYPESENSE_HOST'],
'port' => $_ENV['TYPESENSE_PORT'],
'protocol' => $_ENV['TYPESENSE_PROTOCOL'],
],
],
'api_key' => $_ENV['TYPESENSE_SEARCH_ONLY_API_KEY'],
'connection_timeout_seconds' => 3600, // 3_600_000
'num-documents-parallel-load' => 5000,
'retry_interval_seconds' => 10 + rand(0, 50),
]
);