This repository has been archived by the owner on Dec 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e21338f
commit 095e4e6
Showing
125 changed files
with
10,857 additions
and
2,613 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,63 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
Example "Solr Home" Directory | ||
============================= | ||
|
||
This directory is provided as an example of what a "Solr Home" directory | ||
should look like. | ||
|
||
It's not strictly necessary that you copy all of the files in this | ||
directory when setting up a new instance of Solr, but it is recommended. | ||
|
||
|
||
Basic Directory Structure | ||
------------------------- | ||
|
||
The Solr Home directory typically contains the following subdirectories... | ||
|
||
conf/ | ||
This directory is mandatory and must contain your solrconfig.xml | ||
and schema.xml. Any other optional configuration files would also | ||
be kept here. | ||
|
||
contrib/ | ||
This directory contains 'contrib' modules from the Solr | ||
example application. Libraries to load are configured in the | ||
./config/solrconfig.xml. | ||
|
||
data/ | ||
This directory is the default location where Solr will keep your | ||
index, and is used by the replication scripts for dealing with | ||
snapshots. You can override this location in the solrconfig.xml | ||
and scripts.conf files. Solr will create this directory if it | ||
does not already exist. | ||
|
||
lib/ | ||
This directory is optional. If it exists, Solr will load any Jars | ||
found in this directory and use them to resolve any "plugins" | ||
specified in your solrconfig.xml or schema.xml (ie: Analyzers, | ||
Request Handlers, etc...) | ||
|
||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
Example Solr Home Directory | ||
============================= | ||
|
||
This directory is provided as an example of what a "Solr Home" directory | ||
should look like. | ||
|
||
It's not strictly necessary that you copy all of the files in this | ||
directory when setting up a new instance of Solr, but it is recommended. | ||
|
||
|
||
Basic Directory Structure | ||
------------------------- | ||
|
||
The Solr Home directory typically contains the following... | ||
|
||
* solr.xml * | ||
|
||
This is the primary configuration file Solr looks for when starting. | ||
This file specifies the list of "SolrCores" it should load, and high | ||
level configuration options that should be used for all SolrCores. | ||
|
||
Please see the comments in ./solr.xml for more details. | ||
|
||
If no solr.xml file is found, then Solr assumes that there should be | ||
a single SolrCore named "collection1" and that the "Instance Directory" | ||
for collection1 should be the same as the Solr Home Directory. | ||
|
||
* Individual SolrCore Instance Directories * | ||
|
||
Although solr.xml can be configured to look for SolrCore Instance Directories | ||
in any path, simple sub-directories of the Solr Home Dir using relative paths | ||
are common for many installations. In this directory you can see the | ||
"./collection1" Instance Directory. | ||
|
||
* A Shared 'lib' Directory * | ||
|
||
Although solr.xml can be configured with an optional "sharedLib" attribute | ||
that can point to any path, it is common to use a "./lib" sub-directory of the | ||
Solr Home Directory. | ||
|
||
* ZooKeeper Files * | ||
|
||
When using SolrCloud using the embedded ZooKeeper option for Solr, it is | ||
common to have a "zoo.cfg" file and "zoo_data" directories in the Solr Home | ||
Directory. Please see the SolrCloud wiki page for more details... | ||
|
||
https://wiki.apache.org/solr/SolrCloud |
This file was deleted.
Oops, something went wrong.
246 changes: 0 additions & 246 deletions
246
jetty/solr/blacklight-core/conf/mapping-ISOLatin1Accent.txt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.