How to optimize the ever growing VCDB. Can we keep a tab on the database size? What are the measures to take to clean up the database and reduce the size?
Best practices while deciding VCDB size
542 Views Asked by Sunil H. Chatekar At
1
There are 1 best solutions below
Related Questions in VCENTER
- How can you get and update tags for a given VM using vCenter APIs?
- Moving Template or OVA to Datastore using vCenter API
- Python Requests library returns empty array (vCenter)
- Cross vCenter vMotion to linked vCenter
- Powershell start-process - windows warning while program starts - how to skip/accept it
- I am held up with an Error "Webpage is blocked "while opening vcenter
- how to get the last windows update dates in VCenter
- How to mount purestorage volume as a VMware datastore in vCenter using python?
- Querying vCenter for VM info using PowerShell - Too slow
- vmware Deploying OVA through python api
- VCenter behind Nginx Proxy Manager comes the error message: HTTP Status 400 – Bad Request
- Ansible Vmware Guest: Add a 2nd NIC on VM
- How to check for vCenter Server updates with the vSphere Python API?
- vmware / centos extend disk
- how to utilize Vmware.vim in my C# program?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The main thing that fills up the database are the vCenter logs, as a start we tend to set the following:
To purge the data in the VPX_EVENT table: 1. Connect to Servername\SQL Database and log in with the appropriate credentials. 2. Click databases to expand and select VIM_VCDB > Tables. 3. Right-click the dbo.VPX_PARAMETER table and select Open.
Note: If you are using SQL Server 2008, right-click the dbo.VPX_PARAMETER table and click Edit Top 200 Rows.
Modify task.maxAge to 30, and modify the task.maxAgeEnabled value to true.
Note:To improve the time of the data cleanup, run the preceding steps in several intervals. To do this, ensure to keep the default value of event.maxAgeand task.maxAgeand perform step 6 to run the cleanup. Then, reduce the event.maxAgeand task.maxAgevalue by 60 and run the cleanup. Repeat the steps until the value is reached to 30 for the final cleanup process.
Run the built-in stored procedure:
a. Go to VIM_VCDB > Programmability > Stored Procedures. b. Right-click dbo.cleanup_events_tasks_proc and select Execute Stored Procedure.
This purges the data from the vpx_event, vpx_event_arg, and vpx_task tables based on the date specified for maxAge.
c. When this has successfully completed, close SQL Management Studio and start the VMware Virtual Center Server service.
That should keep the db size down to a reasonable size. You can also setup maintenance plans to make the DB run better if required.