Advertisement
Guest User

Untitled

a guest
Apr 11th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. #
  2. # solrcore.properties - used in solrconfig.xml
  3. #
  4. # data is in ${data.dir.root}/${data.dir.store}
  5.  
  6. data.dir.root=/data/alf_data/solr4/index
  7. data.dir.store=archive/SpacesStore
  8. enable.alfresco.tracking=true
  9.  
  10. #
  11. # Alfresco version
  12. #
  13. alfresco.version=5.1.0 (r@scm-revision@-b@build-number@)
  14.  
  15.  
  16. #
  17. # Properties loaded during alfresco tracking
  18. #
  19.  
  20. alfresco.host=localhost
  21. alfresco.port=8080
  22. alfresco.port.ssl=8443
  23. alfresco.baseUrl=/alfresco
  24. alfresco.cron=0/15 * * * * ? *
  25. alfresco.stores=archive://SpacesStore
  26. #alfresco.index.transformContent=false
  27. #alfresco.ignore.datatype.1=d:content
  28. alfresco.lag=1000
  29. alfresco.hole.retention=3600000
  30. # alfresco.hole.check.after is not used yet
  31. # It will reduce the hole checking load
  32. alfresco.hole.check.after=300000
  33. alfresco.batch.count=1000
  34. alfresco.recordUnindexedNodes=false
  35.  
  36. # encryption
  37.  
  38. # none, https
  39. alfresco.secureComms=https
  40.  
  41. # ssl
  42. alfresco.encryption.ssl.keystore.type=JCEKS
  43. alfresco.encryption.ssl.keystore.provider=
  44. alfresco.encryption.ssl.keystore.location=ssl.repo.client.keystore
  45. alfresco.encryption.ssl.keystore.passwordFileLocation=ssl-keystore-passwords.properties
  46. alfresco.encryption.ssl.truststore.type=JCEKS
  47. alfresco.encryption.ssl.truststore.provider=
  48. alfresco.encryption.ssl.truststore.location=ssl.repo.client.truststore
  49. alfresco.encryption.ssl.truststore.passwordFileLocation=ssl-truststore-passwords.properties
  50.  
  51. # Tracking
  52.  
  53. alfresco.corePoolSize=1
  54. alfresco.maximumPoolSize=-1
  55. alfresco.keepAliveTime=120
  56. alfresco.threadPriority=5
  57. alfresco.threadDaemon=true
  58. alfresco.workQueueSize=-1
  59.  
  60. # HTTP Client
  61.  
  62. alfresco.maxTotalConnections=200
  63. alfresco.maxHostConnections=200
  64. alfresco.socketTimeout=360000
  65.  
  66. # SOLR caching
  67.  
  68. solr.filterCache.size=256
  69. solr.filterCache.initialSize=128
  70. solr.queryResultCache.size=1024
  71. solr.queryResultCache.initialSize=1024
  72. solr.documentCache.size=1024
  73. solr.documentCache.initialSize=1024
  74. solr.queryResultMaxDocsCached=2048
  75.  
  76. solr.authorityCache.size=128
  77. solr.authorityCache.initialSize=64
  78. solr.pathCache.size=256
  79. solr.pathCache.initialSize=128
  80.  
  81. solr.ownerCache.size=128
  82. solr.ownerCache.initialSize=64
  83.  
  84. solr.readerCache.size=128
  85. solr.readerCache.initialSize=64
  86.  
  87. solr.deniedCache.size=128
  88. solr.deniedCache.initialSize=64
  89.  
  90. # SOLR
  91.  
  92. solr.maxBooleanClauses=10000
  93.  
  94. # Batch fetch
  95.  
  96. alfresco.transactionDocsBatchSize=100
  97. alfresco.nodeBatchSize=10
  98. alfresco.changeSetAclsBatchSize=100
  99. alfresco.aclBatchSize=10
  100. alfresco.contentReadBatchSize=4000
  101. alfresco.contentUpdateBatchSize=1000
  102.  
  103. # Warming
  104.  
  105. solr.filterCache.autowarmCount=32
  106. solr.authorityCache.autowarmCount=4
  107. solr.pathCache.autowarmCount=32
  108. solr.deniedCache.autowarmCount=0
  109. solr.readerCache.autowarmCount=0
  110. solr.ownerCache.autowarmCount=0
  111. solr.queryResultCache.autowarmCount=4
  112. solr.documentCache.autowarmCount=512
  113.  
  114. solr.queryResultWindowSize=512
  115.  
  116.  
  117. #
  118. # TODO
  119. #
  120. # cross language support
  121. # locale expansion
  122. # logging check report ....
  123. #
  124. #
  125.  
  126.  
  127. alfresco.doPermissionChecks=true
  128.  
  129.  
  130. #
  131. # Metadata pulling control
  132. #
  133. alfresco.metadata.skipDescendantDocsForSpecificTypes=false
  134. alfresco.metadata.ignore.datatype.0=cm:person
  135. alfresco.metadata.ignore.datatype.1=app:configurations
  136. alfresco.metadata.skipDescendantDocsForSpecificAspects=false
  137. #alfresco.metadata.ignore.aspect.0=
  138.  
  139.  
  140. #
  141. # Suggestions
  142. #
  143. solr.suggester.enabled=false
  144. # -1 to disable suggester build throttling
  145. solr.suggester.minSecsBetweenBuilds=3600
  146.  
  147. #
  148. # Limit the maximum text size of transformed content sent to the index - in bytes
  149. #
  150. alfresco.contentStreamLimit=10000000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement