Scheduling meetings with no end date

245

She might be restricted by the so called BookingWindowInDays attribute, which specifies the maximum number of days into the future, that meetings can be booked:

enter image description here

To override this attribute, update her mailbox calendar (and the calendars of all resource mailboxes she needs to book) with the EnforceSchedulingHorizon property set to false, like this:

Set-MailboxCalendarSettings -Identity "user" -EnforceSchedulingHorizon $false

Share:
245

Related videos on Youtube

user3354561
Author by

user3354561

Updated on September 18, 2022

Comments

  • user3354561
    user3354561 over 1 year

    While running MapReduce jar I am getting following exception:

    Exception in thread "main" org.apache.hadoop.ipc.RemoteException: org.apache.hadoop.mapred.JobTrackerNotYetInitializedException: JobTracker is not yet RUNNING
        at org.apache.hadoop.mapred.JobTracker.checkJobTrackerState(JobTracker.java:5199)
        at org.apache.hadoop.mapred.JobTracker.getNewJobId(JobTracker.java:3543)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at org.apache.hadoop.ipc.RPC$Server.call(RPC.java:587)
        at org.apache.hadoop.ipc.Server$Handler$1.run(Server.java:1432)
        at org.apache.hadoop.ipc.Server$Handler$1.run(Server.java:1428)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.security.auth.Subject.doAs(Subject.java:415)
        at org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1190)
        at org.apache.hadoop.ipc.Server$Handler.run(Server.java:1426)
    
        at org.apache.hadoop.ipc.Client.call(Client.java:1113)
        at org.apache.hadoop.ipc.RPC$Invoker.invoke(RPC.java:229)
        at org.apache.hadoop.mapred.$Proxy2.getNewJobId(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at org.apache.hadoop.io.retry.RetryInvocationHandler.invokeMethod(RetryInvocationHandler.java:85)
        at org.apache.hadoop.io.retry.RetryInvocationHandler.invoke(RetryInvocationHandler.java:62)
        at org.apache.hadoop.mapred.$Proxy2.getNewJobId(Unknown Source)
        at org.apache.hadoop.mapred.JobClient$2.run(JobClient.java:944)
        at org.apache.hadoop.mapred.JobClient$2.run(JobClient.java:936)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.security.auth.Subject.doAs(Subject.java:415)
        at org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1190)
        at org.apache.hadoop.mapred.JobClient.submitJobInternal(JobClient.java:936)
        at org.apache.hadoop.mapreduce.Job.submit(Job.java:550)
        at org.apache.hadoop.mapreduce.Job.waitForCompletion(Job.java:580)
        at com.sreejithpillai.excel.mapreduce.ExcelDriver.main(ExcelDriver.java:49)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:160)
    

    but jps command shows

    15575 JobTracker
    15471 SecondaryNameNode
    15137 NameNode
    16123 Jps
    15733 TaskTracker
    3720 
    

    I tried formatting namenode and restarted but still the problem exists.

    I can see Job at http://localhost:50030/jobtracker.jsp

    Somebody please help.

    • jftuga
      jftuga over 12 years
      She can schedule meetings until the end of 2012.
    • Zoredache
      Zoredache over 12 years
      And she need to sceudule past the end of the world? ;)
    • Durga Viswanath Gadiraju
      Durga Viswanath Gadiraju over 8 years
      Have you tried restarting jobtracker?
  • user3354561
    user3354561 over 8 years
    Thanks for the reply, I am using standalone, and after restarting I started all the services using start-all.sh
  • user3354561
    user3354561 over 8 years
    Hi Aniruddha thanks, I am using pseducluster mode with a name node and datanode
  • Aniruddha Sinha
    Aniruddha Sinha over 8 years
    Did you get any benefit from the above answer?