- 🇪🇸Spain manuel.adan 🌌
Moving to fixed since it is already committed and published into the last alpha4 release.
Automatically closed - issue fixed for 2 weeks with no activity.
Elasticsearch connector for Drupal 8 doesn't support facet date.
Fields date are stored in Elasticsearch service in 'strict_date_optional_time||epoch_second' format.
Dates are stored in milliseconds (example 1409231700000).
The facets module require date in timestamp seconds format (1409231700). The facets from elasticsearch values are broken.
Elasticsearch connector to Drupal 8 have a parseSearchFacets function in SearchApiElasticsearchBackend.php file but is never called. parseSearchFacets function contains the conversion from epoch milliseconds to seconds.
I created a patch to convert the date from epoch milliseconds format to seconds. The patch add parseDateFacets function.
The patch have the same behavior of Elasticsearch connector for Drupal 7. The date is divided by 1000.
Fixed
7.0
Elasticsearch Connector
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Moving to fixed since it is already committed and published into the last alpha4 release.
Automatically closed - issue fixed for 2 weeks with no activity.