OFBiz demos all down

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
24 messages Options
12
Reply | Threaded
Open this post in threaded view
|

OFBiz demos all down

Jacques Le Roux
Administrator
FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.

Jacques
Reply | Threaded
Open this post in threaded view
|

Re: OFBiz demos all down

Jacques Le Roux
Administrator
The VM is back, I'm restarting the demos

Jacques

Le 26/10/2015 08:47, Jacques Le Roux a écrit :
> FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.
>
> Jacques
>
Reply | Threaded
Open this post in threaded view
|

Re: OFBiz demos all down

Jacques Le Roux
Administrator
The VM is down again since yesterday evening, checking with infra...

Jacques

Le 26/10/2015 14:56, Jacques Le Roux a écrit :

> The VM is back, I'm restarting the demos
>
> Jacques
>
> Le 26/10/2015 08:47, Jacques Le Roux a écrit :
>> FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.
>>
>> Jacques
>>
>
Reply | Threaded
Open this post in threaded view
|

Re: OFBiz demos all down

Jacques Le Roux
Administrator
Demos should all be back soon

Enjoy :)

Jacques

Le 30/10/2015 09:58, Jacques Le Roux a écrit :

> The VM is down again since yesterday evening, checking with infra...
>
> Jacques
>
> Le 26/10/2015 14:56, Jacques Le Roux a écrit :
>> The VM is back, I'm restarting the demos
>>
>> Jacques
>>
>> Le 26/10/2015 08:47, Jacques Le Roux a écrit :
>>> FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.
>>>
>>> Jacques
>>>
>>
>
Reply | Threaded
Open this post in threaded view
|

patch: exception because of table change in trunk

Christopher L
In reply to this post by Jacques Le Roux
Hi.

I have apparently lost access to open jira issues, so this is the only way I can think of to submit a patch.

org.ofbiz.product.config.ProductConfigItemContentWrapper.java is causing exceptions because the table structure has been changed, and the code refers to a column that no longer exists.

My patch is at:

https://drive.google.com/file/d/0B8bCbJvFDcA1QjgxdU1YS1JWSkU/view?usp=sharing

Thanks!

Chris
     
Reply | Threaded
Open this post in threaded view
|

Re: patch: exception because of table change in trunk

Jacques Le Roux
Administrator
Thanks for report Christopher,

You suggested

-        String cacheKey = confItemContentTypeId + SEPARATOR + locale + SEPARATOR + mimeTypeId + SEPARATOR + productConfigItem.get("productCategoryId");
+        String cacheKey = confItemContentTypeId + SEPARATOR + locale + SEPARATOR + mimeTypeId;

But we need to have an unique cacheKey. It was a typo, productCategoryId should have been configItemId

I fixed this typo in
trunk r1711519
R14.12 r1711521
R13.07 r1711525
R12.04 r1711526

Jacques

Le 30/10/2015 18:12, Christopher L a écrit :

> Hi.
>
> I have apparently lost access to open jira issues, so this is the only way I can think of to submit a patch.
>
> org.ofbiz.product.config.ProductConfigItemContentWrapper.java is causing exceptions because the table structure has been changed, and the code refers to a column that no longer exists.
>
> My patch is at:
>
> https://drive.google.com/file/d/0B8bCbJvFDcA1QjgxdU1YS1JWSkU/view?usp=sharing
>
> Thanks!
>
> Chris
>    
Reply | Threaded
Open this post in threaded view
|

Re: patch: exception because of table change in trunk

Jacques Le Roux
Administrator
Le 30/10/2015 18:36, Jacques Le Roux a écrit :

> Thanks for report Christopher,
>
> You suggested
>
> -        String cacheKey = confItemContentTypeId + SEPARATOR + locale + SEPARATOR + mimeTypeId + SEPARATOR +
> productConfigItem.get("productCategoryId");
> +        String cacheKey = confItemContentTypeId + SEPARATOR + locale + SEPARATOR + mimeTypeId;
>
> But we need to have an unique cacheKey. It was a typo, productCategoryId should have been configItemId
>
> I fixed this typo in
> trunk r1711519
> R14.12 r1711521
> R13.07 r1711525
> R12.04 r1711526
>

