VM runs out of memory loading package

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

VM runs out of memory loading package

Charles Monteiro
I'm trying to follow thru with the instructions in the seaside book for updating
my Gemstone Seaside packages. Doing so generated the following error:

http://screencast.com/t/jz3PZR5g

thanks in advance

-Charles

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: VM runs out of memory loading package

Dale Henrichs
Are you following the instructions outlined in Getting Started with GLASS[1] or somewhere else?

Dale

[1] http://code.google.com/p/glassdb/wiki/GettingStartedWithGLASS#Update_GLASS

----- Original Message -----
| From: "Charles Monteiro" <[hidden email]>
| To: [hidden email]
| Sent: Tuesday, September 13, 2011 1:29:15 PM
| Subject: [Seaside] VM runs out of memory loading package
|
| I'm trying to follow thru with the instructions in the seaside book
| for updating
| my Gemstone Seaside packages. Doing so generated the following error:
|
| http://screencast.com/t/jz3PZR5g
|
| thanks in advance
|
| -Charles
|
| _______________________________________________
| seaside mailing list
| [hidden email]
| http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
|
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: VM runs out of memory loading package

Charles Monteiro
Dale Henrichs <dhenrich <at> vmware.com> writes:


Nope, using instructions from latest Seaside book.

But I will certainly follow what you have there.

thanks

-Charles




_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: VM runs out of memory loading package

Charles Monteiro
Charles Monteiro <charles <at> nycsmalltalk.org> writes:

>
> Dale Henrichs <dhenrich <at> vmware.com> writes:
>
> Nope, using instructions from latest Seaside book.
>
> But I will certainly follow what you have there.
>
> thanks
>
> -Charles
>

Those instructions ask me to employ the GemTools launcher but I don't seem to
find it from within the Glass appliance I downloaded.

Or do you mean for me to do this:

MCPlatformSupport commitOnAlmostOutOfMemoryDuring: [
  [
        Gofer project load: 'GsMisc' version: '0.236'.
        Gofer project load: 'GsSOAP' version: '0.232'.
       
        Gofer project load: 'Seaside28' version: '2.8.4.7'.
        Gofer project load: 'Seaside28Examples' version: '2.8'.
        Gofer project load: 'GsSeasideTesting28' version: '1.0'.
        Gofer project load: 'GsSqueakSource' version: '2.0-alpha.3'.
        Gofer project load: 'Magritte' version: '1.2.1.4.1'.
        Gofer project load: 'GsScaffolding' version: '1.0'.
        Gofer project load: 'Pier' version: '1.2.1.4'.
        Gofer project load: 'GsSeasideTesting28' version: '1.0' group: #(
'PierTesting' ).
        Gofer project load: 'PierAddOns' version: '1.0.2'.
  ]
                on: Warning
                do: [:ex | ex resume ]].


and ignore the GemClient stuff

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: VM runs out of memory loading package

Dale Henrichs
Ah, the instructions in the book are out-of-date ...

If you start at the top of the page[1], you will see the options you have for getting a latest GemTools image ...

The later versions of GemTools work pretty good with the older versions of GLASS ... especially if you are planning on upgrading (which is recommended)...

Right now I am working on the GLASS 1.0-beta.8.7 release and I'm taking this opportunity to check out the upgrade process for the appliance .... and I am finding a few things that need to be fixed .... soooo, you might consider hanging out for a day or so while I fix some of the more glaring issues (I am in the middle of doing my initial checkin of some appliance bugfixes right now)...

Dale

[1] http://code.google.com/p/glassdb/wiki/GettingStartedWithGLASS

----- Original Message -----
| From: "Charles Monteiro" <[hidden email]>
| To: [hidden email]
| Sent: Tuesday, September 13, 2011 2:00:47 PM
| Subject: [Seaside] Re: VM runs out of memory loading package
|
| Charles Monteiro <charles <at> nycsmalltalk.org> writes:
|
| >
| > Dale Henrichs <dhenrich <at> vmware.com> writes:
| >
| > Nope, using instructions from latest Seaside book.
| >
| > But I will certainly follow what you have there.
| >
| > thanks
| >
| > -Charles
| >
|
| Those instructions ask me to employ the GemTools launcher but I don't
| seem to
| find it from within the Glass appliance I downloaded.
|
| Or do you mean for me to do this:
|
| MCPlatformSupport commitOnAlmostOutOfMemoryDuring: [
|   [
|         Gofer project load: 'GsMisc' version: '0.236'.
|         Gofer project load: 'GsSOAP' version: '0.232'.
|        
|         Gofer project load: 'Seaside28' version: '2.8.4.7'.
|         Gofer project load: 'Seaside28Examples' version: '2.8'.
|         Gofer project load: 'GsSeasideTesting28' version: '1.0'.
|         Gofer project load: 'GsSqueakSource' version: '2.0-alpha.3'.
|         Gofer project load: 'Magritte' version: '1.2.1.4.1'.
|         Gofer project load: 'GsScaffolding' version: '1.0'.
|         Gofer project load: 'Pier' version: '1.2.1.4'.
|         Gofer project load: 'GsSeasideTesting28' version: '1.0'
|         group: #(
| 'PierTesting' ).
|         Gofer project load: 'PierAddOns' version: '1.0.2'.
|   ]
|                 on: Warning
|                 do: [:ex | ex resume ]].
|
|
| and ignore the GemClient stuff
|
| _______________________________________________
| seaside mailing list
| [hidden email]
| http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
|
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: VM runs out of memory loading package

