A new Flexera Community experience is coming on November 25th. Click here for more information.
Hi All,
I hope the overnight reconcile job present in the windows task scheduler for On premise environment. We are on Multi tenant environment and i am not able to find the Overnight reconcile job on windows task scheduler of batch server.
By anychance anyone know where the job is located on the multi tenant environment.
Thank you
Sasi
‎Jul 30, 2020 05:16 AM
I believe a default time is set when the license for the tenant is activated. The recommended way to change the scheduled time would be via the UI. There is also a BatchProcessSchedule table in the compliance and broker db.
‎Aug 04, 2020 03:07 PM
If you do not see the scheduled task on the batch processing server, please try going to System Settings->Inventory from the FNMS Web UI
‎Aug 03, 2020 02:13 PM
Hi @tjohnson1
Thank you for your reply! yes we are not able to see it to the task scheduler. But it appears on the System setting -> Inventory tab.
Attached is the screenshot. I could see the job is scheduled to run at 12:30 for 1 group of tenants and 1:30 for another group of tenants.
we have not configured\changed or updated either on DB or UI.
By anychance do you know where these values are configured and how can we set a particular time for 1 groups of tenants to perform their import?
Thank you
Sasi
‎Aug 04, 2020 07:06 AM
Hi @sasikumar_r
have you also checked this schedule task on the batch server:
FlexNet Manager Platform -> Inventory Import and license reconcile ?
‎Aug 04, 2020 08:08 AM - edited ‎Aug 04, 2020 08:09 AM
I believe a default time is set when the license for the tenant is activated. The recommended way to change the scheduled time would be via the UI. There is also a BatchProcessSchedule table in the compliance and broker db.
‎Aug 04, 2020 03:07 PM
Hi,
on our on-premise, multi-tenant environment I have used:
-------------------------------------------------------------------------------------------------------
select * from [Compliance_DB].[dbo].[BatchProcessExecution]
WHERE Submitted >= '2020-08-04 09:00' and Submitted <= '2020-08-04 11:00'
and [BatchProcessTypeID] = '25'
order by Submitted desc
-------------------------------------------------------------------------------------------------------
As result I found a 'Submitted' for a IMImport (Task: Import into staging) for every tenant at the same time:
2020-08-04 10:00:00.040
When I start it via UI I can see a 'BatchProcessTypeID = 5' (Task: InventoryImportNoStats') for one tenant.
Have you checked the compliance db to see which tasks started in your environment at the same time?
Regards,
‎Aug 05, 2020 03:16 AM
Hi @Tooling42 ,
At the same time i could see InventoryImportWriters job has got started in our environment.
@tjohnson1 - as he suggested i could see we have the option to reschedule overnight reconcile. we will try use the same for updating it.
Thank you
Sasi
‎Aug 06, 2020 10:54 AM