My latest blog post for Capgemini is hosted at https://www.capgemini.com/us-en/2022/04/digital-cloud-platform-for-restaurants/
Sunday, 24 April 2022
Thursday, 7 April 2022
Reimagining Digital Transformation
The restaurant industry is experiencing an unprecedented transformational change. Business disruptions from the global health crisis prompted the restaurant industry to restructure and diversify its operating model and digital portfolio in response to the shift of market trends and customer preferences.
Elevated expectations for cleanliness, health, and safety are accelerating the adoption of contactless technologies, curbside pickup options, and mobile payments to minimize human interaction. Gartner predicts most organizations will leverage contactless technologies for up to 80% of their ordering and replenishment activities by 2024.
Restaurant businesses must prepare to meet the operational requirements of the new normal and drive supply chain efficiency. Furthermore, restaurants should thrive to maintain brand loyalty by providing a seamless and differentiated omnichannel experience through enhanced digital capabilities.
In this post, we will show you how Capgemini’s Digital Cloud Platform (DCP) for Restaurants empowers the industry to reimagine digital transformation by delivering compelling customer interaction and streamlined operations while reducing costs and improving efficiency.
The full version of this article is published at https://aws.amazon.com/blogs/apn/reimagining-digital-transformation-with-capgemini-digital-cloud-platform-for-restaurants-on-aws/
Monday, 26 May 2014
AWS deployment options - Part 3 - mod_proxy with autoscaling
ProxyPass /css !
ProxyPass /media !
For multiple JVMs there is an alternate recommendation given to us by Amazon support, and that is to use one ELB per port and set up the tomcat tier with multiple ELBs as shown below.
This will work provided you allocate the architecture and resources in the right manner.
Friday, 23 May 2014
AWS deployment options - Part 2 - mod_jk with autoscaling
Option 2: Use mod_proxy
Option 3: No session stickiness, keep it stateless (which is what Amazon recommends)
Mod JK Configuration
LoadModule jk_module
modules/mod_jk-1.2.30-httpd-2.2.X.so
JkWorkersFile
conf/workers.properties
JkLogFile logs/mod_jk.log
JkLogLevel error
JkShmFile logs/mod_jk.shm
JKMount /status jkstatus
JkAutoAlias
/apps/Tomcat/apache-tomcat-7.0.42/webapps
JkMount /* lb
JkUnMount /img/* lb
JkUnMount /images/* lb
JkUnMount /css/* lb
JkUnMount /media/* lb
|
worker.list=lb,jkstatus
#node 1
worker.node1.type=ajp13
worker.node1.port=8009
worker.node1.host=172.23.0.36
worker.node1.lbfactor=1
worker.node1.cachesize=10
#node 2
worker.node2.type=ajp13
worker.node2.port=8009
worker.node2.host=172.23.0.38
worker.node2.lbfactor=1
worker.node2.cachesize=10
#node 3
worker.node3.type=ajp13
worker.node3.port=8009
worker.node3.host=172.23.1.36
worker.node3.lbfactor=1
worker.node3.cachesize=10
|
That logical name must be the same as entered in each individual Tomcat server.xml as it’s “jvmRoute” as well. Thus we will have Tomcat node1, node2 .. nodeN
Thursday, 22 May 2014
Amazon AWS deployment options for Apache web server to Tomcat connectivity
AWS Glossary
Each region has multiple, isolated locations known as Availability Zones. This supports high availability of the applications and workloads can be balanced across both availability zones.
The cost of legacy technical debt and the need for modernization
Legacy systems, once the backbone of enterprise IT, are now a major obstacle to innovation, agility, and resilience. Despite the rise of cl...
-
In the earlier parts of this article I described some technical tuning tips specific to a slow-performing Weblogic JEE server. Another earli...
-
When running Maven, if you try to run multiple Maven commands in a batch (.bat) file, it only runs the first one and exits to the ...