Dale Henrichs
In reply to this post by Charles Monteiro
Charles,

You might want to track GLASS Issue 292[1]. You should be able to upgrade to GLASS 1.0-beta.8.4 without problems, but the upgrade to versions beyond that appear to be broken ...

Dale

[1] http://code.google.com/p/glassdb/issues/detail?id=292

----- Original Message -----
| From: "Charles Monteiro" <[hidden email]>
| To: [hidden email]
| Sent: Tuesday, September 13, 2011 2:00:47 PM
| Subject: [Seaside] Re: VM runs out of memory loading package
|
| Charles Monteiro <charles <at> nycsmalltalk.org> writes:
|
| >
| > Dale Henrichs <dhenrich <at> vmware.com> writes:
| >
| > Nope, using instructions from latest Seaside book.
| >
| > But I will certainly follow what you have there.
| >
| > thanks
| >
| > -Charles
| >
|
| Those instructions ask me to employ the GemTools launcher but I don't
| seem to
| find it from within the Glass appliance I downloaded.
|
| Or do you mean for me to do this:
|
| MCPlatformSupport commitOnAlmostOutOfMemoryDuring: [
|   [
|         Gofer project load: 'GsMisc' version: '0.236'.
|         Gofer project load: 'GsSOAP' version: '0.232'.
|        
|         Gofer project load: 'Seaside28' version: '2.8.4.7'.
|         Gofer project load: 'Seaside28Examples' version: '2.8'.
|         Gofer project load: 'GsSeasideTesting28' version: '1.0'.
|         Gofer project load: 'GsSqueakSource' version: '2.0-alpha.3'.
|         Gofer project load: 'Magritte' version: '1.2.1.4.1'.
|         Gofer project load: 'GsScaffolding' version: '1.0'.
|         Gofer project load: 'Pier' version: '1.2.1.4'.
|         Gofer project load: 'GsSeasideTesting28' version: '1.0'
|         group: #(
| 'PierTesting' ).
|         Gofer project load: 'PierAddOns' version: '1.0.2'.
|   ]
|                 on: Warning
|                 do: [:ex | ex resume ]].
|
|
| and ignore the GemClient stuff
|
| _______________________________________________
| seaside mailing list
| [hidden email]
| http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
|
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: VM runs out of memory loading package

Charles Monteiro
In reply to this post by Dale Henrichs
no prob. I'll wait . How do I get on the notification list that a release is
available ?

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: VM runs out of memory loading package

Paul DeBruicker
On 09/14/2011 01:18 AM, Charles Monteiro wrote:
> no prob. I'll wait . How do I get on the notification list that a release is
> available ?
>



Dale usually makes a blog post about new developments (releases etc) for
GLASS here:
https://gemstonesoup.wordpress.com/


and on the mailing list here:
http://seaside.gemstone.com/mailman/listinfo/beta
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: VM runs out of memory loading package

Dale Henrichs
In reply to this post by Charles Monteiro
Charles,

Follow my blog[1] and follow the GLASS mailing list[2] or [3].

When I fix Issue 292, you can go ahead an upgrade to 1.0-beta.8.7 and take it for a spin...

Dale

[1] http://gemstonesoup.wordpress.com/
[2] http://seaside.gemstone.com/mailman/listinfo/beta
[3] http://forum.world.st/GLASS-f1460844.html

----- Original Message -----
| From: "Charles Monteiro" <[hidden email]>
| To: [hidden email]
| Sent: Tuesday, September 13, 2011 10:18:00 PM
| Subject: [Seaside] Re: VM runs out of memory loading package
|
| no prob. I'll wait . How do I get on the notification list that a
| release is
| available ?
|
| _______________________________________________
| seaside mailing list
| [hidden email]
| http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
|
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside