We are trying to use JIRA Service Desk as a new Helpdesk tool for my company. We work in an industry where response times need to be in seconds. When our user base send in an email, we find it takes 2-3 minutes to generate a response email back to them. We set the IMAP check time to be 1 minute, which we think is the lowest value. Any tips or tricks to get email response times for end users to be really fast?
Thanks,
Shea
We cannot see any way to even modify the IMAP polling interval. Email responsiveness is also a problem for us with Jira SD. It takes multiple minutes for each cycle, which is not acceptable for our customers.
It's hard coded.
But in your case, it's also pretty much useless. If "it takes multiple minutes per cycle", then your systems are too slow. Imagine the process - Jira asks for mail, jira gets n mails and processes each one into issues and comments. If that takes (say) 1 second per mail, then if 100 mails need processing, you absolutely do NOT want another process to start trying to pick up the 40 mails one minute later, or you'll get duplicates. So it only runs one at a time. Increasing the frequency of the check is utterly pointless.
If it's taking over a minute when polling, then either there's a lot of email to process, or something is slow. I've seen large Jiras handle several hundred emails a minutes easily, so if it's the Jira side, it's down to server speed not the code. I would recommend you check if Jira is slow in other ways, just to rule that out, and then take a look at your mail servers and the connection between Jira and them.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Set up an individual mailbox for each mail handler, don't use catch emails.
Make sure you have a forward address configured so that bad emails are not processed over and over again.
Minimize the total number of services on your system as much as possible.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Boris. Is there any way to set the IMAP fetch interval to be less than 1 minute?
Thanks,
Shea
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You may be able to do this by tweaking the interval on the services page? I believe the value there is in seconds if I remember correctly. Keep in mind that making the interval too short, will also have a negative impact as each check also has the overhead of setting up and then ending the connection. The more frequent your checks, the higher the % of time of each check is spent on this portion of the work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I know this thread is old, but I was wondering if anyone had any luck tuning the performance of incoming email fetch to be less than 1 minute? Ideally, we want it to be every few seconds.
Also, where is the services page that @Boris Berenberg referenced?
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.