Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

how to view/modify OSGi configs in cloud, as /system/console/configMgr is blocked?

Avatar

Level 9

We have built our app to be configurable via OSGi configurations, which is th AEM way.

This works great locally against the cloud SDK.

However, when we deploy to the cloud, the configMgr seems to be blocked.  This means we cant edit any of the critical run time variables, such as timeouts, switching features on off etc.

This is a huge problem. It would mean we have to re-write our services to read config from pages of the CMS or similar, which is a significant re-write.

Is there any work around to being able to view and edit our OSGi configs at runtime?

Adobe MUST remove these features from the cloudSDK if they are not available on any cloud env, otherwise we are developing for a completely different system.  this also includes the excellent i18n translation system, which is now removed on the cloud, but is still present in the SDK. This also required a significant rewrite, and is a very poor solution now.

 

14 Replies

Avatar

Community Advisor

curl will also not work because it will try to save config inside /apps/ which is immutable



Arun Patidar

Avatar

Level 9

that's write. my bad sometime it becomes so obvious you forget the immutable part in aem as cloud service!!

Avatar

Community Advisor

Hi @TB3dock 

 

As per AEM as Cloud service, all content and code persisted in the immutable repository must be checked into git and deployed through Cloud Manager.

As an example, OSGI configuration should be committed to source control rather than managed at runtime via the AEM web console’s configuration manager.

 

So you need to make the necessary changes on the developer’s local AEM environment with the AEM web console’s configuration manager and then exporting the results to the AEM project on the local file system. You need to ensure all the OSGi configurations are verified on local environment and commited to source control.

 

If you want to keep any functionality that needs to be updated during runtime, you can keep those as part of Context aware config which will reside under /conf and can be updated during runtime.

 

As you said the Cloud and local SDK are not in sync which is really an issue but if we are working on AEM as Cloud environment we need to ensure we follow the concept of mutable and immutable section in AEM and design the application accordingly to overcome these challenges during development.

 

Please refer the below article which speaks about the different ares of AEM with mutable and immutable concept:

https://experienceleague.adobe.com/docs/experience-manager-cloud-service/implementing/developing/aem...

https://experienceleague.adobe.com/docs/experience-manager-learn/cloud-service/developing/basics/mut...

 

Hope this helps!

Thanks

Avatar

Level 9

Hi, thanks for the reply, could you explain what the /conf is, and how we use it:

  1. how to put settings into it
  2. how to read settings from it into servlets
  3. how to modify these settings at run time
  4. how to specify initial settings per env.

All our (non-runtime modifiable) osgi config files are under ui.config, which seems odd, as none of them relate to UI, they all relate to configuring things in core (such as servlets, cors etc).

Avatar

Level 9
Hi, for osgi configs, we have not seen a way to export them to file. It is generally very difficult to figure out exactly what the file name should be, and what the contents need to be to match a config setup in the configmgr, sometimes taking days of trial and error.

Avatar

Community Advisor

Hi @TB3dock 

 

/conf in AEM holds all the configuration items such as

  • Cloud Configurations
  • ContextHub segments
  • Content Fragment Models
  • Editable Template confirgurations
  • Context Aware Configs and so on...

 

Context aware config can be created which can be further divided into each site level or locale level and the same can be referenced in any OSGi service, servlet or model classes.

Let's take an example of a single website with 2 different locale such as en_us and en_ca and for each of these locales we want to load different API token across environment, then you can define the same in context aware config and a single peice of code will take the appropriate locale specific value at runtime and these values can be changed at runtime as it will be deployed as part of the content package.

 

All these settings will be stored under /conf/[project-name]/ with different subfolder names as required by the configuration.

 

For OSGi configs the file name needs to be same as the PID name and if it's a factory configuration, then we need to add an identifier into it like we do for logger configuration.

 

Please see the details about the Context Aware Configuration:

https://sling.apache.org/documentation/bundles/context-aware-configuration/context-aware-configurati...

 

In short, if you want to configure something which is different based on environment, it has to be configured in OSGi which cannot be modifed during runtime on AEM as Cloud and needs to be part of the code deployment which will be kept under /apps/project/osgi.... If you want to configure something which is different based on website not based on the environment, it can be configured in Context aware config and can be stored under /conf which can be deployed via code as well as content package and can be modified at runtime using AEM as Cloud.

 

Thanks!

Avatar

Level 9

Thanks for the info. I have read that link twice, but still cant figure it out. I get that there js a /conf in the crxde editor, and I am guessing we would use the crxde editor to edit the settings at run time, is this correct? The next issue is how do we get items into /conf in the right format? we dont have a conf sub project in our source code, we only have things like myapp.ui.config, myapp.ui.content and myapp.core. Second issue, is how do we read this data from a servlet?  The link you kindly provided has this linke of code:

Resource contentResource = resourceResolver.getResource("/content/mysite/page1");

But then only has examples reading config properties from htl templates, not from servlets.  There some limited info about interfaces, and an example interface with "param1" and "intParam", but there is no obvious way to glue these parameters with the corresponding config object. With osgi, this is done making the file name the same as the PID (with some differences), and then putting the corresponding files in the ui.config under /aem-guides-wknd.ui.config/src/main/content/jcr_root/apps/wknd/osgiconfig/config for example.

Avatar

Community Advisor

Yes, we cannot do any changes related to config manager in higher environment.

We can push it  only by code repo.

however you can verify it by developer console and select option as a text.

and search the config name.

 

Thanks,

Prince

Avatar

Community Advisor

You can view the OSGi config from the cloud manager but there is no way to modify it manually in order to prevent inconsistency among instances.



Arun Patidar

Avatar

Level 9
Hi, when I try to view the /system/console/configMgr on any of our cloud instances, it gives 403, even though I am logged in and can see the crxde console, and have all admin permissions, including admin of the Adobe subscription.

Avatar

Level 9

sadly, /system/console/status-Configurations isnt available on cloud either.  I see the option to download the bundle status in dev console thanks.  No option to update it directly sadly.