Advertisement
dotancohen

solr-debug

Oct 26th, 2012
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.84 KB | None | 0 0
  1. > On the dashboard of the GUI, it lists all the jvm arguments. Include those.
  2.  
  3. JVM
  4. Runtime
  5. OpenJDK 64-Bit Server VM (20.0-b12)
  6. Processors
  7. 4
  8. Args
  9. -Djetty.port=80
  10. -Dsolr.solr.home=/mnt/SolrFiles/solr
  11.  
  12.  
  13.  
  14. > Click Java Properties and gather the "java.runtime.version" and "java.specification.vendor" information.
  15.  
  16. java.​runtime.​version
  17. 1.6.0_24-b24
  18. java.​specification.​vendor
  19. Sun Microsystems Inc.
  20.  
  21.  
  22.  
  23. > After one of the long update times, pause/stop your indexing application. Click on your core in the GUI, open Plugins/Stats, and
  24. > paste the following bits with a header to indicate what each section is:
  25. > CACHE->filterCache
  26.  
  27. filterCache
  28.  
  29. class:
  30. org.apache.solr.search.FastLRUCache
  31. version:
  32. 1.0
  33. description:
  34. Concurrent LRU Cache(maxSize=512, initialSize=512, minSize=460, acceptableSize=486, cleanupThread=false)
  35. src:
  36. $URL: https:/​/​svn.apache.org/​repos/​asf/​lucene/​dev/​branches/​lucene_solr_4_0/​solr/​core/​src/​java/​org/​apache/​solr/​search/​FastLRUCache.java $
  37. stats:
  38. lookups:
  39. 0
  40. hits:
  41. 0
  42. hitratio:
  43. 0.00
  44. inserts:
  45. 0
  46. evictions:
  47. 0
  48. size:
  49. 0
  50. warmupTime:
  51. 0
  52. cumulative_lookups:
  53. 558
  54. cumulative_hits:
  55. 193
  56. cumulative_hitratio:
  57. 0.34
  58. cumulative_inserts:
  59. 706
  60. cumulative_evictions:
  61. 0
  62.  
  63.  
  64.  
  65. > CACHE->queryResultCache
  66.  
  67. class:
  68. org.apache.solr.search.LRUCache
  69. version:
  70. 1.0
  71. description:
  72. LRU Cache(maxSize=512, initialSize=512)
  73. src:
  74. $URL: https:/​/​svn.apache.org/​repos/​asf/​lucene/​dev/​branches/​lucene_solr_4_0/​solr/​core/​src/​java/​org/​apache/​solr/​search/​LRUCache.java $
  75. stats:
  76. lookups:
  77. 0
  78. hits:
  79. 0
  80. hitratio:
  81. 0.00
  82. inserts:
  83. 0
  84. evictions:
  85. 0
  86. size:
  87. 0
  88. warmupTime:
  89. 0
  90. cumulative_lookups:
  91. 874
  92. cumulative_hits:
  93. 178
  94. cumulative_hitratio:
  95. 0.20
  96. cumulative_inserts:
  97. 719
  98. cumulative_evictions:
  99. 0
  100.  
  101.  
  102.  
  103. > CORE->searcher
  104.  
  105. searcher
  106. class:
  107. org.apache.solr.search.SolrIndexSearcher
  108. version:
  109. 1.0
  110. description:
  111. index searcher
  112. src:
  113. $URL: https:/​/​svn.apache.org/​repos/​asf/​lucene/​dev/​branches/​lucene_solr_4_0/​solr/​core/​src/​java/​org/​apache/​solr/​search/​SolrIndexSearcher.java $
  114. stats:
  115. searcherName:
  116. Searcher@17afa3e6 main
  117. caching:
  118. true
  119. numDocs:
  120. 663979
  121. maxDoc:
  122. 664843
  123. reader:
  124. StandardDirectoryReader(segments_z1b:133030:nrt _13bv(4.0.0.2):C662902/862 _13ch(4.0.0.2):C208 _13cr(4.0.0.2):C295 _13db(4.0.0.2):C339 _13d1(4.0.0.2):C348 _13dl(4.0.0.2):C188 _13c7(4.0.0.2):C89 _13cb(4.0.0.2):C55/1 _13cn(4.0.0.2):C69 _13cs(4.0.0.2):C50/1 _13cv(4.0.0.2):C50 _13d7(4.0.0.2):C50 _13dk(4.0.0.2):C50 _13dm(4.0.0.2):C50 _13dn(4.0.0.2):C50 _13do(4.0.0.2):C50)
  125. readerDir:
  126. org.apache.lucene.store.NRTCachingDirectory:NRTCachingDirectory(org.apache.lucene.store.MMapDirectory@​/mnt/SolrFiles/solr/collection1/data/index lockFactory=org.apache.lucene.store.NativeFSLockFactory@​3af7345b; maxCacheMB=48.0 maxMergeSizeMB=4.0)
  127. indexVersion:
  128. 133030
  129. openedAt:
  130. 2012-10-26T15:09:13.561Z
  131. registeredAt:
  132. 2012-10-26T15:09:13.563Z
  133. warmupTime:
  134. 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement