Download the PHP package hch/elastic-ml-bundle without Composer

On this page you can find all versions of the php package hch/elastic-ml-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package elastic-ml-bundle

hch/elastic-ml-bundle

Introduction

The ElasticMlBundle is a Symfony bundle that integrates Elastic Machine Learning (ML) features from Elasticsearch into your Symfony application. This bundle allows you to create and manage Machine Learning jobs via Elasticsearch's ML API.

Features

Installation

  1. Install the bundle via Composer: bash return [ Hch\ElasticMLBundle\ElasticMLBundle::class => ['all' => true], ];

  2. Configure the Elasticsearch host in config/packages/elastic_ml.yaml:

    
    elastic_ml:
        host: 'http://localhost:9200'

Usage

Creating an ML Job via Symfony Command:

php bin/console elastic:ml:create-job --jobId=my-job-id --index=my-index

Example Output:

Job created successfully!

Troubleshooting:

Activate a trial license:

curl -X POST "http://localhost:9200/_license/start_trial?acknowledge=true"

. Upgrade your Elasticsearch license to a Gold or Platinum subscription to access ML features.

. No alive nodes: All the nodes seem to be down: This error indicates that Elasticsearch is either not running or unreachable.

Ensure Elasticsearch is running:

   sudo systemctl start elasticsearch

If using Docker, ensure the container is running:

   docker start <elasticsearch-container-id>

Configuration

Development

Code Structure:

Testing

php bin/phpunit

Future Enhancements

License

This bundle is licensed under the MIT License. See LICENSE for more information.


All versions of elastic-ml-bundle with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
symfony/framework-bundle Version ^5.0 || ^6.0
elasticsearch/elasticsearch Version ^7.0 || ^8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package hch/elastic-ml-bundle contains the following files

Loading the files please wait ...