SMTP Conversion Threads - how many?

I am wondering how many conversion threads one should set for inbound/outbound SMTP traffic on a GWIA.
The GWIA in question handles the following in a 24 hour period:
Inbound 12000 - 15000 messages
Outbound 3000 - 5000 messages
My conversion threads are currently set to 7/7.
Is this too low? What would the GURU's suggest?

Thank you for your reply - much appreciated.
There is no backlog of mail. The GWIA appears to be working fine with those settings, but I always like to fine tune my system for best possible performance.
I was just wondering if there were any recommended settings for GWIA or if there's some kinda calculation ie this amount of inbound mail per minute requires this amount of conversion threads.

Similar Messages

  • SMTP Host logs - How many users are authenticating - How many emails with distinct titles

    hello,
    can anyone help me out with gathering the following SMTP host logs to see:
    How many users are authenticating.
    How many emails with distinct titles
    Can this be done in powershell or do i need to be looking somewhere else.
    This is for O365

    Hi ,
    Since the emails are hosted with office 365 i would suggest you to raise a ticket with Microsoft and request assistance from them which will make this task much easier 
    Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com Thanks Sathish
    (MVP)

  • How many threads can be running at the same time

    Hi!!
    Dows anyone knows how many Threads can be running at the same time in the JVM.
    I'm making a multi thread client-server app and I would like to know how much simultneous connections the JVM support. I'm using one Thread per connection.

    Hi, thanks to all for your answers.
    I think that I made the wrong question, as you said: "that means the number of threads currently created".
    I'm worry about this because my application is already online (It's a mail server -SMTP and POP3 server using ORACLE for the users database- ) and some other user post in the "multi-tread forum" that almost any JVM can only have 700 threads created at the same time, and I've never heard or read anything about this.
    what you mean with the stack space (memory??)
    I'm using the JavaWebServer 2.0 and a servlet to start the main Thread.
    Again Thanks to all for the answers but I think that the schapel answer is the one that solve my doubt...

  • How can I see how many replies a thread has?

    The old layout let you see how many replies a thread had. Is there any way to get that back?

    To the end of the URL of a discussions page, add:
    /content
    ...In the resulting page, click on the big Discussions tab and then bookmark that URL. Here's a screenshot:

  • How many  threads are running?

    here's the code... i am trying to understand, at each point, how many threads are running:
    I understand that one thread belongs to the caller of the start()
    & at the same time there is another thread belonging to the instances of each thread (thread1, thread2, thread 3 etc.)
    1public class ThreadTester {
    2   public static void main( String args[] )
    3   {
    4      PrintThread thread1, thread2, thread3, thread4;
    5
    6      thread1 = new PrintThread( "thread1" );
    7      thread2 = new PrintThread( "thread2" );
    8      thread3 = new PrintThread( "thread3" );
    9      thread4 = new PrintThread( "thread4" );
    10
    11      System.err.println( "\nStarting threads" );
    12
    13      thread1.start();
    14      thread2.start();
    15      thread3.start();
    16      thread4.start();
    17
    18      System.err.println( "Threads started\n" );
    19   }
    }can you tell me if i am counting the number of threads in existance correctly...
    LINE#.....CALLER...START...TOTAL THREADS
    13..............1.........1.......2
    14..............1+1......1+1.....4
    15..............2+1......2+1.....6
    16..............3+1......3+1.....8
    so by the time line 16 executes i have a total of 8 threads,
    4 threads belonging to each caller plus
    4 threads created by start()
    or is it
    LINE#.....CALLER...START...TOTAL THREADS
    13..............1........1........2
    14..............1........1+1.....3
    15..............1........2+1.....4
    16..............1........3+1.....5
    after line 16 executes does the caller thread die, thus leaving only a total of 4 threads?
    there is only one thread belonging to the caller at line 13(plus the thread it creates).
    at the start of line 14, the previous callers thread is dead & now a new thread is created that belongs to the caller on line 14... etc.

    well, i realize at the end there would be 4 threads but im trying to get my head around this explanation in the book:
    "A program launches a threads executioin by calling the threads start method, which in turn call the run method. After start launches the thread, start returns to tis caller immediately. The caller then executes concurrently with the lauched thread." there fore if i have 2 concurrent processes, are there 2 threads running????
    now having said the above, my question was:
    for each line,
    how many threads are in existance at
    line13
    line14
    line15
    line16
    thanks.

  • How many Threads on a given system ?

    Is there a way to know for an AIR application how many threads a given system system supports?
    Pixel Bender is capable of real multi threading. It would not make sense to run 4 instances on a system with only 2 threads, but would be a shame not to utilize all threads of an 8 core hyper threading system.
    Thanks,
    David

    This appears to be a Flex question. Please try the flex forums http://forums.adobe.com/community/flex/flex_general_discussion

  • How Many Threads inside JVm while running

    Hi,
    how many threads will be there in jvm of 1.4 or higher sdk? threads i mean it includes all jvm threads also.

    How do you identify these threads?
    I can see 8 threads in my 1.5 java process (just running a main) using windows XP task manager, but when I check how many threads there are from within the code, it only looks like 4:
    java.lang.ThreadGroup[name=system,maxpri=10]
    Thread[Reference Handler,10,system]
    Thread[Finalizer,8,system]
    Thread[Signal Dispatcher,9,system]
    java.lang.ThreadGroup[name=main,maxpri=10]
    Thread[main,5,main]
    For example, using
    Thread.currentThread().getThreadGroup().getParent().list();

  • How many active threads in JVM?

    HI,
    Is there a way to find out all the running/active/blocked/unknown threads in a JVM?
    Doesn't matter if it is through code or some external command.
    I use jdk1.4 on Red Hat Linux.
    Thanks and Regards
    suri

    HI,
    Is there a way to find out all the
    running/active/blocked/unknown threads in a JVM?
    Doesn't matter if it is through code or some external
    command.
    I use jdk1.4 on Red Hat Linux.
    Thanks and Regards
    suri'jdb' tool lets you know how many threads exist in an application. try these command
    compile your program with '-g' option.
    jdb <classname>
    stop at <classname>:<line no of main(){}>
    run
    threads
    You can notice four threads. But I guess in linux, it might show lots of verbose with thread ID, If possible pls post the result for us to see.

  • How many parallel threads

    Can any of you point to a query to show how many parallel threads are being used by a specific OSUSER. A load runner test is being done and the application server issues a set of dmls to an Oracle database. The v$session table shows all the sessions associated with the (application server) osuser have status 'INACTIVE'. Does it mean that none of the dmls are being executing? Which other data dictionary tables/views do I need to join to v$session to get a correct picture of the parallel threads being used.
    Thanks in advance.

    Yuri_IL
    You need to download the 488.2 driver. Make sure that you include the support for .NET framework. You specify this during the installation.  
    NI-488.2 3.1.1
    http://www.ni.com/download/ni-488.2-3.1.1/3786/en/
    In the following readme file you can find .NET framework compatibility, GPIB interface compatibility and other details that might be of your interest. You can also find where the .NET examples are going to be located.
    NI-488.2 for Windows, Version 3.1.1 Readme
    http://ftp.ni.com/support/softlib/gpib/Windows/3.1​.1/ReadMe.html
    The following manual explains all of the functions that are included in the driver API
    www.ni.com/pdf/manuals/370428f.pdf
    http://www.ni.com/pdf/manuals/370428f.pdf
    Warm Regards,
    William Fernandez
    Applications Engineering
    National Instruments

  • How many ways we can configure SMTP Mail server on windows to get CCP mails

    Hello IAC's,
    I have configured SMTP server and teleneted  in CCP server and also I'm receving mails too when I submit the orders.
    I wondered with an update given by my  friend that he is using pmail server for SMTP mails.
    Can any one suggest me in how many ways we can enable the SMTP server.. on windows..??
    Thanks,
    Noor.

    Hi
    if i use String provider = "imap"; then it shows the following error message..
    javax.mail.MessagingException: Connection refused: connect
    at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:479)
    at javax.mail.Service.connect(Service.java:275)
    at javax.mail.Service.connect(Service.java:156)
    at javamail.AllPartsClient.main(AllPartsClient.java:39)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:364)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:232)
    at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:189)
    at com.sun.mail.iap.Protocol.<init>(Protocol.java:84)
    at com.sun.mail.imap.protocol.IMAPProtocol.<init>(IMAPProtocol.java:87)
    at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:446)
    ... 3 more
    pls any one give idea

  • How many thread can I create?

    I wrote a multithread program. I use Excutors class and newCachedThreadPool method to create a thread pool.
    I want to create max threads that i can. In some where, I saw Max thread that is allowed, depends on OS, availabe memory, JVM.
    I use SUSE 11.1 as operating system, have 3.75 GB RAM & 7.5 GB swap & use jdk 1.6
    I want to create max threads that i can. I don't know how many i can create.
    please help me.

    Hi _Security, Mutli-Threading isn't always a good thing, because of the constant switching the processor has to do, causing it to be slower then it could be if you properly queued your tasks instead of threading each one. Each thread you create is another thing your processor has to execute each cycle, so if you have tons of threads, your processor will have to execute and switch through each one every cycle, making it bog down performance by a long shot.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How many texts in a conversation with someone??

    Am I blind or is it impossible to find out quickly (rather than count each one) of how many texts there has been sent and received from one person only??
    I have a 3GS
    Any help would be appreciated please.

    After reading the help sections for the first two vi's used here:
    Read from Text File Function
    Pick Line Function
    I don't think it works like that.  I am thinking it works like this (maybe I am wrong):
    The first vi (Read from Text File Function) says it opens, reads all the characters (I assume into memory) and then closes the file.
    The second vi (Pick Line Function) then goes thru line by line presenting strings to the Match Pattern Function vi.
    The Read from Text File Function does close the file so that is not a concern.
    The Read from TextFile Function does have an option to read lines but it does not read one line at a time, like I want to search it.  (I want to search line by line to find the number at the beginning of the line.)  That vi reads however many lines you specify, always starting at the beginning of the file.  So, I did not see how that would help me...
    Now if it really does open the file each time I increment the Pick Line Function vi then I can see that reading them into an array would be faster.
    Wouldn't it do the Read from Text File, close the file and then do the Pick Line Function?
    Thanks,
    Steve

  • How Many Of You Know Each Other?

    I'm a poor lonely programmer who doesn't know any other java programmers to speak to in the "real world". How many other people like me are there out there? Or is there just a big bunch of students out there sat in a University somewhere with nothing better to do than post to the forums all day?

    I'm a poor lonely programmer who doesn't knowany
    other java programmers to speak to in the "real
    world".I don't recall meeting a single professional Java
    programmer IRL other than coworkers.Okay, I confess. My wife and I survived meeting tsith
    at a microbrew over Thanksgiving weekend. It was
    close, but we made it.
    Of course, we got so wrapped up in conversation, I
    failed to ask for his impression of the heady brews
    at Flat Branch....It's true, I met with Yawmark and I have to tell you - the claims of "large tracts of land" in some other thread - a bit of an overstatement.
    The brew was wonderful, I did enjoy my trip from bitter to dark, though the evening drew to a close before I hit the porter. Maybe next time!
    Though a Boddingtons or a Beamish down the road from me would be a nice way to while away a winter's evening.
    (and nasch_, I assure you I am headed your way sometime - just make sure no boulders take out the road I'm on, k?)

  • How many computers can you authorize with one serial number?

    Hey guys.
    I'm thinking about buying a 2nd Mac, but I'm just curious how many total computers you have authorize Logic studio on at one time (my guess would be 3 but I hope more).
    Please let me know if you can.
    Thanks,
    Nathan

    I'll copy my post from the other thread:
    I don't know for the others but in my retail package ((not upgrade) I found two serial numbers. Though I haven't got time yet to try the second serial number on my MacBook, my logic says that with two different serials I could run both macs simultaneously and be on the network. But, my logic fails so often so it's better to shut my mouth, install Logic on MacBook and come back here again.

  • Create task from conversation thread in news feed - Task must be created in custom task list

    Hi All,<o:p></o:p>
    Have a new requirement
    were user should be able to create a task for himself from a conversational
    thread in News feed.<o:p></o:p>
    In
    SharePoint 2013 we have a functionality where we can follow up on a
    conversation and it creates a task in My Tasks which is in My site.<o:p></o:p>
    But my requirement
    is to create a task in Tasks list in same site collection on click of follow
    up.<o:p></o:p>
    I have
    tried one approach as below :<o:p></o:p>
    My Tasks in
    My site is an aggregated view of all tasks assigned to the logged in user. When
    i follow a task in News feed a personal task is created in My task
    (WmaAggregatorList_User internal name) list. When i Edit the personal task and
    change the Projects
    drop down to the required Project Name and Check -"Make this task public to project
    members" it just creates a task is specific Site and moves
    the task.<o:p></o:p>
    I tried to
    find if Projects and Check box are columns of Task list , but did not find any
    columns.<o:p></o:p>
    I am trying
    to create a event receiver which would make these columns be set to Site Name
    and check box checked so that when user creates a task it will directly move to
    Custom Task list.<o:p></o:p>
    Please
    guide <o:p></o:p>
    Thanks in
    Advance<o:p></o:p>
    Pallavi

    Thank you for your responce. I used a content query wp to rollup only the Major Milestones, but am unable to overlay the results to a calendar.. The link you provided is for overlaying different task lists onto a calendar, but does not detail how to
    overlay the results from the content query onto a calendar.

Maybe you are looking for