Skip to content

Latest commit

 

History

History
executable file
·
149 lines (124 loc) · 3.67 KB

connection.md

File metadata and controls

executable file
·
149 lines (124 loc) · 3.67 KB

Connection

ElasticVision connects to ElasticSearch through the PHP ElasticSearch client and has several options to configure a connection. The connection configuration is defined config/elasticvision.php.

Basic

The most basic connection is with http without authorization.

    return [
        'connection' => [
            'host' => 'elasticsearch',
            'port' => '9200',
            'scheme' => 'http',
        ],
    ];

Elastic Cloud ID

Another connection option is to use an elastic cloud id as shown below

    return [
        'connection' => [
            'elasticCloudId' => 'staging:dXMtZWFzdC0xLmF3cy5mb3VuZC5pbyRjZWM2ZjI2MWE3NGJmMjRjZTMzYmI4ODExYjg0Mjk0ZiRjNmMyY2E2ZDA0MjI0OWFmMGNjN2Q3YTllOTYyNTc0Mw',
        ],
    ];

Basic Authorization

To specify a username and password use the auth key with a username and a password.

    return [
        'connection' => [
            'host' => 'elasticsearch',
            'port' => '9200',
            'scheme' => 'http',
            'auth' => [
                'username' => 'myName',
                'password' => 'myPassword'
            ],
        ],
    ];

API key

Replace the auth part with API and give it your key and id.

    return [
        'connection' => [
            'host' => 'elasticsearch',
            'port' => '9200',
            'scheme' => 'http',
            'api' => [
                'id' => 'myId',
                'key' => 'myKey'
            ],
        ],
    ];

Verify TLS with CA

From Elastic 8 and upwards TLS is becoming the default, even in development. This means you will need to verify the CA. You can set the ssl.verify config key to the path of the CA, or to false to disable verification altogether.

Warning Disabling CA verification on production is not recommended.

    return [
        'connection' => [
            'host' => 'elasticsearch',
            'port' => '9200',
            'scheme' => 'http',
            'ssl' => [
                'verify' => './path/to/ca.crt',
            ],
        ],
    ];

To disable TLS verification set it to false. NOT recommended for production.

    return [
        'connection' => [
            'host' => 'elasticsearch',
            'port' => '9200',
            'scheme' => 'http',
            'ssl' => [
                'verify' => false,
            ],
        ],
    ];

TLS connection with a public certificate and private key

    return [
        'connection' => [
            'host' => 'elasticsearch',
            'port' => '9200',
            'scheme' => 'https',
            'ssl' => [
                'cert' => ['path/to/cert.pem', 'passphrase'],
                'key' => ['path/to/key.pem', 'passphrase'],
            ],
        ],
    ];

Multiple connections

Elastic can also have multiple possible connections

    use Elasticsearch\ConnectionPool\Selectors\RoundRobinSelector;

    return [
        'connection' => [
            'host' => 'elasticsearch',
            'port' => '9200',
            'scheme' => 'http',
            'ssl' => [
                'verify' => false,
            ],
            'selector' => RoundRobinSelector::class
        ],
        'additionalConnections' => [
            [
                'host' => 'elasticsearch',
                'port' => '9201',
                'scheme' => 'http',
            ],
            [
                'host' => 'elasticsearch',
                'port' => '9202',
                'scheme' => 'http',
            ]
        ],
    ];