|
Lines 34-37
INDEXER_TIMEOUT=5
Link Here
|
| 34 |
# |
34 |
# |
| 35 |
# INDEXER_PARAMS="" |
35 |
# INDEXER_PARAMS="" |
| 36 |
|
36 |
|
|
|
37 |
# Elasticsearch default options. Specifying the command line options to |
| 38 |
# koha-elasticsearch will override these |
| 39 |
|
| 40 |
# Should biblios be indexed by default? |
| 41 |
ES_INDEX_BIBLIOS="yes" |
| 42 |
# Should authorities be indexed by default? |
| 43 |
ES_INDEX_AUTHORITIES="yes" |
| 44 |
# How many records should be batched for committing to elasticsearch at one time. You |
| 45 |
# might want to decrease this if you're having issues with memory. |
| 46 |
# Equivalent to '--commit' |
| 47 |
ES_COMMIT_SIZE=5000 |
| 48 |
# Now many parallel processes to use for indexing. If you have CPU |
| 49 |
# cores to spare, this might be worth increasing. |
| 50 |
# Equivalent to '--processes' |
| 51 |
ES_NUMBER_OF_PROCESSES=1 |
| 52 |
# Should the output be verbose by default? |
| 53 |
# Equivalent to '--verbose' |
| 54 |
ES_VERBOSE="no" |
| 55 |
# A string that's supplied as a "where" query that can limit the records being idexed. |
| 56 |
# You probably don't want to use this by default expect in some sort of special case. |
| 57 |
# Equivalent to '--where' |
| 58 |
#ES_WHERE_QUERY_SQL="" |
| 59 |
|
| 37 |
## End of general koha-common default options |
60 |
## End of general koha-common default options |