Actually since https://issues.apache.org/jira/browse/OFBIZ-6680 it not yet done, I will revert changes in releases branches and will rather backport
all soon (before committing for https://issues.apache.org/jira/browse/OFBIZ-6701)

Jacques

> Jacques
>
> Le 30/10/2015 18:12, Christopher L a écrit :
>> Hi.
>>
>> I have apparently lost access to open jira issues, so this is the only way I can think of to submit a patch.
>>
>> org.ofbiz.product.config.ProductConfigItemContentWrapper.java is causing exceptions because the table structure has been changed, and the code
>> refers to a column that no longer exists.
>>
>> My patch is at:
>>
>> https://drive.google.com/file/d/0B8bCbJvFDcA1QjgxdU1YS1JWSkU/view?usp=sharing
>>
>> Thanks!
>>
>> Chris
>>
>
Reply | Threaded
Open this post in threaded view
|

RE: patch: exception because of table change in trunk

Christopher L
Ahh, that makes sense.  Thanks!

C

> Subject: Re: patch: exception because of table change in trunk
> To: [hidden email]
> From: [hidden email]
> Date: Fri, 30 Oct 2015 18:52:00 +0100
>
> Le 30/10/2015 18:36, Jacques Le Roux a écrit :
> > Thanks for report Christopher,
> >
> > You suggested
> >
> > -        String cacheKey = confItemContentTypeId + SEPARATOR + locale + SEPARATOR + mimeTypeId + SEPARATOR +
> > productConfigItem.get("productCategoryId");
> > +        String cacheKey = confItemContentTypeId + SEPARATOR + locale + SEPARATOR + mimeTypeId;
> >
> > But we need to have an unique cacheKey. It was a typo, productCategoryId should have been configItemId
> >
> > I fixed this typo in
> > trunk r1711519
> > R14.12 r1711521
> > R13.07 r1711525
> > R12.04 r1711526
> >
>
> Actually since https://issues.apache.org/jira/browse/OFBIZ-6680 it not yet done, I will revert changes in releases branches and will rather backport
> all soon (before committing for https://issues.apache.org/jira/browse/OFBIZ-6701)
>
> Jacques
>
> > Jacques
> >
> > Le 30/10/2015 18:12, Christopher L a écrit :
> >> Hi.
> >>
> >> I have apparently lost access to open jira issues, so this is the only way I can think of to submit a patch.
> >>
> >> org.ofbiz.product.config.ProductConfigItemContentWrapper.java is causing exceptions because the table structure has been changed, and the code
> >> refers to a column that no longer exists.
> >>
> >> My patch is at:
> >>
> >> https://drive.google.com/file/d/0B8bCbJvFDcA1QjgxdU1YS1JWSkU/view?usp=sharing
> >>
> >> Thanks!
> >>
> >> Chris
> >>
> >
     
Reply | Threaded
Open this post in threaded view
|

Re: OFBiz demos all down

Jacques Le Roux
Administrator
In reply to this post by Jacques Le Roux
I'm restarting stable (aka 13.07) (after old - ie 12.04 - recently)
It seems demos (but trunk) are less stable since we switched from Java 7 to Java 8.
Anyway Java 7 is still the recommended Java version for released OFBiz versions

Jacques

Le 30/10/2015 11:18, Jacques Le Roux a écrit :

> Demos should all be back soon
>
> Enjoy :)
>
> Jacques
>
> Le 30/10/2015 09:58, Jacques Le Roux a écrit :
>> The VM is down again since yesterday evening, checking with infra...
>>
>> Jacques
>>
>> Le 26/10/2015 14:56, Jacques Le Roux a écrit :
>>> The VM is back, I'm restarting the demos
>>>
>>> Jacques
>>>
>>> Le 26/10/2015 08:47, Jacques Le Roux a écrit :
>>>> FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.
>>>>
>>>> Jacques
>>>>
>>>
>>
>
Reply | Threaded
Open this post in threaded view
|

Re: OFBiz demos all down

Jacques Le Roux
Administrator
In reply to this post by Jacques Le Roux
This time trunk demo crashed, it was maybe due to OFBIZ-6707, it's restarting

Jacques

Le 30/10/2015 11:18, Jacques Le Roux a écrit :

> Demos should all be back soon
>
> Enjoy :)
>
> Jacques
>
> Le 30/10/2015 09:58, Jacques Le Roux a écrit :
>> The VM is down again since yesterday evening, checking with infra...
>>
>> Jacques
>>
>> Le 26/10/2015 14:56, Jacques Le Roux a écrit :
>>> The VM is back, I'm restarting the demos
>>>
>>> Jacques
>>>
>>> Le 26/10/2015 08:47, Jacques Le Roux a écrit :
>>>> FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.
>>>>
>>>> Jacques
>>>>
>>>
>>
>
Reply | Threaded
Open this post in threaded view
|

Re: OFBiz demos all down

Jacques Le Roux
Administrator
The VM is down again since this morning, infra on it...

Jacques

Le 02/11/2015 22:53, Jacques Le Roux a écrit :

> This time trunk demo crashed, it was maybe due to OFBIZ-6707, it's restarting
>
> Jacques
>
> Le 30/10/2015 11:18, Jacques Le Roux a écrit :
>> Demos should all be back soon
>>
>> Enjoy :)
>>
>> Jacques
>>
>> Le 30/10/2015 09:58, Jacques Le Roux a écrit :
>>> The VM is down again since yesterday evening, checking with infra...
>>>
>>> Jacques
>>>
>>> Le 26/10/2015 14:56, Jacques Le Roux a écrit :
>>>> The VM is back, I'm restarting the demos
>>>>
>>>> Jacques
>>>>
>>>> Le 26/10/2015 08:47, Jacques Le Roux a écrit :
>>>>> FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.
>>>>>
>>>>> Jacques
>>>>>
>>>>
>>>
>>
>
Reply | Threaded
Open this post in threaded view
|

Re: OFBiz demos all down

taher
Hi Jacques,

Is OFBiz the reason for this or is it the infrastructure itself? Perhaps we need to check the logs for memory leaks.

Taher Alkhateeb

----- Original Message -----

From: "Jacques Le Roux" <[hidden email]>
To: [hidden email]
Sent: Wednesday, 4 November, 2015 12:33:26 PM
Subject: Re: OFBiz demos all down

The VM is down again since this morning, infra on it...

Jacques

Le 02/11/2015 22:53, Jacques Le Roux a écrit :

> This time trunk demo crashed, it was maybe due to OFBIZ-6707, it's restarting
>
> Jacques
>
> Le 30/10/2015 11:18, Jacques Le Roux a écrit :
>> Demos should all be back soon
>>
>> Enjoy :)
>>
>> Jacques
>>
>> Le 30/10/2015 09:58, Jacques Le Roux a écrit :
>>> The VM is down again since yesterday evening, checking with infra...
>>>
>>> Jacques
>>>
>>> Le 26/10/2015 14:56, Jacques Le Roux a écrit :
>>>> The VM is back, I'm restarting the demos
>>>>
>>>> Jacques
>>>>
>>>> Le 26/10/2015 08:47, Jacques Le Roux a écrit :
>>>>> FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.
>>>>>
>>>>> Jacques
>>>>>
>>>>
>>>
>>
>

Reply | Threaded
Open this post in threaded view
|

Re: OFBiz demos all down

Jacques Le Roux
Administrator
Nope it's the VM see http://status.apache.org/

Jacques

Le 04/11/2015 10:57, Taher Alkhateeb a écrit :

> Hi Jacques,
>
> Is OFBiz the reason for this or is it the infrastructure itself? Perhaps we need to check the logs for memory leaks.
>
> Taher Alkhateeb
>
> ----- Original Message -----
>
> From: "Jacques Le Roux" <[hidden email]>
> To: [hidden email]
> Sent: Wednesday, 4 November, 2015 12:33:26 PM
> Subject: Re: OFBiz demos all down
>
> The VM is down again since this morning, infra on it...
>
> Jacques
>
> Le 02/11/2015 22:53, Jacques Le Roux a écrit :
>> This time trunk demo crashed, it was maybe due to OFBIZ-6707, it's restarting
>>
>> Jacques
>>
>> Le 30/10/2015 11:18, Jacques Le Roux a écrit :
>>> Demos should all be back soon
>>>
>>> Enjoy :)
>>>
>>> Jacques
>>>
>>> Le 30/10/2015 09:58, Jacques Le Roux a écrit :
>>>> The VM is down again since yesterday evening, checking with infra...
>>>>
>>>> Jacques
>>>>
>>>> Le 26/10/2015 14:56, Jacques Le Roux a écrit :
>>>>> The VM is back, I'm restarting the demos
>>>>>
>>>>> Jacques
>>>>>
>>>>> Le 26/10/2015 08:47, Jacques Le Roux a écrit :
>>>>>> FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.
>>>>>>
>>>>>> Jacques
>>>>>>
>
Reply | Threaded
Open this post in threaded view
|

Re: OFBiz demos all down

Jacques Le Roux
Administrator
Infra just restarted the VM, I'm restarting the demos

Jacques

Le 04/11/2015 11:06, Jacques Le Roux a écrit :

> Nope it's the VM see http://status.apache.org/
>
> Jacques
>
> Le 04/11/2015 10:57, Taher Alkhateeb a écrit :
>> Hi Jacques,
>>
>> Is OFBiz the reason for this or is it the infrastructure itself? Perhaps we need to check the logs for memory leaks.
>>
>> Taher Alkhateeb
>>
>> ----- Original Message -----
>>
>> From: "Jacques Le Roux" <[hidden email]>
>> To: [hidden email]
>> Sent: Wednesday, 4 November, 2015 12:33:26 PM
>> Subject: Re: OFBiz demos all down
>>
>> The VM is down again since this morning, infra on it...
>>
>> Jacques
>>
>> Le 02/11/2015 22:53, Jacques Le Roux a écrit :
>>> This time trunk demo crashed, it was maybe due to OFBIZ-6707, it's restarting
>>>
>>> Jacques
>>>
>>> Le 30/10/2015 11:18, Jacques Le Roux a écrit :
>>>> Demos should all be back soon
>>>>
>>>> Enjoy :)
>>>>
>>>> Jacques
>>>>
>>>> Le 30/10/2015 09:58, Jacques Le Roux a écrit :
>>>>> The VM is down again since yesterday evening, checking with infra...
>>>>>
>>>>> Jacques
>>>>>
>>>>> Le 26/10/2015 14:56, Jacques Le Roux a écrit :
>>>>>> The VM is back, I'm restarting the demos
>>>>>>
>>>>>> Jacques
>>>>>>
>>>>>> Le 26/10/2015 08:47, Jacques Le Roux a écrit :
>>>>>>> FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.
>>>>>>>
>>>>>>> Jacques
>>>>>>>
>>
>
Reply | Threaded
Open this post in threaded view
|

Re: OFBiz demos all down

Jacques Le Roux
Administrator
OK it seems we have an issue on the OFBIZ-VM since I replaced Java 7 by Java 8 there.
The the OFBIZ-VM is down again and we know that arises because one (our?) demos suck/s all the VM power (100% CPU too long)

Since we have no Java 8 features yet in trunk, I'd like to temporary revert the  changes related with https://issues.apache.org/jira/browse/OFBIZ-6458 
to test the hypothesis
Opinions?

In the meantime I will ask to reboot the VM again and will restart the demos

Jacques


Le 04/11/2015 12:47, Jacques Le Roux a écrit :

> Infra just restarted the VM, I'm restarting the demos
>
> Jacques
>
> Le 04/11/2015 11:06, Jacques Le Roux a écrit :
>> Nope it's the VM see http://status.apache.org/
>>
>> Jacques
>>
>> Le 04/11/2015 10:57, Taher Alkhateeb a écrit :
>>> Hi Jacques,
>>>
>>> Is OFBiz the reason for this or is it the infrastructure itself? Perhaps we need to check the logs for memory leaks.
>>>
>>> Taher Alkhateeb
>>>
>>> ----- Original Message -----
>>>
>>> From: "Jacques Le Roux" <[hidden email]>
>>> To: [hidden email]
>>> Sent: Wednesday, 4 November, 2015 12:33:26 PM
>>> Subject: Re: OFBiz demos all down
>>>
>>> The VM is down again since this morning, infra on it...
>>>
>>> Jacques
>>>
>>> Le 02/11/2015 22:53, Jacques Le Roux a écrit :
>>>> This time trunk demo crashed, it was maybe due to OFBIZ-6707, it's restarting
>>>>
>>>> Jacques
>>>>
>>>> Le 30/10/2015 11:18, Jacques Le Roux a écrit :
>>>>> Demos should all be back soon
>>>>>
>>>>> Enjoy :)
>>>>>
>>>>> Jacques
>>>>>
>>>>> Le 30/10/2015 09:58, Jacques Le Roux a écrit :
>>>>>> The VM is down again since yesterday evening, checking with infra...
>>>>>>
>>>>>> Jacques
>>>>>>
>>>>>> Le 26/10/2015 14:56, Jacques Le Roux a écrit :
>>>>>>> The VM is back, I'm restarting the demos
>>>>>>>
>>>>>>> Jacques
>>>>>>>
>>>>>>> Le 26/10/2015 08:47, Jacques Le Roux a écrit :
>>>>>>>> FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.
>>>>>>>>
>>>>>>>> Jacques
>>>>>>>>
>>>
>>
>
Reply | Threaded
Open this post in threaded view
|

Re: OFBiz demos all down

Jacques Le Roux
Administrator
OK, my last thought: no needs to revert in trunk I will simply revert on the VM and will make Java 7 our default version on VM

Waiting for infra (they are bored with my request I guess :D)

Jacques

Le 05/11/2015 09:24, Jacques Le Roux a écrit :

