Thanks Amit to share this info.. very helpful.
i have a job which process around 0.3-0.5 million records and after processing need to push data to elastic and magento.
single node js mesh process deployed on aio gives 503 error service not available error and as per your info cold starts etc, i have...
Hi Team,
I have created mesh project and it is running on local. Then i have created aio project using aio app init and aligned my mesh project to myaioproject/actions/mesh/<all files...>
Then i have created index.js file as entry file inside
myaioproject/actions/mesh/index.js
then i have run npx ...
Hi Team,
I have created mesh project on local and its working fine. Then i have created project using aio app init and in actions folders added required files as i don't have UI only backend mesh action so i want to deploy this only.
I have used aio app deploy and it has deployed web and non-web a...
yes @ananvara
we are on same page now. I have created project using aio app init and it has created project where web-src is generated and once you deployed it has html and web endpoints.
For my case, i need mesh.json file where i need to perform some magento operation say add to cart which will ca...
Hi team,
Last year when i worked on Adobe Mesh then it provided support to use additionalresolver and perform operation in the same mesh. Now i can see it act as Api gateway just to provide single endpoint for multiple platforms like magento, rest apis, third party api etc.
SO we can't use additio...
Hi,
use below code to create date field in custom CF
@component
public class CustomContentFragment {
@reference
private ResourceResolverService resourceResolverService;
public void createContentFragment(String fragmentPath, String dateFieldValue) {
ResourceResolver resourceRes...
Hi @pmhaem
Use below to get cq:lastReplicated value and then convert date to string as per your dateformat before adding to jsonobject.
ValueMap properties = hit.getProperties();
if (properties.get("cq:lastReplicated") != null) {
java.util.Date replicatedDate = properties.get("cq:lastReplicated...
RDE (Remote Development Environment) is configured with limited write access to certain areas of the JCR repository, such as /apps,/libs, or other system-related paths. Hence Adding nodes under app is not allowed in RDE environments.
Hi @Ameen_Dev
You need to refine your query like:
path=/content/..<your path>
fulltext=companyName
1_property=text
1_property.operation=exists
2_property=meta
2_property.operation=not //avoid search in meta
3_property=script
3_property.operation=not //avoid search in script
&p.limit=-1
for more ...