Exception: Root mapping definition has unsupported parameters: [product-review : {dynamic_templates=[{search-result-data={path_match=search-result-data., mapping={index=false}}}], properties={search-result-data={type=object, properties=[]}, id-product-abstract={type=integer}, rating={type=integer}, created-at={type=keyword}, store={type=keyword}, locale={type=keyword}}}] [reason: Failed to parse mapping [_doc]: Root mapping definition has unsupported parameters: [product-review : {dynamic_templates=[{search-result-data={path_match=search-result-data., mapping={index=false}}}], properties={search-result-data={type=object, properties=[]}, id-product-abstract={type=integer}, rating={type=integer}, created-at={type=keyword}, store={type=keyword}, locale={type=keyword}}}]]
here is my config
<?php /** * Here go your local configs which should not be version controlled (tokens, passwords, keys, ...) */ use Spryker\Shared\Application\ApplicationConstants; use Spryker\Shared\Collector\CollectorConstants; use Spryker\Shared\Customer\CustomerConstants; use Spryker\Shared\Mail\MailConstants; use Spryker\Shared\Newsletter\NewsletterConstants; use Spryker\Shared\Propel\PropelConstants; use Spryker\Shared\PropelQueryBuilder\PropelQueryBuilderConstants; use Spryker\Shared\Queue\QueueConstants; use Spryker\Shared\RabbitMq\RabbitMqEnv; use Spryker\Shared\Session\SessionConstants; use Spryker\Shared\ZedRequest\ZedRequestConstants; //postgres $config[PropelConstants::ZED_DB_USERNAME] = 'development'; $config[PropelConstants::ZED_DB_PASSWORD] = 'mate20mg'; $config[PropelConstants::ZED_DB_DATABASE] = 'DE_development_zed'; $config[PropelConstants::ZED_DB_HOST] = '127.0.0.1'; $config[PropelConstants::ZED_DB_ENGINE] = $config[PropelConstants::ZED_DB_ENGINE_PGSQL]; $config[PropelConstants::ZED_DB_PORT] = 5432; // ---------- RabbitMQ $config[RabbitMqEnv::RABBITMQ_API_HOST] = 'localhost'; $config[RabbitMqEnv::RABBITMQ_API_PORT] = '15672'; $config[RabbitMqEnv::RABBITMQ_API_USERNAME] = 'admin'; $config[RabbitMqEnv::RABBITMQ_API_PASSWORD] = 'mate20mg'; // ---------- RabbitMQ $config[RabbitMqEnv::RABBITMQ_API_HOST] = 'localhost'; $config[RabbitMqEnv::RABBITMQ_API_PORT] = '15672'; $config[RabbitMqEnv::RABBITMQ_API_USERNAME] = 'admin'; $config[RabbitMqEnv::RABBITMQ_API_PASSWORD] = 'mate20mg'; $config[RabbitMqEnv::RABBITMQ_CONNECTION_NAME] = 'DE-connection'; $config[RabbitMqEnv::RABBITMQ_VIRTUAL_HOST] = '/'; $config[ApplicationConstants::ZED_RABBITMQ_VHOST] = '/DE_development_zed'; //elasticsearch $config[ApplicationConstants::ELASTICA_PARAMETER__HOST] = 'localhost'; $config[ApplicationConstants::ELASTICA_PARAMETER__TRANSPORT] = 'http'; $config[ApplicationConstants::ELASTICA_PARAMETER__PORT] = '10005'; $config[ApplicationConstants::ELASTICA_PARAMETER__AUTH_HEADER] = ''; $config[ApplicationConstants::ELASTICA_PARAMETER__DOCUMENT_TYPE] = 'page'; {{$config[ApplicationConstants::ELASTICA_PARAMETER__INDEX_NAME] = 'de_search';}} What to do here?