SOLR 6.2 忽略堆设置(SOLR_JAVA_MEM 参数)

Kri*_*ews 5 java ubuntu solr amazon-ec2 sunspot

我已经按照这里这里的说明来增加我的 SOLR 内存分配。我这样做是因为 SOLR 服务器在某些高频和高容量索引活动期间定期关闭。

我对使用 SOLR 和 Ubuntu 有点陌生,所以请耐心等待,但我发现了几个存在 SOLR_JAV_MEM 参数的位置:

/opt/solr-6.2.0/bin/solr.in.sh
/opt/solr-6.2.0/bin/solr.in.cmd
/opt/solr-6.2.0/bin/solr.cmd
The same set of files in this directory: /home/deploy/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/sunspot_solr-2.2.5/solr/bin
And this directory: 
/home/deploy/solr-6.2.0/bin 
And finally, in this file: /etc/default/solr.in.sh
Run Code Online (Sandbox Code Playgroud)

在我看到带有数字的 SOLR_JAV_MEM 或 SOLR_HEAP 参数的任何地方,我都将其替换为更大的值,例如在 /opt/solr-6.2.0/bin/solr.in.sh 中:

# Increase Java Heap as needed to support your indexing / query needs
SOLR_HEAP="1500m"

# Expert: If you want finer control over memory options, specify them directly
# Comment out SOLR_HEAP if you are using this though, that takes precedence
#SOLR_JAVA_MEM="-Xms1512m -Xmx1512m"
Run Code Online (Sandbox Code Playgroud)

如果我测量正确,我仍然只能看到分配给 SOLR 的大约 500MB 内存,如以下命令所示:

root@ip-xxx:~# service solr status

Found 1 Solr nodes:

Solr process 15259 running on port 8989
{
  "solr_home":"/var/solr/data",
  "version":"6.2.0 764d0f19151dbff6f5fcd9fc4b2682cf934590c5 - mike - 2016-08-20 05:41:37",
  "startTime":"2016-09-28T15:01:18.001Z",
  "uptime":"0 days, 0 hours, 12 minutes, 28 seconds",
  "memory":"100 MB (%20.4) of 490.7 MB"}
Run Code Online (Sandbox Code Playgroud)

难道我做错了什么?还是我只是错误地测量了内存?如果我可以提供附加信息,请告诉我。谢谢!

Kri*_*ews 6

我会回答我自己的问题。结果我不得不编辑 /etc/default/solr.in.sh 文件。我把SOLR_HEAP="512M" 改成SOLR_HEAP="1500m" 跑了sudo service solr status看内存显示1.5G!