You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@lucene.apache.org by "Christine Poerschke (Jira)" <ji...@apache.org> on 2021/02/01 16:33:00 UTC

[jira] [Resolved] (SOLR-15126) gc log file rotation broken (when using Java8)

     [ https://issues.apache.org/jira/browse/SOLR-15126?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Christine Poerschke resolved SOLR-15126.
----------------------------------------
    Resolution: Cannot Reproduce

Never mind, apologies for the noise, I must have mixed up and confused something and can no longer reproduce the issue. And experimentation confirms that array appending to array is possible in shell script e.g.

{code}
$ FOO="aaa bbb ccc"
$ BAR=($FOO)
$ for i in "${!BAR[@]}"; do echo $i; echo ${BAR[$i]}; done
0
aaa
1
bbb
2
ccc
$ BAR+=("xxx" 'yyy' 'zzz')
$ for i in "${!BAR[@]}"; do echo $i; echo ${BAR[$i]}; done
0
aaa
1
bbb
2
ccc
3
xxx
4
yyy
5
zzz
{code}

> gc log file rotation broken (when using Java8)
> ----------------------------------------------
>
>                 Key: SOLR-15126
>                 URL: https://issues.apache.org/jira/browse/SOLR-15126
>             Project: Solr
>          Issue Type: Bug
>            Reporter: Christine Poerschke
>            Assignee: Christine Poerschke
>            Priority: Minor
>
> Noticed when investigating SOLR-11233 which concerns Java8 use. Based on the shell script content we intend to use log rotation but from observation in practice that does not happen (details to follow).
> SOLR-15104 is related but potentially wider in scope (non-Java8 and rotation not just within the same JVM but across successive JVMs).



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@lucene.apache.org
For additional commands, e-mail: issues-help@lucene.apache.org