You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Versions < 7.0.0 of this gem supported inheritance-- more specifically, `Single Table Inheritance`. With this feature,
757
-
settings on a parent model could be inherited by a child model leading to different model documents being indexed
758
-
into the same Elasticsearch index. This feature depended on the ability to set a `type` for a document in Elasticsearch.
759
-
The Elasticsearch team has deprecated support for `types`, as is described [here](https://www.elastic.co/guide/en/elasticsearch/reference/current/removal-of-types.html)
760
-
so this gem has also removed support as it encourages an anti-pattern. Please save different model documents in
761
-
separate indices or implement an artificial `type` field manually in each document.
757
+
elasticsearch settings (index mappings, etc) on a parent model could be inherited by a child model leading to different
758
+
model documents being indexed into the same Elasticsearch index. This feature depended on the ability to set a `type`
759
+
for a document in Elasticsearch. The Elasticsearch team has deprecated support for `types`, as is described
0 commit comments