FOSElasticaBundle
FOSElasticaBundle copied to clipboard
Elasticsearch PHP integration for your Symfony project using Elastica.
I have a database, and I deleted a relationship via gedmo softdeletable. I created the mapping, via the YAML file, and when I execute the following command **fos:elastica:populate** i get...
my date field is text type... `'addDate' => $offer->getAddDate() ? $offer->getAddDate()->format('c') : null,` my price is text type.... ` 'price' => $offer->getPrice(),` when i ` 'price' => (double) $offer->getPrice(),` i...
Using `fos_elastica.finder.post_index.post` service to get list of sugesstion available from my mapping: ``` fos_elastica: clients: default: { host: elasticsearch, port: 9200 } indexes: post_index: client: default index_name: post_index types: post:...
Hello, I try to populate index with alias. This index have two types, but when the first type is populated, any additions / deletions are not present in my new...
When I run `./bin/console fos:elastica:populate --pager-persister=queue` I get `Dbal transport does not support temporary queues` What does `--pager-persister=queue` do exactly?
As far as I understood bundle doesn't support join datatype unlike ruflin/Elastica. Do you have join datatype in your roadmap? ``` { "mappings": { "_doc": { "properties": { "my_join_field": {...
I want to know how I can apply different sorting filters in FOSElasticaBundle, a more detailed about what I want to achieve it is found here: https://stackoverflow.com/questions/58363737/how-to-add-some-filter-based-on-custom-score-using-foselasticabundle
I want to get child object from my product. Is it **fos_elastica.yaml** file ``` fos_elastica: clients: default: { host: elasticsearch, port: 9200 } indexes: photos: types: photo: properties: name: ~...
Hi, I'am a beginner, I'm using ES 6.1.1 When I run populate command the progress bar stops at 75% : ``` root@ce30fac77888/app# php bin/console fos:elastica:populate Resetting ndx_etablissement 12763/16797 [=====================>------] 75%...
we have an index called "leads", part of config of this index is: indexes: leads: use_alias: true index_name: leads when running pupolate command it works as expected: alias and timestamped...