close

Filter

loading table of contents...

Release Notes / Version 10.2107

Table Of Contents

CoreMedia Core

Added parametric HTTP endpoint to re-indexing CAE Feeder

The CAE Feeder application now has a specific parametric endpoint to trigger a re-indexing without using JMX. The endpoint is available at :40781/actuator/reindex and is enabled by default. To perform a partial re-indexing send a HTTP POST request i.e.

curl --request POST \
  --url http://localhost:40781/actuator/reindex \
  --header 'Content-Type: application/json' \
  --data '{
	"ids": "1234,5678",
	"contentTypes": "CMArticle,CMPicture",
	"query": "BELOW PATH '\''/Sites/Calista'\''"
}'

See the Search Manual, section "Partial Reindexing of CAE Feeder Indices" for more information.

(CMS-19831)

Added endpoint to disable/enable the replicator service

The replication-server application now has a specific endpoint to disable and enable the replicator service without using JMX. The endpoint is available at :8081/actuator/replicator and is enabled by default. To disable replication send a HTTP POST request i.e.

curl -X POST \
  -H "Content-Type: application/json" \
  -d '{"enable": false}'  \
  http://localhost:8081/actuator/replicator

(CMS-18545)

Search Results

Table Of Contents