-
Release
-
Resolution: Done
-
Medium
-
None
-
None
Release steps
- Upload newly created /configuration/data/config/security_restapi_cors.json configuration file - (https://github.com/searchisko/searchisko/issues/160)
- Update /configuration/index_templates/data_default.json index template (https://github.com/searchisko/searchisko/issues/143)
- Update sys_contributors mapping (https://github.com/searchisko/searchisko/issues/137)
- Update sys_projects to always contain product information by running sh init-projects.sh from ./configuration/data/projects/ directory.
- Jira mapping update and reindexation (https://github.com/searchisko/searchisko/pull/148 and ORG-2248)
- stop jira indexer - curl --user <LOGIN>:<PASSWORD> -X POST <DCP_URL>/v1/rest/indexer/jbossorg_jira_issue/_stop
- update mapping - sh init_mapping.sh data_jbossorg_jira/jbossorg_jira_issue.json <ES_API_URL> <LOGIN> <PASSWORD>
- Update river config - sh init_river.sh jbossorg_jira.json <ES_API_URL> <LOGIN> <PASSWORD>
- start river - curl --user <LOGIN>:<PASSWORD> -X POST <DCP_URL>/v1/rest/indexer/jbossorg_jira_issue/_restart
- (optional) force reindex - curl --user <LOGIN>:<PASSWORD> -X POST <DCP_URL>/v1/rest/indexer/jbossorg_jira_issue/_force_reindex
- SBS forums mapping update and reindexation (ORG-2248)
- stop sbs_forums indexer - curl --user <LOGIN>:<PASSWORD> -X POST <DCP_URL>/v1/rest/indexer/jbossorg_sbs_forum/_stop
- update mapping - sh init_mapping.sh data_jbossorg_sbs_forum/jbossorg_sbs_forum.json <ES_API_URL> <LOGIN> <PASSWORD>
- Update river config - sh init_river.sh jbossorg_sbs_forum.json <ES_API_URL> <LOGIN> <PASSWORD>
- start river - curl --user <LOGIN>:<PASSWORD> -X POST <DCP_URL>/v1/rest/indexer/jbossorg_sbs_forum/_restart
- (optional) force reindex - curl --user <LOGIN>:<PASSWORD> -X POST <DCP_URL>/v1/rest/indexer/jbossorg_sbs_forum/_force_reindex
- SBS articles mapping update and reindexation (ORG-2248)
- stop sbs_article indexer - curl --user <LOGIN>:<PASSWORD> -X POST <DCP_URL>/v1/rest/indexer/jbossorg_sbs_article/_stop
- update mapping - sh init_mapping.sh data_jbossorg_sbs_article/jbossorg_sbs_article.json <ES_API_URL> <LOGIN> <PASSWORD>
- Update river config - sh init_river.sh jbossorg_sbs_article.json <ES_API_URL> <LOGIN> <PASSWORD>
- start river - curl --user <LOGIN>:<PASSWORD> -X POST <DCP_URL>/v1/rest/indexer/jbossorg_sbs_article/_restart
- (optional) force reindex - curl --user <LOGIN>:<PASSWORD> -X POST <DCP_URL>/v1/rest/indexer/jbossorg_sbs_article/_force_reindex
- Push the new jbossorg provider definition (ORG-2248)
- sh init-provider.sh jbossorg.json <DCP_URL> <LOGIN> <PASSWORD>
- Feeds mapping update and reindexation from persistence (ORG-2248)
- update mapping - sh init_mapping.sh data_jbossorg_blog/jbossorg_blogpost.json <ES_API_URL> <LOGIN> <PASSWORD>
- reindex data from persistence - curl --user <LOGIN>:<PASSWORD> -H "Content-Type: application/json" -X POST '<DCP_URL>/v1/rest/tasks/task/reindex_from_persistence' -d '
{
"sys_content_type" : "jbossorg_blog"
}'
- Update AS configuration (https://github.com/searchisko/searchisko/pull/154)
- Copy this cache configuration into <subsystem xmlns="urn:jboss:domain:infinispan:1.5"> section of standalone.xml:
<cache-container name="security" default-cache="auth-cache"> <local-cache name="auth-cache" batching="true"> <expiration lifespan="10000"/> </local-cache> </cache-container> <cache-container name="searchisko"> <local-cache name="searchisko-user-roles"> <expiration lifespan="1800000"/> </local-cache> </cache-container>
- Update SearchiskoSecurityDomain from
<security-domain name="SearchiskoSecurityDomain">
to
<security-domain name="SearchiskoSecurityDomain" cache-type="infinispan">
- Copy this cache configuration into <subsystem xmlns="urn:jboss:domain:infinispan:1.5"> section of standalone.xml:
- Update sys_projects definitions (ORG-2266) - execute ./configuration/data/project/init-projects.sh
- Upgrade all DCP clients to use /v2/rest API
- planet -
ORG-2290 - www - TODO
- planet -
General Notes
- Because Searchisko 2.0.0 upgrades to Elasticsearch 1.3.0 (from 0.90.5) a full restart of Elasticsearch cluster is needed
- incorporates
-
DEVELOPER-1054 Fix typo in DCP index name configuration for data_jbossdeveloper_demo
- Done