Skip to content

Commit

Permalink
Merge pull request #61 from collective/docs-restructuring
Browse files Browse the repository at this point in the history
Docs restructuring
  • Loading branch information
tisto committed Jun 24, 2015
2 parents 71443fd + 0f7048d commit 9655aa4
Show file tree
Hide file tree
Showing 39 changed files with 734 additions and 532 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ var
*.mo
*.*~
.*.cfg
docs/doctrees/
docs/html/
.Python
pip-selfcheck.json
.idea
9 changes: 5 additions & 4 deletions docs/Makefile → Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@

# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = /home/timo/workspace/krebswegweiser/src/collective.solr/bin/sphinx-build
SPHINXBUILD = sphinx-build
PAPER =
BUILDDIR = /home/timo/workspace/krebswegweiser/src/collective.solr/docs
BUILDDIR = build/docs
SOURCE = docs

# Internal variables.
PAPEROPT_a4 = -D latex_paper_size=a4
PAPEROPT_letter = -D latex_paper_size=letter
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) /home/timo/workspace/krebswegweiser/src/collective.solr/docs/source
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) $(SOURCE)
# the i18n builder cannot share the environment and doctrees with the others
I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) /home/timo/workspace/krebswegweiser/src/collective.solr/docs/source
I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) $(SOURCE)

.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext

Expand Down
562 changes: 67 additions & 495 deletions README.rst

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions buildout.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ extends =
parts +=
autopep8
releaser
sphinxbuilder

[solr-download]
recipe = hexagonit.recipe.download
Expand All @@ -21,3 +22,7 @@ recipe = zc.recipe.egg
eggs =
zest.releaser
zest.pocompile

[sphinxbuilder]
recipe = collective.recipe.sphinxbuilder
source = ${buildout:directory}/docs
6 changes: 2 additions & 4 deletions CHANGES.rst → docs/CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -314,17 +314,15 @@ Changelog
3.0a1 - 2011-06-23
------------------

Upgrade notes
*************
**Upgrade notes**

* Changed the names of the indexes used to emulate the `path` index. You need
to adjust your schema and rename `physicalPath` to `path_string`,
`physicalDepth` to `path_depth` and `parentPaths` to `path_parents`. This
also requires a full Solr reindex to pick up the new data.
[hannosch]

Changes
*******
**Changes**

* Added `object_provides` index to example schema, as it's used in the
collection portlet to find collections.
Expand Down
3 changes: 3 additions & 0 deletions docs/_static/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
README

In this folder should all static components (images, videos, ...) placed.
7 changes: 7 additions & 0 deletions docs/base/dependencies.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Dependencies
------------

Currently we depend on `collective.indexing` as a means to hook into the normal catalog machinery of Plone to detect content changes.
`c.indexing` before version two had some persistent data structures that frequently caused problems when removing the add-on. These problems have been fixed in version two.
Unfortunately `c.indexing` still has to hook the catalog machinery in various evil ways, as the machinery lacks the required hooks for its use-case.
Going forward it is expected for `c.indexing` to be merged into the underlying `ZCatalog` implementation, at which point `collective.solr` can use those hooks directly.
17 changes: 17 additions & 0 deletions docs/base/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Base Information how Solr and the Integration of Solr and Plone work
====================================================================



Architecture
------------

When working with Solr it's good to keep some things about it in mind.
This information is targeted at developers and integrators trying to use and extend Solr in their Plone projects.

.. toctree::
:maxdepth: 3

dependencies
indexing
searching
39 changes: 39 additions & 0 deletions docs/base/indexing.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
Indexing
********

Solr is not transactional aware or supports any kind of rollback or undo.
We therefor only sent data to Solr at the end of any successful request.
This is done via collective.indexing, a transaction manager and an end request transaction hook.
This means you won't see any changes done to content inside a request when doing Solr searches later on in the same request.
Inside tests you need to either commit real transactions or otherwise flush the Solr connection.
There's no transaction concept, so one request doing a search might get some results in its beginning, than a different request might add new information to Solr.
If the first request is still running and does the same search again it might get different results taking the changes from the second request into account.

Solr is not a real time search engine.
While there's work under way to make Solr capable of delivering real time results, there's currently always a certain delay up to some minutes from the time data is sent to Solr to when it is available in searches.

