Hi
I am looking for some documentation of elastic search api urls and query paramaters sample and how to add custom search attribute
Thanks
I am currently working on redefining this experience. But today this is a two step process:
- Modify ES schema and add new indexed fields. You can simple add mapping to existing schema with:
or modify existing template and recreate the index similarly as we do during development.POST /temporal-visibility-dev/_mapping { "properties": { "Attr": { "properties": { "YouFieldName": { "type": "your-filed-type" }, } } } }
- Add new attribute to dynamic config.
Thanks @alex
Any reference documents on the usage on using these in client mode using java SDK. How do I update these from client code.