Re: New Committer: Kiran Chavala

2024-04-09 Thread Nischal P
Congratulations Kiran!

On Tue, Apr 9, 2024 at 1:07 PM Harikrishna Patnala <
harikrishna.patn...@shapeblue.com> wrote:

> Congratulations Kiran, well deserved.
>
> Regards,
> Harikrishna
>
>
>
> 
> From: Rohit Yadav 
> Sent: Tuesday, April 9, 2024 11:15 AM
> To: dev 
> Subject: New Committer: Kiran Chavala
>
> The Project Management Committee (PMC) for Apache CloudStack
> has invited Kiran Chavala (kiranchavala) to become a committer and
> we are pleased to announce that they have accepted.
>
> Kiran has been a long time CloudStack contributor and has created
> over a hundred issues on Github. Being a committer enables easier
> contribution to the project and enable better productivity.
>
> Please join me in congratulating Kiran!
>
> Regards.
>


Re: volume was locked forever as "migration in progress"

2024-03-06 Thread Nischal P
HI

It looks like you might be updating the wrong volume id, with the state
Ready,

You can get the uuid of the volume in the UI
Here the ID mentioned is the uuid of the volume

[image: image.png]


mysql> select * from volumes where uuid='ID from above command'\G

Example
mysql> select * from volumes where
uuid='bc795579-eb10-466f-b1ae-b05f5c33b2be'\G
*** 1. row ***
  *  id: 2*
account_id: 1
 domain_id: 1
   pool_id: NULL
  last_pool_id: NULL



mysql>update volumes set state='Ready' where id='ID marked in Bold ';


Please check if this works.


Thanks & Regards
Nischal




On Wed, Mar 6, 2024 at 9:26 PM  wrote:

> Hello community
>
> For this issue, I tried deleting all resources.
>
> 1. Delete host from Cloud Stack
>
> 2. Delete cluster from Cloud Stack
>
> 3. Delete the primary storage associated with the cluster from Cloud Stack
>
> There is a problem here as well; the volume that is locked during
> migration cannot be deleted, and the primary storage cannot be deleted
> either.
>
> I have tried changing the state of the locked ID in the SQL VOLUME table
> to Ready and deleting the record itself, but the locked volume continues to
> be displayed as "Migrating" on Cloud Stack. Masu.
>
> If anyone knows how to deal with this issue please let me know.
>
> thank you.
>
> -Original Message-
> From: h.chi...@bestnetllc.co.jp 
> Sent: Wednesday, March 6, 2024 1:55 AM
> To: users@cloudstack.apache.org
> Subject: RE: volume was locked forever as "migration in progress"
>
> Hi Nischal
> thank you for your reply.
>
> Following your advice, I changed the state of the target volume to "Ready"
> using MySQL Workbench.
>
> However, the problem persists.
> I'm guessing that the table that holds the key to the migration process is
> somewhere else.
>
> If anyone knows please let me know.
>
> thank you.
>
> -Original Message-
> From: Nischal P 
> Sent: Tuesday, March 5, 2024 1:45 AM
> To: users@cloudstack.apache.org
> Subject: Re: volume was locked forever as "migration in progress"
>
> Hi Hideyuki
>
> If the volume is stuck in Migration state, I suggest that you take a back
> up of DB before proceeding to the next step.
>
> 1. Please check if the volume is present in the source storage or the
> destination 2. Once its confirmed, please update the mysql database
>
> 3 .mysql> select id from volumes where name='NAME OF VOLUME';
>
> 4. mysql> update volumes set state='Ready' where id=ID;  - ID you get here
> is from Step 3.
>
> Please perform these steps carefully.
>
>
> Thanks & Regards
> Nischal
>
>
> On Mon, Mar 4, 2024 at 9:49 PM  wrote:
>
> > Hello
> > I have already tried it, but the volume is still locked as before.
> >
> > Below is what I tried.
> > Systemctl restart cloudstack-management
> > vm.job.timeout=50
> > job.expire. minutes=50
> >
> > kvm.storage.offline.migration.wait=120
> >
> > kvm.storage.online.migration.wait=120
> >
> > mergeVirtualMachineWithVolume=120
> >
> > mergewait=120
> >
> >  job.cancel.threshold.minutes=5
> >
> > job.expire.minutes=5
> >
> > I am very confused about this event.
> > If anyone knows of an effective workaround, please let me know.
> >
> > Regards
> > Hideyuki.C
> >
> > -Original Message-
> > From: Kiran Chavala 
> > Sent: Monday, March 4, 2024 3:25 PM
> > To: users@cloudstack.apache.org
> > Subject: Re: volume was locked forever as "migration in progress"
> >
> > Hi
> >
> > Currently there is no way to force cancel a struck async job.
> >
> > you have to restart the management service
> >
> > service cloudstack-management restart
> >
> > Regards
> > Kiran
> >
> > From: h.chi...@bestnetllc.co.jp 
> > Date: Monday, 4 March 2024 at 1:43 AM
> > To: users@cloudstack.apache.org 
> > Subject: volume was locked forever as "migration in progress"
> > Hello community
> >
> >
> >
> > Do you know how to force cancel a stuck job?
> >
> >
> >
> > When the source KVM host went down during storage migration, the
> > volume was locked forever as "migration in progress".
> >
> >
> >
> > thank you.
> >
> >
> >
> >
>
>


Re: volume was locked forever as "migration in progress"

2024-03-04 Thread Nischal P
Hi Hideyuki

If the volume is stuck in Migration state, I suggest that you take a back
up of DB before proceeding to the next step.

1. Please check if the volume is present in the source storage or the
destination
2. Once its confirmed, please update the mysql database

3 .mysql> select id from volumes where name='NAME OF VOLUME';

4. mysql> update volumes set state='Ready' where id=ID;  - ID you get here
is from Step 3.

Please perform these steps carefully.


Thanks & Regards
Nischal


On Mon, Mar 4, 2024 at 9:49 PM  wrote:

> Hello
> I have already tried it, but the volume is still locked as before.
>
> Below is what I tried.
> Systemctl restart cloudstack-management
> vm.job.timeout=50
> job.expire. minutes=50
>
> kvm.storage.offline.migration.wait=120
>
> kvm.storage.online.migration.wait=120
>
> mergeVirtualMachineWithVolume=120
>
> mergewait=120
>
>  job.cancel.threshold.minutes=5
>
> job.expire.minutes=5
>
> I am very confused about this event.
> If anyone knows of an effective workaround, please let me know.
>
> Regards
> Hideyuki.C
>
> -Original Message-
> From: Kiran Chavala 
> Sent: Monday, March 4, 2024 3:25 PM
> To: users@cloudstack.apache.org
> Subject: Re: volume was locked forever as "migration in progress"
>
> Hi
>
> Currently there is no way to force cancel a struck async job.
>
> you have to restart the management service
>
> service cloudstack-management restart
>
> Regards
> Kiran
>
> From: h.chi...@bestnetllc.co.jp 
> Date: Monday, 4 March 2024 at 1:43 AM
> To: users@cloudstack.apache.org 
> Subject: volume was locked forever as "migration in progress"
> Hello community
>
>
>
> Do you know how to force cancel a stuck job?
>
>
>
> When the source KVM host went down during storage migration, the volume
> was locked forever as "migration in progress".
>
>
>
> thank you.
>
>
>
>


Re: new website is life

2024-02-07 Thread Nischal P
Slick!

On Wed, Feb 7, 2024 at 4:46 PM Kiran Chavala 
wrote:

> Congratulations to all involved!,  Breath of fresh air to the website,
> Looks Neat and clean
>
> Regards
> Kiran
>
> From: Daan Hoogland 
> Date: Wednesday, 7 February 2024 at 1:53 PM
> To: dev , users 
> Subject: new website is life
> People,
> we brought the new website. Please all have a look at
> https://cloudstack.apache.org
>
> thanks for any feedback
>
> --
> Daan
>
>
>
>