FOSElasticaBundle/Resources/doc/cookbook/suppress-server-errors.md

56 lines
1.7 KiB
Markdown
Raw Normal View History

2013-12-17 11:09:58 +01:00
Suppressing Server Errors
=========================
2013-12-17 11:09:58 +01:00
By default, exceptions from the Elastica client library will propagate through
the bundle's Client class. For instance, if the Elasticsearch server is offline,
issuing a request will result in an `Elastica\Exception\Connection` being thrown.
Depending on your needs, it may be desirable to suppress these exceptions and
allow searches to fail silently.
One way to achieve this is to override the `fos_elastica.client.class` service
container parameter with a custom class. In the following example, we override
the `Client::request()` method and return the equivalent of an empty search
response if an exception occurred.
Sample client code:
-------------------
```php
2013-12-17 11:09:58 +01:00
<?php
namespace Acme\ElasticaBundle;
use Elastica\Exception\ExceptionInterface;
use Elastica\Request;
2013-12-17 11:09:58 +01:00
use Elastica\Response;
use FOS\ElasticaBundle\Client as BaseClient;
2013-12-17 11:09:58 +01:00
class Client extends BaseClient
{
public function request($path, $method = Request::GET, $data = array(), array $query = array())
2013-12-17 11:09:58 +01:00
{
try {
return parent::request($path, $method, $data, $query);
2013-12-17 11:09:58 +01:00
} catch (ExceptionInterface $e) {
return new Response('{"took":0,"timed_out":false,"hits":{"total":0,"max_score":0,"hits":[]}}');
}
}
}
```
Configuration change:
---------------------
```xml
<?xml version="1.0"?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<parameters>
<parameter key="fos_elastica.client.class">Acme\ElasticaBundle\Client</parameter>
</parameters>
</container>