Re: [PR] chore(deps): update apache jackrabbit and jackrabbit oak [sling-org-apache-sling-starter]

2023-10-09 Thread via GitHub


enapps-enorman commented on PR #221:
URL: 
https://github.com/apache/sling-org-apache-sling-starter/pull/221#issuecomment-1753966282

   > Do you plan to cut releases for the maintenance and 
[oak-server](https://issues.apache.org/jira/browse/OAK-server) modules?
   
   Sure, I can start the release process.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@sling.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] chore(deps): update apache jackrabbit and jackrabbit oak [sling-org-apache-sling-starter]

2023-10-09 Thread via GitHub


rombert commented on PR #221:
URL: 
https://github.com/apache/sling-org-apache-sling-starter/pull/221#issuecomment-1753103856

   @enapps-enorman - with your changes for the maintenance and oak-server 
bundles I can run the Sling Starter with the latest Oak/Jackrabbit versions. 
Even better, we can outright remove Guava from the starter and allow consumers 
to deploy whichever version they prefer.
   
   Do you plan to cut releases for the maintenance and oak-server modules? If 
not, I can try and do that next week. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@sling.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: Oak + Sling

2015-03-13 Thread Tomek Rękawek
Hello Bruce,

I've just committed the sling-s3 module to the sling/contrib [1]. I also
added new sling/contrib/extensions/oak-s3 module that gathers all
dependencies required to run S3 on Oak.

On Thu, Mar 12, 2015 at 11:58 PM, Bruce Edge 
wrote:
>
> There's a few options here.
> 1) If the Sling-S3 is as a contrib component, then I can depend on it
> within the packaging module. Although I'm not sure exactly what the
> cleanest way to pull it in is, as it's not a maven artifact and I really
> just need the base templates & the ruby script. I suppose it could be
> packaged as resources in a jar. That doesn't feel right though.
>

It doesn't have to be jar, we can wrap it in a Maven module producing tgz
or zip assembly, but still - it's somehow strange.


> Where you you see this in the sling tree? While it is an end to end
> S3/mongo setup, it's more akin to a contrib module for crankstart as it
> provides a quick start setup for crankstart.
>

Yep, I put it into the contrib.


> 2) I could pull your scripts directly into the packaging module, but I
> think this loses some flexibility. While it doesn't restrict anyone from
> using it in a non-debian/ubuntu manner, it does make it a bit confusing if
> it's all wrapped up with the debian bits.
>

I agree. Right now one can simply svn export the sling-s3 module and run it
on any OS providing "make" command.


> 3) Add the debian packaging folder under Sling-S3 (or whatever you end up
> calling it). That way I can refer to the parent module for all the pieces
> I need and it doesn¹t imply that one needs to build a .deb to use it.
>

Sounds good.


> Regarding the actual packaging I'm thinking of putting the crank.*/ dirs
> into /etc/sling/crank.*/ such that they are treated as config files such
> that they are created if not present on initial installation, but then
> remain untouched by update installations.
> This lets the user modify these files as needed, while at the same time
> retaining the ability to update the crank.d/*-sling-startlevel-*.txt
> manually for existing installations.
>

Good idea. It'll mimic other Linux services using this convention and also
it'll separate configuration from the code.


> The building phase (install-deps & make target/*) would take place from
> the package's postinst script, as it will have internet connectivity
> during this phase.
>

Please notice that when you start Sling via Crankstart it'll probably also
need an internet connection, as it'll try to download bundles present in
the configuration but not in the local repo. The install-deps was
responsible only for downloading and installing only a few SNAPSHOT
dependencies from the SVN, but in the contributed version I removed it and
configured crankstart to use snapshot Apache Maven repository [2].

Right now there is no way to force downloading all configured dependencies
other than running Crankstart. We can think about some way to provide such
feature, it'll require modyfing Crankstart or creating a new Java
executable.


> Lastly, /etc/default/sling will define the storage mode for sling, unset
> (default to tar), s3, mongo, or s3-mongo.
>

Sounds good.

Regards,
Tomek

[1] http://svn.apache.org/repos/asf/sling/trunk/contrib/sling-s3/
[2] https://repository.apache.org/content/repositories/snapshots/

-- 
Tomek Rękawek
Senior Software Engineer

Cognifide Polska Sp. z o.o.
skype: trekawek

www.cognifide.com


Re: Oak + Sling

2015-03-12 Thread Bruce Edge
>On Tue, Feb 17, 2015 at 10:58 PM, Bertrand Delacretaz <
>bdelacre...@apache.org> wrote:
>
>>(...)
>>Tomasz just published https://github.com/trekawek/Sling-S3 with
>>interesting setups for running Sling on Oak + Mongo. That stuff is not
>>officially part of Sling but now that he's a committer, having more
>>users might convince him to bring this here as a contrib ;-)
>
>
>After such call I have no other choice but to move Sling-S3 to the Sling
>contrib :) I'll do it in a few days.
>

I¹d like to update that debian packaging module I did to use this
crankstart mechanism instead of launchpad because it provides a more
flexibility for configuring options at runtime.

There¹s a few options here.
1) If the Sling-S3 is as a contrib component, then I can depend on it
within the packaging module. Although I¹m not sure exactly what the
cleanest way to pull it in is, as it¹s not a maven artifact and I really
just need the base templates & the ruby script. I suppose it could be
packaged as resources in a jar. That doesn¹t feel right though.

Where you you see this in the sling tree? While it is an end to end
S3/mongo setup, it¹s more akin to a contrib module for crankstart as it
provides a quick start setup for crankstart.

2) I could pull your scripts directly into the packaging module, but I
think this loses some flexibility. While it doesn¹t restrict anyone from
using it in a non-debian/ubuntu manner, it does make it a bit confusing if
it¹s all wrapped up with the debian bits.

3) Add the debian packaging folder under Sling-S3 (or whatever you end up
calling it). That way I can refer to the parent module for all the pieces
I need and it doesn¹t imply that one needs to build a .deb to use it.


Regarding the actual packaging I¹m thinking of putting the crank.*/ dirs
into /etc/sling/crank.*/ such that they are treated as config files such
that they are created if not present on initial installation, but then
remain untouched by update installations.
This lets the user modify these files as needed, while at the same time
retaining the ability to update the crank.d/*-sling-startlevel-*.txt
manually for existing installations.
The building phase (install-deps & make target/*) would take place from
the package¹s postinst script, as it will have internet connectivity
during this phase. 
Lastly, /etc/default/sling will define the storage mode for sling, unset
(default to tar), s3, mongo, or s3-mongo.


-Bruce



Re: Oak + Sling

2015-02-19 Thread Tomek Rękawek
Hello,

On Tue, Feb 17, 2015 at 10:58 PM, Bertrand Delacretaz <
bdelacre...@apache.org> wrote:

> (...)
> Tomasz just published https://github.com/trekawek/Sling-S3 with
> interesting setups for running Sling on Oak + Mongo. That stuff is not
> officially part of Sling but now that he's a committer, having more
> users might convince him to bring this here as a contrib ;-)


After such call I have no other choice but to move Sling-S3 to the Sling
contrib :) I'll do it in a few days.

Regards,
Tomek

-- 
Tomek Rękawek
Senior Software Engineer

Cognifide Polska Sp. z o.o.
skype: trekawek

www.cognifide.com


Re: Oak + Sling

2015-02-17 Thread Bertrand Delacretaz
Hi,

On Tue, Feb 17, 2015 at 6:44 PM, Romain_FR  wrote:
> ...is there any improvements concerning this problem ?
> For our project, we are looking for the solution to use Sling with Oak

Tomasz just published https://github.com/trekawek/Sling-S3 with
interesting setups for running Sling on Oak + Mongo. That stuff is not
officially part of Sling but now that he's a committer, having more
users might convince him to bring this here as a contrib ;-)

Note that we should eventually update the Crankstart launcher to use
the tooling/support/provisioning-model format. Once that happens the
format of the crankstart files will change, but the conversion should
be fairly simple.

-Bertrand


Re: Oak + Sling

2015-02-17 Thread Romain_FR
Hi,

is there any improvements concerning this problem ?

For our project, we are looking for the solution to use Sling with Oak.

Romain



--
View this message in context: 
http://apache-sling.73963.n3.nabble.com/Oak-Sling-tp4041347p4047440.html
Sent from the Sling - Dev mailing list archive at Nabble.com.


Re: Oak + Sling

2014-10-14 Thread Bertrand Delacretaz
Hi,

On Tue, Oct 14, 2014 at 4:57 PM, Robert Munteanu  wrote:
> ...You can remove that config file and change it with a config for the
> DocumentNodeStore...

You need a bit more than than unfortunately, I have created
https://issues.apache.org/jira/browse/SLING-4050 to improve this, and
attached a patch that can be used for now.

I briefly tried running the launchpad/integration-tests but many of
them fail, I haven't investigated so far. If someone tries that
config, don't waste time if something does not work, let us know!

-Bertrand


Re: Oak + Sling

2014-10-14 Thread Robert Munteanu
On Tue, Oct 14, 2014 at 5:46 PM, TALHAOUI Mohamed  wrote:
>
> I am working on sling trunk, using launchpad standalone.
> I don’t get how to configure it to use oak with a mongoMK.

IIRC Oak requires explicit configuration of the persistence backend.
So in Sling for the oak runmode we ship a configuration for the
SegmentNodeStoreService , see [1] .

You can remove that config file and change it with a config for the
DocumentNodeStore. I'm not familiar with the details, but the oak docs
[2] should help.

Robert

[1]: 
https://svn.apache.org/repos/asf/sling/trunk/launchpad/builder/src/main/config/oak/
[2]: https://jackrabbit.apache.org/oak/docs/osgi_config.html


RE: Oak + Sling

2014-10-14 Thread TALHAOUI Mohamed
Hi,

I am working on sling trunk, using launchpad standalone.
I don’t get how to configure it to use oak with a mongoMK.

Any clue ?

Thanks

From: Peter Warnock [mailto:petewarn...@gmail.com]
Sent: mercredi 8 octobre 2014 18:57
To: TALHAOUI Mohamed
Subject: Re: Oak + Sling

Oak is in the trunk

https://github.com/apache/sling



On Wed, Oct 8, 2014 at 7:20 AM, TALHAOUI Mohamed 
mailto:m.talha...@rsd.com>> wrote:
Hi there,

Still working on a POC based on Oak for my company.

I would need to run Oak on a OSGI environment and have a REST api.
Sling seems to be the perfect fit for this.
What is the status of Sling running on Oak ? (see 
https://issues.apache.org/jira/browse/SLING-2788)
Is there a documentation on how to configure Sling with Oak ?

Thanks
Mohamed



Re: Oak + Sling

2014-10-08 Thread Robert Munteanu
Hi Mohamed,

On Wed, Oct 8, 2014 at 6:35 PM, TALHAOUI Mohamed  wrote:
> Hi,
>
>
>
> I am working on a POC based on Oak for my company.
>
>
>
> I would need to run Oak on a OSGI environment and have a REST api.
>
> Sling seems to be the perfect fit for this.
>
> What is the status of Sling running on Oak ? (see 
> https://issues.apache.org/jira/browse/SLING-2788)

Well, it's still not 100% done, as you can see from the linked task.

>
> Is there a documentation on how to configure Sling with Oak ?

We removed Oak support from the latest release ( Sling 7 ) because we
thought it was not good enough. However, you can easily try it
yourself, by building a Launchpad from SVN , see [1] for details. When
starting the launchpad, make sure to add -Dsling.run.modes=oak to use
Oak instead of Jackrabbit 2.x .


Robert


[1]: 
https://sling.apache.org/documentation/development/getting-and-building-sling.html

>
>
>
> Thanks
>
> Mohamed
>



-- 
Sent from my (old) computer


Oak + Sling

2014-10-08 Thread TALHAOUI Mohamed
Hi,



I am working on a POC based on Oak for my company.



I would need to run Oak on a OSGI environment and have a REST api.

Sling seems to be the perfect fit for this.

What is the status of Sling running on Oak ? (see 
https://issues.apache.org/jira/browse/SLING-2788)

Is there a documentation on how to configure Sling with Oak ?



Thanks

Mohamed