> OK it seems we have an issue on the OFBIZ-VM since I replaced Java 7 by Java 8 there.
> The the OFBIZ-VM is down again and we know that arises because one (our?) demos suck/s all the VM power (100% CPU too long)
>
> Since we have no Java 8 features yet in trunk, I'd like to temporary revert the  changes related with
> https://issues.apache.org/jira/browse/OFBIZ-6458 to test the hypothesis
> Opinions?
>
> In the meantime I will ask to reboot the VM again and will restart the demos
>
> Jacques
>
>
> Le 04/11/2015 12:47, Jacques Le Roux a écrit :
>> Infra just restarted the VM, I'm restarting the demos
>>
>> Jacques
>>
>> Le 04/11/2015 11:06, Jacques Le Roux a écrit :
>>> Nope it's the VM see http://status.apache.org/
>>>
>>> Jacques
>>>
>>> Le 04/11/2015 10:57, Taher Alkhateeb a écrit :
>>>> Hi Jacques,
>>>>
>>>> Is OFBiz the reason for this or is it the infrastructure itself? Perhaps we need to check the logs for memory leaks.
>>>>
>>>> Taher Alkhateeb
>>>>
>>>> ----- Original Message -----
>>>>
>>>> From: "Jacques Le Roux" <[hidden email]>
>>>> To: [hidden email]
>>>> Sent: Wednesday, 4 November, 2015 12:33:26 PM
>>>> Subject: Re: OFBiz demos all down
>>>>
>>>> The VM is down again since this morning, infra on it...
>>>>
>>>> Jacques
>>>>
>>>> Le 02/11/2015 22:53, Jacques Le Roux a écrit :
>>>>> This time trunk demo crashed, it was maybe due to OFBIZ-6707, it's restarting
>>>>>
>>>>> Jacques
>>>>>
>>>>> Le 30/10/2015 11:18, Jacques Le Roux a écrit :
>>>>>> Demos should all be back soon
>>>>>>
>>>>>> Enjoy :)
>>>>>>
>>>>>> Jacques
>>>>>>
>>>>>> Le 30/10/2015 09:58, Jacques Le Roux a écrit :
>>>>>>> The VM is down again since yesterday evening, checking with infra...
>>>>>>>
>>>>>>> Jacques
>>>>>>>
>>>>>>> Le 26/10/2015 14:56, Jacques Le Roux a écrit :
>>>>>>>> The VM is back, I'm restarting the demos
>>>>>>>>
>>>>>>>> Jacques
>>>>>>>>
>>>>>>>> Le 26/10/2015 08:47, Jacques Le Roux a écrit :
>>>>>>>>> FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.
>>>>>>>>>
>>>>>>>>> Jacques
>>>>>>>>>
>>>>
>>>
>>
>
Reply | Threaded
Open this post in threaded view
|

Re: OFBiz demos all down

Jacques Le Roux
Administrator
All demos now run under Java 7

Jacques

Le 05/11/2015 09:29, Jacques Le Roux a écrit :

> OK, my last thought: no needs to revert in trunk I will simply revert on the VM and will make Java 7 our default version on VM
>
> Waiting for infra (they are bored with my request I guess :D)
>
> Jacques
>
> Le 05/11/2015 09:24, Jacques Le Roux a écrit :
>> OK it seems we have an issue on the OFBIZ-VM since I replaced Java 7 by Java 8 there.
>> The the OFBIZ-VM is down again and we know that arises because one (our?) demos suck/s all the VM power (100% CPU too long)
>>
>> Since we have no Java 8 features yet in trunk, I'd like to temporary revert the  changes related with
>> https://issues.apache.org/jira/browse/OFBIZ-6458 to test the hypothesis
>> Opinions?
>>
>> In the meantime I will ask to reboot the VM again and will restart the demos
>>
>> Jacques
>>
>>
>> Le 04/11/2015 12:47, Jacques Le Roux a écrit :
>>> Infra just restarted the VM, I'm restarting the demos
>>>
>>> Jacques
>>>
>>> Le 04/11/2015 11:06, Jacques Le Roux a écrit :
>>>> Nope it's the VM see http://status.apache.org/
>>>>
>>>> Jacques
>>>>
>>>> Le 04/11/2015 10:57, Taher Alkhateeb a écrit :
>>>>> Hi Jacques,
>>>>>
>>>>> Is OFBiz the reason for this or is it the infrastructure itself? Perhaps we need to check the logs for memory leaks.
>>>>>
>>>>> Taher Alkhateeb
>>>>>
>>>>> ----- Original Message -----
>>>>>
>>>>> From: "Jacques Le Roux" <[hidden email]>
>>>>> To: [hidden email]
>>>>> Sent: Wednesday, 4 November, 2015 12:33:26 PM
>>>>> Subject: Re: OFBiz demos all down
>>>>>
>>>>> The VM is down again since this morning, infra on it...
>>>>>
>>>>> Jacques
>>>>>
>>>>> Le 02/11/2015 22:53, Jacques Le Roux a écrit :
>>>>>> This time trunk demo crashed, it was maybe due to OFBIZ-6707, it's restarting
>>>>>>
>>>>>> Jacques
>>>>>>
>>>>>> Le 30/10/2015 11:18, Jacques Le Roux a écrit :
>>>>>>> Demos should all be back soon
>>>>>>>
>>>>>>> Enjoy :)
>>>>>>>
>>>>>>> Jacques
>>>>>>>
>>>>>>> Le 30/10/2015 09:58, Jacques Le Roux a écrit :
>>>>>>>> The VM is down again since yesterday evening, checking with infra...
>>>>>>>>
>>>>>>>> Jacques
>>>>>>>>
>>>>>>>> Le 26/10/2015 14:56, Jacques Le Roux a écrit :
>>>>>>>>> The VM is back, I'm restarting the demos
>>>>>>>>>
>>>>>>>>> Jacques
>>>>>>>>>
>>>>>>>>> Le 26/10/2015 08:47, Jacques Le Roux a écrit :
>>>>>>>>>> FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.
>>>>>>>>>>
>>>>>>>>>> Jacques
>>>>>>>>>>
>>>>>
>>>>
>>>
>>
>
Reply | Threaded
Open this post in threaded view
|

