You can update limit of total fields after index has been created:
PUT my_index/_settings
{
"index.mapping.total_fields.limit": 2000
}
Note too many fields will lead to mapping explosion, which is a not good practice.
You can update limit of total fields after index has been created:
PUT my_index/_settings
{
"index.mapping.total_fields.limit": 2000
}
Note too many fields will lead to mapping explosion, which is a not good practice.
© 2020. All Rights Reserved - Elasticsearch
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.