We use JIRA 5.1.8 on Linux and have some application built in JIRA using project & workflows.
We upload the data from excel & store data in change history of jira tickets.
There is a code written which uses Lucene 3.2.0 & builds an index for the change history of this project.
Now the problem we are facing is our custom indexer gives error "too many files open", ulimit has been increased to 60000 in linux.
we are indexing around 1000 tickets with changehistory of 2 or 3 item per ticket.
Can anybody please help on this.
Yes, Problem was with the code & it was fixed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm assuming you have written a plugin that uses the Jira API to do the "upload and index" stuff (If not, then please correct that assumption because we need to know about that)
>Now the problem we are facing is our custom indexer gives error "too many files open", ulimit has been increased to 60000 in linux.
That really does look like an exceedingly high number of open files. My instincts are screaming that your code simply isn't closing files correctly, so as it working through your index, it's hitting the limit. You'll need to fix that in your code.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Nic,
Yes, we have a plugin which to upload the data to changehistory & also indexes the content.
We start the indexer when JIRA starts & there will be one object which will be used untill JIRA is shut down - (This is our requirement). Because of this I will not be closing the indexer.
Can you please guide me on how to handle this.
Thanks,
Chaithra
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you please suggest some links which can help us
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.