Re: OFBiz demos all down

Jacques Le Roux
Administrator
Despite running under Java 7 with a longer time w/o VM crashing we got another crash today. So at least Java 8 was not the only reason. I still keep
Java 7, since we had no issues before switching to 8, but it seems there is another issue.

||The cron job, which runs nightly to restart the demos, will now use "nice -n 19 ionice -c2 -n7" which is as nice as possible. We will see if that helps.

The demos restart (nicely), stay tuned...

Jacques

Le 05/11/2015 13:44, Jacques Le Roux a écrit :

> All demos now run under Java 7
>
> Jacques
>
> Le 05/11/2015 09:29, Jacques Le Roux a écrit :
>> OK, my last thought: no needs to revert in trunk I will simply revert on the VM and will make Java 7 our default version on VM
>>
>> Waiting for infra (they are bored with my request I guess :D)
>>
>> Jacques
>>
>> Le 05/11/2015 09:24, Jacques Le Roux a écrit :
>>> OK it seems we have an issue on the OFBIZ-VM since I replaced Java 7 by Java 8 there.
>>> The the OFBIZ-VM is down again and we know that arises because one (our?) demos suck/s all the VM power (100% CPU too long)
>>>
>>> Since we have no Java 8 features yet in trunk, I'd like to temporary revert the  changes related with
>>> https://issues.apache.org/jira/browse/OFBIZ-6458 to test the hypothesis
>>> Opinions?
>>>
>>> In the meantime I will ask to reboot the VM again and will restart the demos
>>>
>>> Jacques
>>>
>>>
>>> Le 04/11/2015 12:47, Jacques Le Roux a écrit :
>>>> Infra just restarted the VM, I'm restarting the demos
>>>>
>>>> Jacques
>>>>
>>>> Le 04/11/2015 11:06, Jacques Le Roux a écrit :
>>>>> Nope it's the VM see http://status.apache.org/
>>>>>
>>>>> Jacques
>>>>>
>>>>> Le 04/11/2015 10:57, Taher Alkhateeb a écrit :
>>>>>> Hi Jacques,
>>>>>>
>>>>>> Is OFBiz the reason for this or is it the infrastructure itself? Perhaps we need to check the logs for memory leaks.
>>>>>>
>>>>>> Taher Alkhateeb
>>>>>>
>>>>>> ----- Original Message -----
>>>>>>
>>>>>> From: "Jacques Le Roux" <[hidden email]>
>>>>>> To: [hidden email]
>>>>>> Sent: Wednesday, 4 November, 2015 12:33:26 PM
>>>>>> Subject: Re: OFBiz demos all down
>>>>>>
>>>>>> The VM is down again since this morning, infra on it...
>>>>>>
>>>>>> Jacques
>>>>>>
>>>>>> Le 02/11/2015 22:53, Jacques Le Roux a écrit :
>>>>>>> This time trunk demo crashed, it was maybe due to OFBIZ-6707, it's restarting
>>>>>>>
>>>>>>> Jacques
>>>>>>>
>>>>>>> Le 30/10/2015 11:18, Jacques Le Roux a écrit :
>>>>>>>> Demos should all be back soon
>>>>>>>>
>>>>>>>> Enjoy :)
>>>>>>>>
>>>>>>>> Jacques
>>>>>>>>
>>>>>>>> Le 30/10/2015 09:58, Jacques Le Roux a écrit :
>>>>>>>>> The VM is down again since yesterday evening, checking with infra...
>>>>>>>>>
>>>>>>>>> Jacques
>>>>>>>>>
>>>>>>>>> Le 26/10/2015 14:56, Jacques Le Roux a écrit :
>>>>>>>>>> The VM is back, I'm restarting the demos
>>>>>>>>>>
>>>>>>>>>> Jacques
>>>>>>>>>>
>>>>>>>>>> Le 26/10/2015 08:47, Jacques Le Roux a écrit :
>>>>>>>>>>> FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.
>>>>>>>>>>>
>>>>>>>>>>> Jacques
>>>>>>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>
>

Reply | Threaded
Open this post in threaded view
|

Re: OFBiz demos all down

Jacques Le Roux
Administrator
FYI: We got another old demo (R12.04) crash yesterday. So it seems Java 8 is not the issue. I'll wait a bit and put it back, it seems using nice and
ionice commands helps

You can now see in the footer which Java version has been used to compile a running instance (using ant svninfo or gitinfo)

Jacques

Le 14/11/2015 12:15, Jacques Le Roux a écrit :

> Despite running under Java 7 with a longer time w/o VM crashing we got another crash today. So at least Java 8 was not the only reason. I still keep
> Java 7, since we had no issues before switching to 8, but it seems there is another issue.
>
> ||The cron job, which runs nightly to restart the demos, will now use "nice -n 19 ionice -c2 -n7" which is as nice as possible. We will see if that
> helps.
>
> The demos restart (nicely), stay tuned...
>
> Jacques
>
> Le 05/11/2015 13:44, Jacques Le Roux a écrit :
>> All demos now run under Java 7
>>
>> Jacques
>>
>> Le 05/11/2015 09:29, Jacques Le Roux a écrit :
>>> OK, my last thought: no needs to revert in trunk I will simply revert on the VM and will make Java 7 our default version on VM
>>>
>>> Waiting for infra (they are bored with my request I guess :D)
>>>
>>> Jacques
>>>
>>> Le 05/11/2015 09:24, Jacques Le Roux a écrit :
>>>> OK it seems we have an issue on the OFBIZ-VM since I replaced Java 7 by Java 8 there.
>>>> The the OFBIZ-VM is down again and we know that arises because one (our?) demos suck/s all the VM power (100% CPU too long)
>>>>
>>>> Since we have no Java 8 features yet in trunk, I'd like to temporary revert the  changes related with
>>>> https://issues.apache.org/jira/browse/OFBIZ-6458 to test the hypothesis
>>>> Opinions?
>>>>
>>>> In the meantime I will ask to reboot the VM again and will restart the demos
>>>>
>>>> Jacques
>>>>
>>>>
>>>> Le 04/11/2015 12:47, Jacques Le Roux a écrit :
>>>>> Infra just restarted the VM, I'm restarting the demos
>>>>>
>>>>> Jacques
>>>>>
>>>>> Le 04/11/2015 11:06, Jacques Le Roux a écrit :
>>>>>> Nope it's the VM see http://status.apache.org/
>>>>>>
>>>>>> Jacques
>>>>>>
>>>>>> Le 04/11/2015 10:57, Taher Alkhateeb a écrit :
>>>>>>> Hi Jacques,
>>>>>>>
>>>>>>> Is OFBiz the reason for this or is it the infrastructure itself? Perhaps we need to check the logs for memory leaks.
>>>>>>>
>>>>>>> Taher Alkhateeb
>>>>>>>
>>>>>>> ----- Original Message -----
>>>>>>>
>>>>>>> From: "Jacques Le Roux" <[hidden email]>
>>>>>>> To: [hidden email]
>>>>>>> Sent: Wednesday, 4 November, 2015 12:33:26 PM
>>>>>>> Subject: Re: OFBiz demos all down
>>>>>>>
>>>>>>> The VM is down again since this morning, infra on it...
>>>>>>>
>>>>>>> Jacques
>>>>>>>
>>>>>>> Le 02/11/2015 22:53, Jacques Le Roux a écrit :
>>>>>>>> This time trunk demo crashed, it was maybe due to OFBIZ-6707, it's restarting
>>>>>>>>
>>>>>>>> Jacques
>>>>>>>>
>>>>>>>> Le 30/10/2015 11:18, Jacques Le Roux a écrit :
>>>>>>>>> Demos should all be back soon
>>>>>>>>>
>>>>>>>>> Enjoy :)
>>>>>>>>>
>>>>>>>>> Jacques
>>>>>>>>>
>>>>>>>>> Le 30/10/2015 09:58, Jacques Le Roux a écrit :
>>>>>>>>>> The VM is down again since yesterday evening, checking with infra...
>>>>>>>>>>
>>>>>>>>>> Jacques
>>>>>>>>>>
>>>>>>>>>> Le 26/10/2015 14:56, Jacques Le Roux a écrit :
>>>>>>>>>>> The VM is back, I'm restarting the demos
>>>>>>>>>>>
>>>>>>>>>>> Jacques
>>>>>>>>>>>
>>>>>>>>>>> Le 26/10/2015 08:47, Jacques Le Roux a écrit :
>>>>>>>>>>>> FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.
>>>>>>>>>>>>
>>>>>>>>>>>> Jacques
>>>>>>>>>>>>
>>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>
>

Reply | Threaded
Open this post in threaded view
|

Re: OFBiz demos all down

Jacques Le Roux
Administrator
This time, as said someone of the infra team "the issue is the underlying host looks fucked."

All demos are now restarting, sorry for the delay

Jacques

Le 18/11/2015 11:30, Jacques Le Roux a écrit :