Search results are returned in Solr by distinct search threads.
These search threads hold a great number of caches which are crucial for Solr to perform.
When index or unindex operations are sent to Solr, it will keep those in memory until a commit is executed on its own search index.
When a commit occurs, all search threads and thus all caches are thrown away and new threads are created reflecting the data after the commit.
While there's a certain amount of cache data that is copied to the new search threads, this data has to be validated against the new index which takes some time.
The `useColdSearcher` and `maxWarmingSearchers` options of the Solr recipe relate to this aspect.
While cache data is copied over and validated for a new search thread, the searcher is `warming up`.
If the warming up is not yet completed the searcher is considered to be `cold`.

In order to get real good performance out of Solr, we need to minimize the number of commits against the Solr index.
We can achieve this by turning off `auto-commit` and instead use `commitWithin`.
So we don't sent a `commit` to Solr at the end of each index/unindex request on the Plone side.
Instead we tell Solr to commit the data to its index at most after a certain time interval.
Values of 15 minutes to 1 minute work well for this interval.
The larger you can make this interval, the better the performance of Solr will be, at the cost of search results lagging behind a bit.
In this setup we also need to configure the `autoCommitMaxTime` option of the Solr server, as `commitWithin` only works for index but not unindex operations.
Otherwise a large number of unindex operations without any index operations occurring could not be reflected in the index for a long time.

As a result of all the above, the Solr index and the Plone site will always have slightly diverging contents.
If you use Solr to do searches you need to be aware of this, as you might get results for objects that no longer exist.
So any `brain/getObject` call on the Plone side needs to have error handling code around it as the object might not be there anymore and traversing to it can throw an exception.

When adding new or deleting old content or changing the workflow state of it, you will also not see those actions reflected in searches right away, but only after a delay of at most the `commitWithin` interval.
After a `commitWithin` operation is sent to Solr, any other operations happening during that time window will be executed after the first interval is over.
So with a 15 minute interval, if document A is indexed at 5:15, B at 5:20 and C at 5:35, both A & B will be committed at 5:30 and C at 5:50.
54 changes: 54 additions & 0 deletions docs/base/searching.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
Searching
*********

Information retrieval is a complex science.
We try to give a very brief explanation here, refer to the literature and documentation of Lucene/Solr for much more detailed information.

If you do searches in normal Plone, you have a search term and query the SearchableText index with it.
The SearchableText is a simple concatenation of all searchable fields, by default title, description and the body text.

The default ZCTextIndex in Plone uses a simplified version of the Okapi BM25 algorithm described in papers in 1998.
It uses two metrics to score documents:

- Term frequency: How often does a search term occur in a document
- Inverse document frequency: The inverse of in how many documents a term occurs.
Terms only occurring in a few documents are scored higher than those occurring in many documents.

It calculates the sum of all scores, for every term common to the query and any document.
So for a query with two terms, a document is likely to score higher if it contains both terms, except if one of them is a very common term and the other document contains the non-common term more often.

The similarity function used in Solr/Lucene uses a different algorithm, based on a combination of a boolean and vector space model, but taking the same underlying metrics into account.
In addition to the term frequency and inverse document frequency Solr respects some more metrics:

- length normalization: The number of all terms in a field.
Shorter fields contribute higher scores compared to long fields.
- boost values: There's a variety of boost values that can be applied, both index-time document boost values as well as boost values per search field or search term

In its pre 2.0 versions, collective.solr used a naive approach and mirrored the approach taken by ZCTextIndex.
So it sent each search query as one query and matched it against the full SearchableText field inside Solr.
By doing that Solr basically used the same algorithm as ZCTextIndex as it only had one field to match with the entire text in it.
The only difference was the use of the length normalization, so shorter documents ranked higher than those with longer texts.
This actually caused search quality to be worse, as you'd frequently find folders, links or otherwise rather empty documents.
The Okapi BM25 implementation in ZCTextIndex deliberately ignores the document length for that reason.

