NAS - Startup parameters

TomasTomas Member Posts: 420
Can we have more than one startup parameter on NAS? Or do we have to run two different NAS?

Basically, we need one for Outlook Synchronization, and another one for Job Queue.

Comments

  • rajpatelbcarajpatelbca Member Posts: 178
    hi,

    you can have only one startup parameter at a time.
    you can set multiple nas having different startup paramter.

    Regards,
    Experience Makes Man Perfect....
    Rajesh Patel
  • ta5ta5 Member Posts: 1,164
    No problem, just put a "," between the parameters. If performance is an issue, you might need to NAS instances, on 2 different servers if needed.

    Regards
    Thomas
  • TomasTomas Member Posts: 420
    I was looking at codeunit 1

    IF CGNASStartedinLoop = FALSE THEN
        CASE Parameter OF
          'OSYNCH','JOBQUEUE':
            BEGIN
              IF NOT JobQueueSetup.GET THEN BEGIN
                JobQueueSetup.INIT;
                JobQueueSetup.INSERT;
              END;
              IF NOT JobQueueSetup."Job Queue Active" THEN BEGIN
                JobQueueSetup.VALIDATE("Job Queue Active",TRUE);
                JobQueueSetup.MODIFY;
              END;
              CODEUNIT.RUN(CODEUNIT::"Job Queue Dispacher");
            END;
        END;
    

    Where OSYNCH is for Outlook Synchronization, and JOBQUEUE is for jobs... So, basically, we need only one startup paramter (OSYNCH or JOBQUEUE) which will allow us to do both:
    1. sync outlook
    2. run job queues


    Am I correct?
  • garakgarak Member Posts: 3,263
    with Comma, you can add more than one parameter. Take a look into CU 1 function NASHandler().

    Regards
    Do you make it right, it works too!
  • garakgarak Member Posts: 3,263
    i would use two NAS because your two processes are differnt and not belong together. So, if you change your source in your jobQue, also the Outlooksync. stop. For a better handling and support i would use two NAS in your scenario.
    Do you make it right, it works too!
  • 94099409 Member Posts: 1
    How should the startup parameters be if I have two NAS with a JobQueue Entry "list" for each?
Sign In or Register to comment.