> FYI: We got another old demo (R12.04) crash yesterday. So it seems Java 8 is not the issue. I'll wait a bit and put it back, it seems using nice and
> ionice commands helps
>
> You can now see in the footer which Java version has been used to compile a running instance (using ant svninfo or gitinfo)
>
> Jacques
>
> Le 14/11/2015 12:15, Jacques Le Roux a écrit :
>> Despite running under Java 7 with a longer time w/o VM crashing we got another crash today. So at least Java 8 was not the only reason. I still
>> keep Java 7, since we had no issues before switching to 8, but it seems there is another issue.
>>
>> ||The cron job, which runs nightly to restart the demos, will now use "nice -n 19 ionice -c2 -n7" which is as nice as possible. We will see if that
>> helps.
>>
>> The demos restart (nicely), stay tuned...
>>
>> Jacques
>>
>> Le 05/11/2015 13:44, Jacques Le Roux a écrit :
>>> All demos now run under Java 7
>>>
>>> Jacques
>>>
>>> Le 05/11/2015 09:29, Jacques Le Roux a écrit :
>>>> OK, my last thought: no needs to revert in trunk I will simply revert on the VM and will make Java 7 our default version on VM
>>>>
>>>> Waiting for infra (they are bored with my request I guess :D)
>>>>
>>>> Jacques
>>>>
>>>> Le 05/11/2015 09:24, Jacques Le Roux a écrit :
>>>>> OK it seems we have an issue on the OFBIZ-VM since I replaced Java 7 by Java 8 there.
>>>>> The the OFBIZ-VM is down again and we know that arises because one (our?) demos suck/s all the VM power (100% CPU too long)
>>>>>
>>>>> Since we have no Java 8 features yet in trunk, I'd like to temporary revert the  changes related with
>>>>> https://issues.apache.org/jira/browse/OFBIZ-6458 to test the hypothesis
>>>>> Opinions?
>>>>>
>>>>> In the meantime I will ask to reboot the VM again and will restart the demos
>>>>>
>>>>> Jacques
>>>>>
>>>>>
>>>>> Le 04/11/2015 12:47, Jacques Le Roux a écrit :
>>>>>> Infra just restarted the VM, I'm restarting the demos
>>>>>>
>>>>>> Jacques
>>>>>>
>>>>>> Le 04/11/2015 11:06, Jacques Le Roux a écrit :
>>>>>>> Nope it's the VM see http://status.apache.org/
>>>>>>>
>>>>>>> Jacques
>>>>>>>
>>>>>>> Le 04/11/2015 10:57, Taher Alkhateeb a écrit :
>>>>>>>> Hi Jacques,
>>>>>>>>
>>>>>>>> Is OFBiz the reason for this or is it the infrastructure itself? Perhaps we need to check the logs for memory leaks.
>>>>>>>>
>>>>>>>> Taher Alkhateeb
>>>>>>>>
>>>>>>>> ----- Original Message -----
>>>>>>>>
>>>>>>>> From: "Jacques Le Roux" <[hidden email]>
>>>>>>>> To: [hidden email]
>>>>>>>> Sent: Wednesday, 4 November, 2015 12:33:26 PM
>>>>>>>> Subject: Re: OFBiz demos all down
>>>>>>>>
>>>>>>>> The VM is down again since this morning, infra on it...
>>>>>>>>
>>>>>>>> Jacques
>>>>>>>>
>>>>>>>> Le 02/11/2015 22:53, Jacques Le Roux a écrit :
>>>>>>>>> This time trunk demo crashed, it was maybe due to OFBIZ-6707, it's restarting
>>>>>>>>>
>>>>>>>>> Jacques
>>>>>>>>>
>>>>>>>>> Le 30/10/2015 11:18, Jacques Le Roux a écrit :
>>>>>>>>>> Demos should all be back soon
>>>>>>>>>>
>>>>>>>>>> Enjoy :)
>>>>>>>>>>
>>>>>>>>>> Jacques
>>>>>>>>>>
>>>>>>>>>> Le 30/10/2015 09:58, Jacques Le Roux a écrit :
>>>>>>>>>>> The VM is down again since yesterday evening, checking with infra...
>>>>>>>>>>>
>>>>>>>>>>> Jacques
>>>>>>>>>>>
>>>>>>>>>>> Le 26/10/2015 14:56, Jacques Le Roux a écrit :
>>>>>>>>>>>> The VM is back, I'm restarting the demos
>>>>>>>>>>>>
>>>>>>>>>>>> Jacques
>>>>>>>>>>>>
>>>>>>>>>>>> Le 26/10/2015 08:47, Jacques Le Roux a écrit :
>>>>>>>>>>>>> FYI: All OFBiz demos are down, this is not due to OFBiz itself but the OFBIZ-VM the ASF infra team provides us for the demos.
>>>>>>>>>>>>>
>>>>>>>>>>>>> Jacques
>>>>>>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>
>
>
12