In order to get good or better search quality from Solr, we have to query it in a different way.
Instead of concatenating all fields into one big text, we need to preserve the individual fields and use their intrinsic importance.
We get the main benefit be realizing that matches on the title and description are more important than matches on the body text or other fields in a document.
collective.solr 2.0+ does exactly that by introducing a `search-pattern` to be used for text searches. In its default form it causes each query to work against the title, description and full searchable text fields and boosts the title by a high and the description by a medium value.
The length normalization already provides an improvement for these fields, as the title is likely short, the description a bit longer and the full text even longer.
By using explicit boost values the effect gets to be more pronounced.

If you do custom searches or want to include more fields into the full text search you need to keep the above in mind.
Simply setting the `searchable` attribute on the schema of a field to `True` will only include it in the big searchable text stream.
If you for example include a field containing tags, the simple tag names will likely 'drown' in the full body text.
You might want to instead change the search pattern to include the field and potentially put a boost value on it - though it will be more important as it's likely to be extremely short.
Similarly extracting the full text of binary files and simply appending them into the search stream might not be the best approach.
You should rather index those in a separate field and then maybe use a boost value of less than one to make the field less important.
Given two documents with the same content, one as a normal page and one as a binary file, you'll likely want to find the page first, as it's faster to access and read than the file.


There's a good number of other improvements you can do using query time and index time boost values.
To provide index time boost values, you can provide a skin script called `solr_boost_index_values` which gets the object to be indexed and the data sent to Solr as arguments and returns a dictionary of field names to boost values for each document.
The safest is to return a boost value for the empty string, which results in a document boost value.
Field level boost values don't work with all searches, especially wildcard searches as done by most simple web searches.
The index time boost allows you to implement policies like boosting certain content types over others, taking into account ratings or number of comments as a measure of user feedback or anything else that can be derived from each content item.
4 changes: 2 additions & 2 deletions docs/source/conf.py → docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

# General information about the project.
project = u'collective.solr'
copyright = u'2013, Plone Foundation'
copyright = u'2015, Plone Foundation'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -91,7 +91,7 @@

# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = 'default'
#html_theme = 'alabaster'

# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
Expand Down
29 changes: 29 additions & 0 deletions docs/contributors.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
Contributors
============

* Hanno Schlichting (hannosh)
* Tom Gross (tomgross)
* Timo Stollenwerk (tisto)
* Manuel Reinhardt (reinhardt)
* Patrick Gerken (do3cc)
* Andreas Zeidler (witsch)
* Martijn Pieters (mjpieters)
* Carsten Senger (csenger)
* Andrea Cecchi (cekk)
* Florian Schulze (fschulze)
* Mauro Amico (mamico)
* Giacomo Spettoli (giacomos)
* (jkubaile)
* Luca Fabbri (keul)
* Witek (witekdev)
* Laurence Rowe (lrowe)
* JC Brand (jcbrand)
* Daniel Widerin (saily)
* Wolfgang Thomas (pysailor)
* Philip Bauer (pbauer)
* Cédric Messiant (cedricmessiant)
* Rodrigo (rristow)
* (tschorr)
* Alexander Pilz (pilz)
* Jean Jordaan (jean)
* Alexander Loechel (loechel)
10 changes: 10 additions & 0 deletions docs/credits.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Credits
=======

This code was inspired by `enfold.solr`_ by `Enfold Systems`_ as well as work done at the `Snow Sprint 2008`_.
The `solr.py` module is based on the original python integration package from `Solr`_ itself.

Development was kindly sponsored by `Elkjop`_ and the `Nordic Council and Nordic Council of Ministers`_.


.. include:: indexes.rst
1 change: 1 addition & 0 deletions TODO.txt → docs/development/TODO.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
TODOs:
------

* Migrate tests to use plone.app.testing
* Migrate control panel to use plone.autoform and plone.app.registry
Expand Down
12 changes: 12 additions & 0 deletions docs/development/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Development
===========

Releases can be found on the Python Package Index at http://pypi.python.org/pypi/collective.solr.
The code and issue trackers can be found on GitHub at https://github.com/collective/collective.solr.

For outstanding issues and features remaining to be implemented please see the `to-do list`__ included in the package as well as it's `issue tracker`__.

.. __: https://github.com/collective/collective.solr/blob/master/docs/TODO.rst
.. __: https://github.com/collective/collective.solr/issues

.. include:: TODO.rst
14 changes: 14 additions & 0 deletions docs/features/binary.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Indexing binary documents
*************************

