1. Leave services or cluster running.
2. Generate the new writer core which causes Solr to roll the previous writer core to warm.
curl -H "X-Auth-Token: `psql -p 5002 -d cb -t -c 'select auth_token from cb_user where id = '1';'`" -XPOST -k "https://localhost/api/v1/storage/events/new_partition"
curl -H "X-Auth-Token:<admin user token from Primary>" -XPOST -k "https://localhost/api/v1/storage/events/new_partition"
3. Confirm the new Solr core was generated.
ls -latr /var/cb/data/solr/cbevents
The last entry should have a current date timestamp.
4. Confirm the new warm core has the correct name in core.properties.
cat /var/cb/data/solr/cbevents/<name of previous cbevents directory>/core.properties (Variable 'name=' should match the folder name.)
5. Confirm the new writer core has the name 'writer' inside core.properties file.
cat /var/cb/data/solr/cbevents/<name of newly created cbevents directory>/core.properties (The variable name should contain 'name=writer')