-
Notifications
You must be signed in to change notification settings - Fork 0
Update Fork #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Fork #1
Conversation
It is not common, but HTTP requests can fail due to connection issues. In order to mitigate such situations and also improve logging, this PR enhances the Redfish request handling by adding an execution flow for re-trying HTTP requests; the retry happens only if the global settings redfish.retries is set to 1 or more retries; default is of 2 (two). One can disable the retries by setting redfish.retries to 0 (zero).
…4321) * Add hardware version to worker VM * Added worker VM hardware version when creating a template from a volume and migrating a detached volume * Add null parameter back that was removed by merge
* changes for supporting Citrix Hypervisor product name Signed-off-by: Abhishek Kumar <[email protected]>
#4389) * Fixed vm-templates not being removed from primary storage with storage garbage collection * Update vmware-base/src/main/java/com/cloud/hypervisor/vmware/mo/VirtualMachineMO.java Co-authored-by: sureshanaparti <[email protected]> * Var name Co-authored-by: sureshanaparti <[email protected]>
We should have the metrics for the hosts which are dedicated to certain domains. We should also be able to see cpu/memory/storage currently used per domain > How Has This Been Tested? Enable prometheus server Add 127.0.0.1 as allowed Ip so that you can fetch metrics from prometheus Now fetch the endpoint # http http://127.0.0.1:9595/metrics | grep cloudstack_host_is_dedicated cloudstack_host_is_dedicated{zone="mgt122-10",hostname="node11",ip="10.13.122.11"} 1 # http http://127.0.0.1:9595/metrics | grep cloudstack_host_dedicated_to_account cloudstack_host_dedicated_to_account{zone="mgt122-10",hostname="node11",ip="10.13.122.11"} 1
…4366) If the resource state of hypervisor in "Maintenance" then it should be considered as offline even though the agent state is "Up". Since its in maintenance mode, it cant be used to allocate VM's and hence can't be considered towards resource allocation
Co-authored-by: Pearl Dsilva <[email protected]>
… vm.serviceoffering.ram.size.max (#4379) vm.serviceoffering.cpu.cores.max and vm.serviceoffering.ram.size.max
…o cloudstack-agent (#4382)
…heus exporter (#4383) * Hosts are counted twice if it has multiple host tags in Prometheus exporter * Import HostVO and inject HostDao
Signed-off-by: Abhishek Kumar <[email protected]>
Co-authored-by: Rodrigo <[email protected]>
* support for handling incremental snaps (on DB entries) on xen * Addressed comments * Update NfsSecondaryStorageResource.java adjusted space in comment/ log Co-authored-by: Pearl Dsilva <[email protected]>
The default GC algorithm G1 that is enabled by default with Java11 serves well on multiprocessor machines with large amount of memory where GC is probablistic with low pauses, where response time is more important than throughput and GC is kept shorter. The CloudStack management server is largely a multi-threaded server application that handles and orchestrates several network requests, and has the default max. heap size of only 2G that can be considered a small/medium application from a heap size perspective. Perhaps a more aggresive GC algorithm such as ParallelGC as used in Java8 and before (that is previous CloudStack releases) would serve better for throughput and cause more aggresive GC. Reference: https://docs.oracle.com/en/java/javase/11/gctuning/available-collectors.html#GUID-13943556-F521-4287-AAAA-AE5DE68777CD Signed-off-by: Rohit Yadav <[email protected]>
Co-authored-by: Rakesh Venkatesh <[email protected]>
Co-authored-by: Pearl Dsilva <[email protected]>
Co-authored-by: Daan Hoogland <[email protected]>
For Basic network isolation methods are not provided, and exception is thrown when trying to encode the Vlan id. That's why we have to check before encoding that the list with isolation methods is not empty
Update template to return information to the documentation
…4469) Co-authored-by: Pearl Dsilva <[email protected]>
|
I think you will want to get master from origin and force push it here. define or redefine origin as the apache cloudstack repo and define yours as "mine" or "dk" or something. makes sense? |
|
Hi Dahn,
at first, I have forked the apache/cloudstack into my projects via GitHub,
after this I cloned my forked repository. Last month, I merged
apache/cloudstack master into my fork via GitHub with a pull request.
Then we talked together about it yesterday and you means that is not so
good.
For this reason I've added the apache/cloudstack into my remote repository
mit git remote add ... and pulled into my forked master
Now I want to find out if this correct, the result can you see here (
apache#4548)
[image: image.png]
it this a better solution?
The only one that I know to prevent a merge commit is to use rebase, but a
rebase of apache master to my forked master sounds not pretty well.
Many Greetings
Dirk
Am Mi., 16. Dez. 2020 um 13:07 Uhr schrieb dahn <[email protected]>:
… @DK101010 <https://github.com/DK101010> ,
[image: image]
<https://user-images.githubusercontent.com/2486961/102346654-7ded8480-3f9f-11eb-9179-4f37e75d39df.png>
I think you will want to get master from origin and force push it here.
define or redefine origin as the apache cloudstack repo and define yours as
"mine" or "dk" or something. makes sense?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ANW3U4UFYQIUBH6IGJIGRODSVCPJXANCNFSM4TXJLANA>
.
|
|
so what are the output of |
|
[image: image.png]
Am Mi., 16. Dez. 2020 um 16:00 Uhr schrieb dahn <[email protected]>:
… so what are the output of git remote -v, and git branch -v?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ANW3U4XB2CNZJGGRDQ35FDDSVDDQXANCNFSM4TXJLANA>
.
|
is not the text i was looking for :D |
|
better not use github with mail. it doesn't work that well |
|
Ah I should have said it shows how the first line is destructive! I would also not name your own origin but something like mine or DK or so. |
|
Ahh ok, I understand what you want and approved my assumption. My master should pointed to the apache/cloudstack master and not to my forked master. I will remove my master add the apache/cloudstack master, clean up my newest branch, merge the new master in this branch and then should be the problem solved. I let you know when I pushed my updated branch, ok? Many thanks for your support :) |
|
yes, it does |
This fixes Travis to run basic UI checks for job #1 Signed-off-by: Rohit Yadav <[email protected]>


Description
Types of changes
Screenshots (if appropriate):
How Has This Been Tested?