Max number of sockets provided by JVM

Hi,
I am currently working on a program that creates a vast number of stream-oriented sockets and I encountered some problems that made me wonder whether there is a maximum number of sockets available.
I searched the forum for a hint but only found vague answers. What I am particularly interested in is a statement whether there is a maximum number of sockets that can be managed by the virtual machine regardless of the hardware provided or the operating system in use.
Thanks in advance.

If I were to write Java, I would not impose an
arbitrary limit but would rely upon the operating
system and thus "inherit" the limit from there.Correct. It's the OS that specifies the limitations in this case.

Similar Messages

  • Increasing max number of socket readers on client

    How can you increase the number of socket readers on a client
              application which
              uses JMS, EJB and talks to multiple WLAS servers.
              I get the following message
              Muxer> <There are: '3' active sockets, but the maximum number of socket
              readers allowed by theconfiguration is: '2', you may want alter your
              configuration.>
              But I cant find out how to increase the socket readers or better yet can
              I use the native IO for Solaris and NT clients??
              

    Try to use the WebItem Parameter "MAX_TEXT_LINES":
    <object>
    <param name="OWNER" value="SAP_BW"/>
    <param name="CMD" value="GET_ITEM"/>
    <param name="NAME" value="DOCUMENT_1"/>
    <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_DOC"/>
    <param name="DATA_PROVIDER" value="DATAPROVIDER_1"/>
    <b><param name="MAX_TEXT_LINES" value="50"/></b>
    ITEM:            DOCUMENT_1
    </object>

  • Max number of threads in a jvm

    Is there any constraint for the maximum number of threads that we can
    create in a particular JVM

    Why do you have to worry about that? I don't see a reason to create lots and lots of threads. The OS will usually spend most of the time doing context switches if you create more than a couple of thousand threads.
    Kaj

  • "max number of thread"

    We are running a java web app on a Ubuntu Oracle WebLogic server version 10.3.3.
    The java web app performs long polls with open tcp socket to keep the client connection open. The clients are long polling the WebLogic at 30 seconds.
    Currently we are not able to maintain stability for greater than 24 hours with approximately 200 simultaneous sessions on WebLogic server. Session to me is active client/server tcp connection. We have re-written our application to use continuations, but we are seeing ConcurrentModificationException errors in performance testing.
    Is there any setting in WebLogic for “max number of thread” that can handle?
    Edited by: user9316392 on Jul 8, 2010 11:07 AM

    First, WebLogic since 9.0 has a self-tuning thread pool where WLS will automatically grow and shrink the number of threads based on some internal algorithms. I'm not aware of a hard limit so theoretically there is no max thread count as long as the JVM has memory and WLS thinks more threads will help. You can read up on it here:
    http://www.oracle.com/technology/pub/articles/dev2arch/2006/01/workload-management.html
    Practically, I wouldn't expect more than several hundred threads to be helpful.
    As for your situation, how does WLS become unstable? Out of memory, out of file descriptors, errors on new requests, etc. I think you're going to have to use some JVM tools to see what happens to your JVM over time. Is there a memory leak somewhere, is it non-heap memory, etc. JRockit Mission Control is helpful if running on JRockit. If you're on Sun Hotspot, them presumably you can use some of the Hotspot tools. You'll want to compare the state of the JVM towards the beginning of your load test, but after a slight warm-up period with a snapshot after the load test has been running for a long period of time.

  • Max number of dataproviders in the same workbook

    Hi,
    Do you know please what is the max number of dataproviders (recommanded by SAP) we can use in the same workbook / Bex analyzer?
    For information, we are in BI 7 based on excel 2003.
    Thx.
    Radj.
    Edited by: Radjech Radjech on Dec 3, 2010 12:24 PM

    One suggestion is:
    Each tab (copy of the query) would have distinct filter value(s).   In workbook settings,  Uncheck "Allow Refresh of Individual Queries".   Also in WB settings, Do Not Refresh at Opening.    For the entire 50-tab workbook, the filter is limited to a minimum:  company code and the date range because the other filters are hardcoded in each tab.    When you refresh and change variable values at opening the file, all you enter is the company code value and the date
    You might also want to change the Grid Properties:  Uncheck Apply Formatting (for performance); and Uncheck Allow Navigation.  You can add these back later.   Might as well uncheck Sort.
    I have my own question about the DPs.  Can you rename them from the generic Data Provider 1 or copy of Data Provider 1?
    Susan McLeod

  • Max. no. of Socket (TCP) Connection in Java

    Dear All,
    Made a java based chat program for a business application. Having serious problem, when the number of users exceeds 28 all the client sockets connected to the server throws java.io.EOFException.
    Tested the server in couple of machines, when the socket connections touches 29 its not responding. Is there any limitation or setup to be done to use maximum no. of socket connection in JVM or in Operating System ?
    Please help me out. Its really very very urgent
    Server running in a PC machine loaded with Windows 2003 Server
    Rgds
    VenQuet
    Edited by: venquett on Apr 8, 2008 3:54 AM

    all the client sockets connected to the server throws java.io.EOFExceptionThat indicates that the server has closed them all. Are you sure that's the exception you get?
    You should be able to get hundreds of connections. The limit is not imposed by Java but by your operating system, or possibly the server.

  • Max number of streams

    Hello,
    My application is running out of stdio streams. There is a note in stdio man pages: no more than 255 files may be opened using fopen(), and only file descriptors 0 through 255 can be used in a stream.
    The application creates a bunch of sockets (>255) and eventually calls fopen() that is failing because of the 255 limit. The application increases number of file descriptors that a process may create. This helps for socket() and open() calls but not for fopen(). Is there any workaround for this problem (other than use open() instead of fopen()?)
    Regards,
    --Stas                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi
    First of all lot depends on which OS you are using. For all 32 bit
    OS stdio(3S) the limit is 256. This is because the fd itself is
    defined as an unsigned 8 bit value. On Sparc Solaris 7 and beyond with
    64 bit option turned on it is 65536 (64K).
    Having said that however there are ways to manipulate it. No guarantees that it will work, but try it anyways.
    All versions of Solaris (including Solaris 7 64-bit) have a default
    "soft" limit of 64 and a default "hard" limit of 1024.
    Processes may need to open many files or sockets as file
    descriptors. Standard I/O (stdio) library functions have
    a defined limit of 256 file descriptors as the fopen() call,
    datatype char, will fail if it can not get a file descriptor between
    0 and 255.
    The open() system call is of datatype "int", removing this limitation.
    However, if open() has opened 0-255 file descriptors without closing
    any, fopen() will not be able to open any file descriptors as all the
    low-numbered ones have been used up. Applications that need to use
    many file descriptors to open a large number of sockets, or
    other raw files, should be forced to use descriptors
    numbered above 256. This allows system functions such as
    name services, to work as they depend upon stdio routines.
    (See p 368 "Performance and Tuning - Java and the Internet").
    There are limitations on the number of file descriptors
    available to the current shell and its descendents. (See the ulimit
    man page). The maximum number of file descriptors that can
    be safely used for the shell and Solaris processes is 1024.
    This limitation has been lifted for Solaris 7 64-bit which
    can be 64k (65536) as explained before.
    Therefore the recommended maximum values to be added to /etc/system
    are:
    set rlim_fd_cur=1024
    set rlim_fd_max=1024
    The in the shell :
    Use the limit command with csh:
    % limit descriptors 1024
    Use the ulimit command with Bourne or ksh:
    $ ulimit -n 1024
    However, some third-party applications need the max raised.
    A possible recommendation would be to increase rlim_fd_max,
    but not the default (rlim_fd_cur). Then rlim_fd_cur can be
    raised on a per-process basis if needed, but the higher setting
    for rlim_fd_max doesn't affect all processes.
    Let me know how it goes
    -Manish
    SUN-DTS

  • Max number of entries in the variable input list (F4) of Bex Analyzer Query

    Dear BW experts,
    When I run the Bex Analyzer query, it pops up the variable input screen.
    If I don't know the specific value of the variable, then I can click on the input help (F4) to get a list of available values.  There is a max number of entries coming back to the list.  For my BW system, it is currently returning 500 values.  For other people and SAP Help document, it could be 1000.
    My question is: Do you know where we can configure/set this max value? Is it a global setting?
    Thanks in advance for your help in this matter.
    Kevin-

    Murali & Pra,
    Thanks for both of your answers.  I think the answers that you provided are for BW 7.X version.
    It is flexible and exactly the way it should be for each user to customize a specific variable.
    I am running BW 3.5 query, and don't see the "Settings" option/button after I got the list of single values back.
    Is there a way to set this up for BW 3.5 query Analyzer?  My max value is always 500 for all variables.  Is there a place for setting this value and save for the next time.
    Any help from any BW experts is appreciated.

  • DpVmCheck: max number of priv VMs exceeded (1 0, timeout)

    Hello,
    In our CRM system EHP1 FOR CRM 7 ABAP ,users get this screen mainly for big contracts at different stages like collision run,saving.
    Status before error started
    I have already gone through notes 1757252
    But the parameter rdisp/max_vm_priv_time and  rdisp/max_vm_priv_no doesn't exist in our system. Instead is there any other parameter which we can use in our release ?
    I could find these errors when the timeout screen occurred :
    DEV_DISP
    Wed Jul 23 15:26:08 2014
    DpVmCheck: max number of priv VMs exceeded (1 > 0, timeout), reset T59/M0/U13880/V4
    Wed Jul 23 15:26:28 2014
    DpVmCheck: max number of priv VMs exceeded (1 > 0, timeout), reset T59/M0/U13880/V4
    Wed Jul 23 15:26:46 2014
    *** ERROR => DpRqCheck: T59 in state TM_SLOT_FREE [dpxxdisp.c   8006]
    ***LOG Q0G=> DpRqBadHandle, bad_req ( DIA) [dpxxdisp.c   6125]
    *** ERROR => DpRqBadHandle: BAD REQUEST - Reason: DpRqCheck failed (line 7037): [dpxxdisp.c 6127]
    -IN-- sender_id DISPATCHER        tid 59    wp_ca_blk   -1 wp_id -1
    -IN-- action SEND_TO_WP        uid  13880 appc_ca_blk -1      type  DIA
    -IN-- new_stat  NO_CHANGE         mode 0     len 0       rq_id 24366
    -IN-- req_info DP_CANCEL_PRIV
    -IN-- msg_name  -
    *** ERROR => DpRqCheck: T59 in state TM_SLOT_FREE [dpxxdisp.c   8006]
    ***LOG Q0G=> DpRqBadHandle, bad_req ( DIA) [dpxxdisp.c   6125]
    *** ERROR => DpRqBadHandle: BAD REQUEST - Reason: DpRqCheck failed (line 7037): [dpxxdisp.c 6127]
    -IN-- sender_id DISPATCHER        tid 59    wp_ca_blk   -1 wp_id -1
    -IN-- action SEND_TO_WP        uid  13880 appc_ca_blk -1      type  DIA
    -IN-- new_stat  NO_CHANGE         mode 0     len 0       rq_id 24502
    -IN-- req_info DP_CANCEL_PRIV
    -IN-- msg_name  -
    *** ERROR => DpRqCheck: T59 in state TM_SLOT_FREE [dpxxdisp.c   8006]
    ***LOG Q0G=> DpRqBadHandle, bad_req ( DIA) [dpxxdisp.c   6125]
    *** ERROR => DpRqBadHandle: BAD REQUEST - Reason: DpRqCheck failed (line 7037): [dpxxdisp.c 6127]
    -IN-- sender_id DISPATCHER        tid 59    wp_ca_blk   -1 wp_id -1
    -IN-- action SEND_TO_WP        uid  13880 appc_ca_blk -1      type  DIA
    -IN-- new_stat NO_CHANGE         mode 0     len 0       rq_id 24691
    -IN-- req_info DP_CANCEL_PRIV
    -IN-- msg_name  -
    sm21:
    Q0  G Request (type DIA) cannot be processed
    work process trace
    please check the image
    Thanks
    Shradha

    Hello Divyanshu
    It didnt create dev_vm.trc and VM_STACK_TRACE
    And I am unable to provide dev_disp and dev_w* here due to size of the trace
    But could the error be due to any of these parameters :
    Parameters
    Current
    Changed
    rdisp/max_vm_priv_time
    2400
    SERVLET=2400, RFC=2400
    isp/max_vm_priv_no
    3
    SERVLET=3, RFC=3
    rdisp/max_priv_time
    600
    3600
    Maximum hold time for work processes in PRIV mode
    rdisp/max_debug_lazy_time
    600
    3600
    Maximum hold time for work processes in DEBUG mode
    rdisp/appc_ca_blk_no
    1000
    1058
    Buffer Size for CPI-C Communications
    rdisp/wp_ca_blk_no
    300
    1058
    Work Process Communication Blocks
    vmcj/option/ps
    960M
    1460M
    poolsize for the VMC
    vmcj/option/gc/sharedWaterMark
    90
    70
    VMC: watermark for shared garbage collector
    vmcj/max_vm_heap_MB
    64
    128
    max. vm heap
    rdisp/keepalive
    1200
    3600
    Timer for check of unused connections
    rdisp/keepalive_timeout
    60
    150
    Timeout for connection to SAPGUI
    rdisp/wppriv_max_no
    DEFAULT
    16
    Maximum number of work processes in PRIV mode

  • What's the max number of E1 on 3845 and max number of E3 ports ?

    kindly support me witjh the refrences that provide max number of E1's on 3845 and number of E3?

    “Thank you for your question.  This community is for Cisco Small Business products and your question is in reference to a Cisco Elite/Classic product.  Please post your question in the Cisco NetPro forums located here: http://forums.cisco.com/eforum/servlet/NetProf?page=main  This forum has subject matter experts on Cisco Elite/Classic products that may be able to answer your question.”

  • Max number email recipients

    I tried to send an email to 216 email accounts but it would not let it go through. Now I have the email pop up and the list of accounts line up down the page. I can not get to the bottom to click the box to delete the email and it just keeps coming up each time I start up my email account.
    I have to force close it to get it to close.
    My question is what is the max number of accounts you can sent an email to and how do I actually do away with the one that is in cue. I have a imac 1.83 GHz intel Core Duo with 10.5.7 and mail 3.6
    Thanks Mike

    The maximum number of emails you can send at once is determined by your email provider; you need to ask them.
    If this email is in the Drafts folder, you can go to ~/Library/Mail/name of mail account/Drafts.mbox, select the message and Delete it.

  • Remote faxing error - A fax number was not provided.

    I have a USRobotics 5637 Fax / Modem attached to a Mac Mini. I can send and receive faxes on the Mini.
    I have enabled printer sharing on the Mini. User rights are everyone is allowed to print. When I try to print to the shared fax from my MacBook Air, The Mini does not send the fax. CUPS provides this error:
    USB_Modem-153
    Unknown
    Withheld
    18k
    Unknown
    completed at
    Mon Aug 12 16:36:37 2013
    "A fax number was not provided."
    So the MacBook Air sees the Fax on the Mini and the job gets sent to the Mini but the fax number apparently does not get sent to the print server. Both machines are running 10.8.4 and are connected to the same (hardwired) network.
    Is there something I am missing. I type the fax number in on the Air and I have tried various formats (xxx-xxxx, (xxx) xxx-xxxx, xxxxxxx etc) just to see if this makes a difference but no luck.
    I have attached the CUPS log file below: There is the USR fax/modem as well as a Brother MFC printer configured.
    Any suggestions?
    Thank you
    D [12/Aug/2013:16:59:29 -0300] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [12/Aug/2013:16:59:56 -0300] [Client 21] Accepted from 192.168.1.20:631 (IPv4)
    D [12/Aug/2013:16:59:56 -0300] Report: clients=1
    D [12/Aug/2013:16:59:56 -0300] Report: jobs=147
    D [12/Aug/2013:16:59:56 -0300] Report: jobs-active=0
    D [12/Aug/2013:16:59:56 -0300] Report: printers=2
    D [12/Aug/2013:16:59:56 -0300] Report: stringpool-string-count=4968
    D [12/Aug/2013:16:59:56 -0300] Report: stringpool-alloc-bytes=10648
    D [12/Aug/2013:16:59:56 -0300] Report: stringpool-total-bytes=67184
    D [12/Aug/2013:16:59:56 -0300] [Client 21] POST /printers/USB_Modem HTTP/1.1
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [12/Aug/2013:16:59:56 -0300] [Client 21] No authentication data provided.
    D [12/Aug/2013:16:59:56 -0300] [Client 21] 2.0 Get-Printer-Attributes 1
    D [12/Aug/2013:16:59:56 -0300] Get-Printer-Attributes ipps://mini.local.:631/printers/USB_Modem
    D [12/Aug/2013:16:59:56 -0300] Returning IPP successful-ok for Get-Printer-Attributes (ipps://mini.local.:631/printers/USB_Modem) from 192.168.1.20
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [12/Aug/2013:16:59:56 -0300] [Client 21] POST /printers/USB_Modem HTTP/1.1
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [12/Aug/2013:16:59:56 -0300] [Client 21] No authentication data provided.
    D [12/Aug/2013:16:59:56 -0300] [Client 21] 2.0 Validate-Job 2
    D [12/Aug/2013:16:59:56 -0300] Validate-Job ipps://mini.local.:631/printers/USB_Modem
    D [12/Aug/2013:16:59:56 -0300] Returning IPP successful-ok for Validate-Job (ipps://mini.local.:631/printers/USB_Modem) from 192.168.1.20
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [12/Aug/2013:16:59:56 -0300] [Client 22] Accepted from 192.168.1.20:631 (IPv4)
    D [12/Aug/2013:16:59:56 -0300] [Client 21] POST /printers/USB_Modem HTTP/1.1
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [12/Aug/2013:16:59:56 -0300] [Client 21] No authentication data provided.
    D [12/Aug/2013:16:59:56 -0300] [Client 22] POST /printers/USB_Modem HTTP/1.1
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [12/Aug/2013:16:59:56 -0300] [Client 22] No authentication data provided.
    D [12/Aug/2013:16:59:56 -0300] [Client 21] 2.0 Create-Job 3
    D [12/Aug/2013:16:59:56 -0300] Create-Job ipps://mini.local.:631/printers/USB_Modem
    D [12/Aug/2013:16:59:56 -0300] cupsdMarkDirty(---J-)
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients"
    D [12/Aug/2013:16:59:56 -0300] add_job: requesting-user-name="ufa"
    D [12/Aug/2013:16:59:56 -0300] Adding default job-sheets values "none,none"...
    I [12/Aug/2013:16:59:56 -0300] [Job 154] Adding start banner page "none".
    D [12/Aug/2013:16:59:56 -0300] Discarding unused job-created event...
    I [12/Aug/2013:16:59:56 -0300] [Job 154] Queued on "USB_Modem" by "ufa".
    D [12/Aug/2013:16:59:56 -0300] Returning IPP successful-ok for Create-Job (ipps://mini.local.:631/printers/USB_Modem) from 192.168.1.20
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:56 -0300] [Client 22] 2.0 Get-Printer-Attributes 4
    D [12/Aug/2013:16:59:56 -0300] Get-Printer-Attributes ipps://mini.local.:631/printers/USB_Modem
    D [12/Aug/2013:16:59:56 -0300] Returning IPP successful-ok for Get-Printer-Attributes (ipps://mini.local.:631/printers/USB_Modem) from 192.168.1.20
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:56 -0300] [Client 23] Accepted from localhost (Domain)
    D [12/Aug/2013:16:59:56 -0300] [Client 21] POST /printers/USB_Modem HTTP/1.1
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [12/Aug/2013:16:59:56 -0300] [Client 21] No authentication data provided.
    D [12/Aug/2013:16:59:56 -0300] [Client 23] POST / HTTP/1.1
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:56 -0300] [Client 23] No authentication data provided.
    D [12/Aug/2013:16:59:56 -0300] [Client 21] 2.0 Send-Document 5
    D [12/Aug/2013:16:59:56 -0300] [Client 23] 2.0 Get-Jobs 30
    D [12/Aug/2013:16:59:56 -0300] Get-Jobs ipp://localhost:631/printers/USB_Modem
    D [12/Aug/2013:16:59:56 -0300] Returning IPP successful-ok for Get-Jobs (ipp://localhost:631/printers/USB_Modem) from localhost
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:56 -0300] Send-Document ipps://mini.local.:631/printers/USB_Modem
    D [12/Aug/2013:16:59:56 -0300] cupsdIsAuthorized: requesting-user-name="ufa"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] Auto-typing file...
    D [12/Aug/2013:16:59:56 -0300] [Job 154] Request file type is image/tiff.
    D [12/Aug/2013:16:59:56 -0300] cupsdMarkDirty(---J-)
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    I [12/Aug/2013:16:59:56 -0300] [Job 154] File of type image/tiff queued by "ufa".
    I [12/Aug/2013:16:59:56 -0300] [Job 154] Adding end banner page "none".
    D [12/Aug/2013:16:59:56 -0300] cupsdMarkDirty(---J-)
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] time-at-processing=1376337596
    D [12/Aug/2013:16:59:56 -0300] cupsdMarkDirty(---J-)
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:56 -0300] Asserting dark wake.
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:56 -0300] Discarding unused printer-state-changed event...
    D [12/Aug/2013:16:59:56 -0300] [Job 154] job-sheets=none,none
    D [12/Aug/2013:16:59:56 -0300] [Job 154] argv[0]="USB_Modem"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] argv[1]="154"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] argv[2]="ufa"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] argv[3]="untitled text 6"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] argv[4]="1"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] argv[5]="job-uuid=urn:uuid:f1a61d10-1959-3fc1-7248-88abadd7e431 job-originating-host-name=192.168.1.20 time-at-creation=1376337596 time-at-processing=1376337596"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] argv[6]="/private/var/spool/cups/d00154-001"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[0]="<CFProcessPath>"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[1]="CUPS_CACHEDIR=/private/var/spool/cups/cache"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[2]="CUPS_DATADIR=/usr/share/cups"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[3]="CUPS_DOCROOT=/usr/share/doc/cups"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[4]="CUPS_FONTPATH=/usr/share/cups/fonts"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[5]="CUPS_REQUESTROOT=/private/var/spool/cups"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[6]="CUPS_SERVERBIN=/usr/libexec/cups"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[7]="CUPS_SERVERROOT=/private/etc/cups"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[8]="CUPS_STATEDIR=/private/etc/cups"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[9]="HOME=/private/var/spool/cups/tmp"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[10]="PATH=/usr/libexec/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[11]="[email protected]"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[12]="SOFTWARE=CUPS/1.6.2"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[13]="TMPDIR=/private/var/spool/cups/tmp"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[14]="USER=root"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[15]="CUPS_MAX_MESSAGE=2047"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[16]="CUPS_SERVER=/private/var/run/cupsd"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[17]="CUPS_ENCRYPTION=IfRequested"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[18]="IPP_PORT=631"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[19]="CHARSET=utf-8"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[20]="LANG=en_US.UTF-8"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[21]="APPLE_LANGUAGE=en-US"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[22]="PPD=/private/etc/cups/ppd/USB_Modem.ppd"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[23]="RIP_MAX_CACHE=128m"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[24]="CONTENT_TYPE=image/tiff"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[25]="DEVICE_URI=fax://dev/cu.usbmodem0000001"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[26]="PRINTER_INFO=FAX"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[27]="PRINTER_LOCATION=mini"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[28]="PRINTER=USB_Modem"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[29]="PRINTER_STATE_REASONS=none"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[30]="CUPS_FILETYPE=document"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[31]="FINAL_CONTENT_TYPE=printer/USB_Modem"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] envp[32]="AUTH_I****"
    I [12/Aug/2013:16:59:56 -0300] [Job 154] Started filter /usr/libexec/cups/filter/cgimagetopdf (PID 51019)
    I [12/Aug/2013:16:59:56 -0300] [Job 154] Started filter /usr/libexec/cups/filter/cgpdftoraster (PID 51020)
    I [12/Aug/2013:16:59:56 -0300] [Job 154] Started filter /usr/libexec/cups/filter/rastertotiff (PID 51021)
    I [12/Aug/2013:16:59:56 -0300] [Job 154] Started backend /usr/libexec/cups/backend/fax (PID 51022)
    D [12/Aug/2013:16:59:56 -0300] Discarding unused job-state-changed event...
    D [12/Aug/2013:16:59:56 -0300] Returning IPP successful-ok for Send-Document (ipps://mini.local.:631/printers/USB_Modem) from 192.168.1.20
    D [12/Aug/2013:16:59:56 -0300] [Client 22] POST /printers/USB_Modem HTTP/1.1
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients, printing jobs, and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:56 -0300] [Client 22] No authentication data provided.
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients, printing jobs, and dirty files", busy="Active clients, printing jobs, and dirty files"
    D [12/Aug/2013:16:59:56 -0300] [Client 22] 2.0 Get-Job-Attributes 6
    D [12/Aug/2013:16:59:56 -0300] Get-Job-Attributes ipps://mini.local.:631/printers/USB_Modem
    D [12/Aug/2013:16:59:56 -0300] Returning IPP successful-ok for Get-Job-Attributes (ipps://mini.local.:631/printers/USB_Modem) from 192.168.1.20
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Active clients, printing jobs, and dirty files"
    D [12/Aug/2013:16:59:56 -0300] [Client 21] HTTP_WAITING Closing on EOF
    D [12/Aug/2013:16:59:56 -0300] [Client 21] Closing connection.
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
    D [12/Aug/2013:16:59:56 -0300] [Client 22] HTTP_WAITING Closing on EOF
    D [12/Aug/2013:16:59:56 -0300] [Client 22] Closing connection.
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
    D [12/Aug/2013:16:59:56 -0300] [Client 21] Accepted from 192.168.1.20:631 (IPv4)
    D [12/Aug/2013:16:59:56 -0300] [Client 21] POST /printers/USB_Modem HTTP/1.1
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Active clients, printing jobs, and dirty files", busy="Printing jobs and dirty files"
    D [12/Aug/2013:16:59:56 -0300] [Client 21] No authentication data provided.
    D [12/Aug/2013:16:59:56 -0300] [Client 21] 2.0 Get-Job-Attributes 7
    D [12/Aug/2013:16:59:56 -0300] Get-Job-Attributes ipps://mini.local.:631/printers/USB_Modem
    D [12/Aug/2013:16:59:56 -0300] Returning IPP successful-ok for Get-Job-Attributes (ipps://mini.local.:631/printers/USB_Modem) from 192.168.1.20
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Active clients, printing jobs, and dirty files"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] cgpdftoraster: copying to temp print file "/private/var/spool/cups/tmp/0c74c52155d4d"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] cgimagetopdf - document title: "untitled text 6"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] cgimagetopdf - filename: "/private/var/spool/cups/d00154-001"...
    D [12/Aug/2013:16:59:56 -0300] [Job 154] cgimagetopdf - opened PPD file "/private/etc/cups/ppd/USB_Modem.ppd"...
    D [12/Aug/2013:16:59:56 -0300] [Job 154] cgimagetopdf - dpi: (204, 196), orientation = 1...
    E [12/Aug/2013:16:59:56 -0300] [Job 154] A fax number was not provided.
    D [12/Aug/2013:16:59:56 -0300] cupsdMarkDirty(---J-)
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
    D [12/Aug/2013:16:59:56 -0300] cupsdMarkDirty(---J-)
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
    D [12/Aug/2013:16:59:56 -0300] [Job 154] Set job-printer-state-message to "A fax number was not provided.", current level=ERROR
    D [12/Aug/2013:16:59:56 -0300] Discarding unused job-progress event...
    D [12/Aug/2013:16:59:56 -0300] Discarding unused printer-state-changed event...
    D [12/Aug/2013:16:59:56 -0300] [Job 154] PID 51022 (/usr/libexec/cups/backend/fax) exited with no errors.
    D [12/Aug/2013:16:59:56 -0300] [Job 154] PID 51019 (/usr/libexec/cups/filter/cgimagetopdf) exited with no errors.
    D [12/Aug/2013:16:59:56 -0300] [Job 154] cgpdftoraster: “/private/var/spool/cups/tmp/0c74c52155d4dâ€&#157; has 1 pages.
    D [12/Aug/2013:16:59:56 -0300] [Job 154] cgpdftoraster: opened PPD file "/private/etc/cups/ppd/USB_Modem.ppd"...
    D [12/Aug/2013:16:59:56 -0300] [Job 154] cgpdftoraster: size->width = 612, size->length = 792, size->top = 773.4, size->bottom = 18.6, size->left = 16.6, size->right = 595.4
    D [12/Aug/2013:16:59:56 -0300] [Job 154] cgpdftoraster: PreferredRotation = 90
    D [12/Aug/2013:16:59:56 -0300] [Job 154] cgpdftoraster: languageLevel = 3, mediaBox.size.width = 612, mediaBox.size.height = 792
    D [12/Aug/2013:16:59:56 -0300] [Job 154] cgpdftoraster: colorspace = 3, bitsPerColor = 1
    D [12/Aug/2013:16:59:56 -0300] [Job 154] cgpdftoraster: band width = 1640, bytesPerRow = 1640, band height = 2055, height = 2055
    D [12/Aug/2013:16:59:56 -0300] [Job 154] cgpdftoraster: context width = 1640, height = 2055, bitsPerComponent = 8, bitsPerPixel = 8, bytesPerRow = 1640, bitmapInfo = 0, resolution = (204.000000, 196.000000)
    D [12/Aug/2013:16:59:56 -0300] [Job 154] cgpdftoraster: bytes written for side 1 = 421275
    D [12/Aug/2013:16:59:56 -0300] [Job 154] rastertotiff read page 1 (421275 bytes)
    D [12/Aug/2013:16:59:56 -0300] [Job 154] PID 51020 (/usr/libexec/cups/filter/cgpdftoraster) exited with no errors.
    D [12/Aug/2013:16:59:56 -0300] [Job 154] PID 51021 (/usr/libexec/cups/filter/rastertotiff) did not catch or ignore signal 13.
    D [12/Aug/2013:16:59:56 -0300] [Job 154] time-at-completed=1376337596
    D [12/Aug/2013:16:59:56 -0300] Discarding unused job-completed event...
    I [12/Aug/2013:16:59:56 -0300] [Job 154] Job completed.
    D [12/Aug/2013:16:59:56 -0300] cupsdMarkDirty(---J-)
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
    D [12/Aug/2013:16:59:56 -0300] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
    D [12/Aug/2013:16:59:56 -0300] Discarding unused printer-state-changed event...
    D [12/Aug/2013:16:59:57 -0300] [Client 22] Accepted from 192.168.1.20:631 (IPv4)
    D [12/Aug/2013:16:59:57 -0300] [Job 154] Unloading...
    D [12/Aug/2013:16:59:57 -0300] [Client 22] POST /printers/USB_Modem HTTP/1.1
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Printing jobs and dirty files"
    D [12/Aug/2013:16:59:57 -0300] Releasing dark wake assertion.
    D [12/Aug/2013:16:59:57 -0300] [Client 22] No authentication data provided.
    D [12/Aug/2013:16:59:57 -0300] [Client 21] HTTP_WAITING Closing on EOF
    D [12/Aug/2013:16:59:57 -0300] [Client 21] Closing connection.
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 21] Accepted from 192.168.1.20:631 (IPv4)
    D [12/Aug/2013:16:59:57 -0300] [Client 23] POST / HTTP/1.1
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 23] No authentication data provided.
    D [12/Aug/2013:16:59:57 -0300] [Client 24] Accepted from localhost (Domain)
    D [12/Aug/2013:16:59:57 -0300] [Client 21] POST /printers/USB_Modem HTTP/1.1
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 21] No authentication data provided.
    D [12/Aug/2013:16:59:57 -0300] [Client 24] POST /printers/USB_Modem HTTP/1.1
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 24] No authentication data provided.
    D [12/Aug/2013:16:59:57 -0300] [Client 21] 2.0 Get-Job-Attributes 9
    D [12/Aug/2013:16:59:57 -0300] Get-Job-Attributes ipps://mini.local.:631/printers/USB_Modem
    D [12/Aug/2013:16:59:57 -0300] [Job 154] Loading attributes...
    D [12/Aug/2013:16:59:57 -0300] Returning IPP successful-ok for Get-Job-Attributes (ipps://mini.local.:631/printers/USB_Modem) from 192.168.1.20
    D [12/Aug/2013:16:59:57 -0300] [Client 24] 2.0 Get-Printer-Attributes 30
    D [12/Aug/2013:16:59:57 -0300] Get-Printer-Attributes ipp://localhost/printers/USB_Modem
    D [12/Aug/2013:16:59:57 -0300] Returning IPP successful-ok for Get-Printer-Attributes (ipp://localhost/printers/USB_Modem) from localhost
    D [12/Aug/2013:16:59:57 -0300] [Client 23] 2.0 Get-Printer-Attributes 31
    D [12/Aug/2013:16:59:57 -0300] Get-Printer-Attributes ipp://localhost:631/printers/USB_Modem
    D [12/Aug/2013:16:59:57 -0300] Returning IPP successful-ok for Get-Printer-Attributes (ipp://localhost:631/printers/USB_Modem) from localhost
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 22] 2.0 Get-Printer-Attributes 8
    D [12/Aug/2013:16:59:57 -0300] Get-Printer-Attributes ipps://mini.local.:631/printers/USB_Modem
    D [12/Aug/2013:16:59:57 -0300] Returning IPP successful-ok for Get-Printer-Attributes (ipps://mini.local.:631/printers/USB_Modem) from 192.168.1.20
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 24] POST /printers/Brother_MFC_8480DN HTTP/1.1
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 24] No authentication data provided.
    D [12/Aug/2013:16:59:57 -0300] [Client 21] POST /printers/USB_Modem HTTP/1.1
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 21] No authentication data provided.
    D [12/Aug/2013:16:59:57 -0300] [Client 24] 2.0 Get-Printer-Attributes 31
    D [12/Aug/2013:16:59:57 -0300] Get-Printer-Attributes ipp://localhost/printers/Brother_MFC_8480DN
    D [12/Aug/2013:16:59:57 -0300] Returning IPP successful-ok for Get-Printer-Attributes (ipp://localhost/printers/Brother_MFC_8480DN) from localhost
    D [12/Aug/2013:16:59:57 -0300] [Client 23] POST / HTTP/1.1
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 23] No authentication data provided.
    D [12/Aug/2013:16:59:57 -0300] [Client 21] 2.0 Get-Printer-Attributes 10
    D [12/Aug/2013:16:59:57 -0300] Get-Printer-Attributes ipps://mini.local.:631/printers/USB_Modem
    D [12/Aug/2013:16:59:57 -0300] Returning IPP successful-ok for Get-Printer-Attributes (ipps://mini.local.:631/printers/USB_Modem) from 192.168.1.20
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 22] POST /printers/USB_Modem HTTP/1.1
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 22] No authentication data provided.
    D [12/Aug/2013:16:59:57 -0300] [Client 24] POST /printers/Brother_MFC_8480DN HTTP/1.1
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 24] No authentication data provided.
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 22] 2.0 Get-Job-Attributes 11
    D [12/Aug/2013:16:59:57 -0300] Get-Job-Attributes ipps://mini.local.:631/printers/USB_Modem
    D [12/Aug/2013:16:59:57 -0300] Returning IPP successful-ok for Get-Job-Attributes (ipps://mini.local.:631/printers/USB_Modem) from 192.168.1.20
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 24] 2.0 Get-Printer-Attributes 32
    D [12/Aug/2013:16:59:57 -0300] Get-Printer-Attributes ipp://localhost/printers/Brother_MFC_8480DN
    D [12/Aug/2013:16:59:57 -0300] Returning IPP successful-ok for Get-Printer-Attributes (ipp://localhost/printers/Brother_MFC_8480DN) from localhost
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 23] 2.0 Get-Jobs 32
    D [12/Aug/2013:16:59:57 -0300] Get-Jobs ipp://localhost:631/printers/USB_Modem
    D [12/Aug/2013:16:59:57 -0300] Returning IPP successful-ok for Get-Jobs (ipp://localhost:631/printers/USB_Modem) from localhost
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 22] HTTP_WAITING Closing on EOF
    D [12/Aug/2013:16:59:57 -0300] [Client 22] Closing connection.
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
    D [12/Aug/2013:16:59:57 -0300] [Client 21] HTTP_WAITING Closing on EOF
    D [12/Aug/2013:16:59:57 -0300] [Client 21] Closing connection.
    D [12/Aug/2013:16:59:57 -0300] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
    D [12/Aug/2013:17:00:00 -0300] [Client 21] Accepted from localhost:631 (IPv6)
    D [12/Aug/2013:17:00:00 -0300] [Client 21] GET /admin/log/error_log? HTTP/1.1
    D [12/Aug/2013:17:00:00 -0300] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [12/Aug/2013:17:00:00 -0300] [Client 21] Authorized as Xxx using Basic

    Now all are running 10.9.2. Same problem, except that two of the 10.9.2 clients have this problem. (They may both have had this problem with 10.9.1, but it wasn't noticed until now.)
    I have reset the printing system on the serving Mac, added the fax back in, and still have the problem.
    I also reset the printing system on one of the problem clients, tried a different user, and still have the problem.
    I also verified that the fax.ppd files are identical on working and non-working clients. They are.
    This is really, really frustrating.

  • HT204053 Max number of devices on one iTunes account?

    Max number of Devices on a single iTunes account

    Devices or Computers? The former there is no limit. For the latter there is a limit of 5.

  • How to set the number of sockets for batch processing at runtime?

    Hello all,
    I need to change the execution model at runtime. I have achieved this by setting the 'ModelPath' property of the sequence file at runtime. When I set the sequence file model as batchmodel, i need to set the number of test sockets also dynamically. How can this be done? Once i set the number of sockets, i would also have to set the UUT serial number for each socket. Please help me out in solving this.
    Thanks and Regards
    Madhu Srinivasan.

    Hi Madhu,
        You can do this by inserting a sequence file callback into your main sequence and choose the ModelOptions callback. You can then use the expression step to set the "Parameters.ModelOptions.NumTestSockets" value to whatever you want. If you then use the Test UUTs execution entry point you will be prompted for serial numbers automatically. You could also use this same procedure but alter the ModelOptions callback in the process model directly, either way works just as well but I think that using a sequence file callback gives a bit more flexibility in the system.
    Hope this helps,
       Nick

  • Is there a max number of names that can be put into Contacts

    is there a max number of names that can be put into Contacts and still have the app work well?

    Yes, there is. It's how many contacts your hard drive can take. So you can fill up the entire computer with nothing but contacts until your HDD/Flash has no space left. So if you have 250GB, it'd be less than if you had 500GB and you'd have more on 750GB.

Maybe you are looking for