Repository: incubator-atlas Updated Branches: refs/heads/master ad36c887d -> f671d3ad7
ATLAS-334 Update documentation to reflect copying required atlas file on solr installation (sumasai via shwethags) Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/f671d3ad Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/f671d3ad Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/f671d3ad Branch: refs/heads/master Commit: f671d3ad71cf00f275427bac79c3064deeab7be0 Parents: ad36c88 Author: Shwetha GS <[email protected]> Authored: Mon Nov 23 12:17:27 2015 +0530 Committer: Shwetha GS <[email protected]> Committed: Mon Nov 23 12:17:27 2015 +0530 ---------------------------------------------------------------------- docs/src/site/twiki/InstallationSteps.twiki | 13 ++++++++----- release-log.txt | 1 + 2 files changed, 9 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/f671d3ad/docs/src/site/twiki/InstallationSteps.twiki ---------------------------------------------------------------------- diff --git a/docs/src/site/twiki/InstallationSteps.twiki b/docs/src/site/twiki/InstallationSteps.twiki index fa7b858..8d1f3d0 100644 --- a/docs/src/site/twiki/InstallationSteps.twiki +++ b/docs/src/site/twiki/InstallationSteps.twiki @@ -136,17 +136,20 @@ Pre-requisites for running HBase as a distributed cluster By default, Atlas uses Titan as the graph repository and is the only graph repository implementation available currently. For configuring Titan to work with Solr, please follow the instructions below <verbatim> -* Install solr if not already running. Version of SOLR supported is 5.2.1. +* Install solr if not already running. The version of SOLR supported is 5.2.1. Could be installed from http://archive.apache.org/dist/lucene/solr/5.2.1/solr-5.2.1.tgz * Start solr in cloud mode. SolrCloud mode uses a ZooKeeper Service as a highly available, central location for cluster management. For a small cluster, running with an existing ZooKeeper quorum should be fine. For larger clusters, you would want to run separate multiple ZooKeeper quorum with atleast 3 servers. Note: Atlas currently supports solr in "cloud" mode only. "http" mode is not supported. For more information, refer solr documentation - https://cwiki.apache.org/confluence/display/solr/SolrCloud -* Run the following commands from SOLR_HOME directory to create collections in Solr corresponding to the indexes that Atlas uses - bin/solr create -c vertex_index -d ATLAS_HOME/conf/solr -shards #numShards -replicationFactor #replicationFactor - bin/solr create -c edge_index -d ATLAS_HOME/conf/solr -shards #numShards -replicationFactor #replicationFactor - bin/solr create -c fulltext_index -d ATLAS_HOME/conf/solr -shards #numShards -replicationFactor #replicationFactor +* Run the following commands from SOLR_HOME directory to create collections in Solr corresponding to the indexes that Atlas uses. In the case that the ATLAS and SOLR instance are on 2 different hosts, + first copy the required configuration files from ATLAS_HOME/conf/solr on the ATLAS instance host to the Solr instance host. SOLR_CONF in the below mentioned commands refer to the directory where the solr configuration files + have been copied to on Solr host: + + bin/solr create -c vertex_index -d SOLR_CONF -shards #numShards -replicationFactor #replicationFactor + bin/solr create -c edge_index -d SOLR_CONF -shards #numShards -replicationFactor #replicationFactor + bin/solr create -c fulltext_index -d SOLR_CONF -shards #numShards -replicationFactor #replicationFactor Note: If numShards and replicationFactor are not specified, they default to 1 which suffices if you are trying out solr with ATLAS on a single node instance. Otherwise specify numShards according to the number of hosts that are in the Solr cluster and the maxShardsPerNode configuration. http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/f671d3ad/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 6763fd2..401440c 100644 --- a/release-log.txt +++ b/release-log.txt @@ -9,6 +9,7 @@ ATLAS-54 Rename configs in hive hook (shwethags) ATLAS-3 Mixed Index creation fails with Date types (sumasai via shwethags) ALL CHANGES: +ATLAS-334 Update documentation to reflect copying required atlas file on solr installation (sumasai via shwethags) ATLAS-294 Select queries(ex: from DB select DB.name) response contains column names as "_col_x" instead of the actual names requested in the query.(thiyag via sumasai) ATLAS-297 KafkaNotificationTest.testSendReceiveMessage fails when atlas-server is running on the same machine (yhemanth via shwethags) ATLAS-306 change javadoc generation from 'package' to 'site' phase(jspeidel via sumasai)