At this point collective.solr uses Plone's default capabilities to index binary documents via `portal_transforms` and installing command line tools like `wv2` or `pdftotext`.
Work is under way to expose and use the `Apache Tika`_ Solr integration available via the `update/extract` handler.

Once finished this will speed up indexing of binary documents considerably, as the extraction will happen out-of-process on the Solr server side.
`Apache Tika`_ also supports a much larger list of formats than can be supported by adding external command line tools.

There is room for more improvements in this area, as c.solr will still send the binary data to Solr as part of the end-user request/transaction.
To further optimize this, Solr index operations can be stored in a task queue as provided by `plone.app.async` or solutions build on top of `Celery`.
This is currently outside the scope of `collective.solr`.

.. _`Apache Tika`: http://tika.apache.org/
14 changes: 14 additions & 0 deletions docs/features/exclude.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Exclude from search and elevation
---------------------------------

By default this add-on introduces two new fields to the default content types or any custom type derived from ATContentTypes.

The `showinsearch` boolean field lets you hide specific content items from the search results, by setting the value to `false`.

The `searchwords` lines field allows you to specify multiple phrases per content item.
A phrase is specified per line.
User searches containing any of these phrases will show the content item as the first result for the search.
This technique is also known as `elevation`.

Both of these features depend on the default `search-pattern` to include the required parts as included in the default configuration.
The `searchwords` approach to elevation doesn't depend on the Solr elevation feature, as that would require maintaining a xml file as part of the Solr server configuration.
10 changes: 10 additions & 0 deletions docs/features/facets.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Facets
******

Plone's default search form is overridden to provide faceting support.
The available facets can be configured in the control panel.
The provided search form is currently more of an example and not used in many real world projects.
You likely want to override it with a custom implementation for your specific site.

Starting with Plone 4.2, Plone will contain a modernized search form whose UI supports faceting more naturally.
At some point `c.solr` will extend this new search form rather than providing its own.
12 changes: 12 additions & 0 deletions docs/features/highlighting.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Search Term Highlighting
************************

Solr can return snippets of text in which the search term occurs.
The size of the snippets is configurable as are the strings that the search terms will be wrapped in.

For highlighting to work the target field must be a "stored" field in the Solr schema.
Usually you'll want to use SearchableText for highlighting.
However, the contents of the SearchableText field tend to be quite large.
Without further configuration the full contents of the SearchableText of all result items will be transferred from Solr to Plone.
To avoid this you can define a list of fields to be returned from Solr.
Omitting SearchableText from this list might solve network or memory problems that could otherwise occur.
41 changes: 41 additions & 0 deletions docs/features/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
Features
========

Once installed and configured, this add-on introduces a number of end-user features.

Solr Features
-------------



Features of Solr Integration into Plone
---------------------------------------


Search Enhancements
*******************




ZCTextIndex Replacement
***********************






Old full description of Features
--------------------------------

.. toctree::
:maxdepth: 2

languages
exclude
facets
binary
wildcard
suggestions
highlighting
20 changes: 20 additions & 0 deletions docs/features/languages.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Supported scripts and languages
*******************************

In the default configuration all languages and scripts should be supported.
This broad support comes at the expense of avoiding any language specific configuration.

The default text analysis uses libraries based on ICU standards to fold and normalize any text as well as find token boundaries - in most languages word boundaries.

Accented characters are folder into their unaccented base form and many other characters are normalized.
This normalization is similar to what Plone does when generating url identifiers from titles.
These changes are applied both to the indexed text and the user provided search query, so in general there's a large number of matches at the expense of specificity.

Non-alphabetic characters like hyphens, dots and colons are interpreted as word boundaries, while case changes and alphanumeric combinations are left intact; for example `WiFi` or `IPv4` will only be lower-cased but not split.

For any specific site, you likely know the supported content languages and could further tune the text analysis.
A common example is the use of stemming, to generate base words for terms.
This helps to avoid distinctions between singular and plural forms of a word or it being used as an adjective.
Stemming broadens the found result even more, at a greater expense of specificity and needs to be used carefully.

There's a plethora of text analysis options available in Solr if you are interested in the subject or have specific needs.

0 comments on commit 9655aa4

Please sign in to comment.