Frage 1
Frage
What are 3 key benefits of the Magento Cloud production architecture? (3 of 5)
Antworten
-
Is limited to 1 Availability Zone
-
Guaranteed site uptime
-
Highly resilient and fault tolerant
-
Allows for zero-downtime upsizing
-
Scaling of the entire server stack rather than just the application layer
Frage 2
Frage
What are 3 key benefits of leveraging Fastly for full page cache on Magento Cloud? (3 of 5)
Antworten
-
Improved response times across the globe
-
Significantly reduced load at the origin
-
Improved page load performance across the globe
-
Automatic translation of all content
-
Improved troubleshooting capabilities
Frage 3
Frage
What are the 2 key benefits of the read-only core file system? (Pick 2)
Antworten
-
Core files can be easily overwritten in the production environment
-
Significantly reduces the surfaces available to attack
-
Improves website performance
-
Guarantees all changes to production environment are tracked
Frage 4
Frage
What type of users are you able to add through the onboarding UI?
Antworten
-
Environment admin
-
Magento Admin
-
Content Manager
Frage 5
Frage
Which of these resources can you access from the UI?
Antworten
-
Environment link
-
Help Center
-
DNS
-
Dev docs links
-
Google
Frage 6
Frage
Can users access the Cloud project interface from the onboarding UI?
Frage 7
Frage
Who should be provided shared access under the Magento account?
Frage 8
Frage
What are three main advantages of the Pro account over the Starter account?
Antworten
-
It runs on a shared infrastructure
-
It includes a dedicated Launch Manager
-
It combines the powerful benefits of Magento Commerce with a cloud hosting agreement for
smaller merchants
-
It runs on an isolated and dedicated hardware setup in the underlying Infrastructure-as-a-Service
-
It has extended core features
Frage 9
Frage
Which two actions are the most common use cases for the Integration environment?
Antworten
-
To develop and fix code changes
-
To test functionality of new complete modules
-
To test environment and Magento settings
-
To merge to production environment
Frage 10
Frage
What are two key features of the Magento Cloud CLI tool?
Antworten
-
It helps automatically build and deploy your Cloud projects
-
It helps with Magento management and Git interactions
-
It allows you to use the hooks to run shell commands during the build, deploy, and post-deploy phases
-
It duplicates the Magento Cloud Admin UI
Frage 11
Frage
When updating Magento Cloud specific configuration files, what folder do you find them under?
Antworten
-
.magento
-
update
-
m2-hoftixes
-
/etc
Frage 12
Frage
What are the only writeable folders in the application root on a remote cloud project?
Antworten
-
m2-hotfixes, var, pub/static, app/etc
-
update, var, app/etc, m2-hotfixes
-
var, app/etc, pub/media, pub/static, /tmp
-
.magento, pub/media, app/etc, m2-hotfixes
Frage 13
Frage
What is the name of the flexible toolset that is used to deploy Magento to Magento Cloud?
Frage 14
Frage
How would you apply a patch to a package under vendor on Magento Cloud?
Solution: Place the .patch file into the m2-hotfixes folder in the project root. It will be applied automatically during the build phase (before the code is moved to a read-only mount).
Frage 15
Frage
Where is the latest sample .magento.env.yaml file stored?
Antworten
-
.magento
-
application root
-
vendor
-
update
Frage 16
Frage
What is the limitation for a build script?
Antworten
-
A script cannot write to files
-
No connections to any service
-
Must not take more than 30 seconds systime
-
Only shell scripts can be run
Frage 17
Frage
Which two actions can be used to retrieve connection data for services installed on the environment?
Antworten
-
$_ENV[‘MAGENTO_CLOUD_RELATIONSHIPS’]
-
CLI command magento-cloud relationships
-
ece-tools command relationships
-
From the Cloud UI
Frage 18
Frage
You have installed a new composer package, committed the changed composer.json file but the package is not present in the successful integration build. What is the possible cause?
Antworten
-
The updated composer.lock file wasn’t committed
-
The package repository was offline
-
A newer version of the package has been marked as stable and needs to be used
-
A conflict with another package in the version installed on integration stopped composer from installing the new package
Frage 19
Frage
During which phase is the site in downtime?
Antworten
-
Build
-
Pre-Deploy
-
Deploy
-
Post-Deploy
Frage 20
Frage
Where can you find information that a patch was applied?
Antworten
-
var/log/cloud.log
-
/var/cloud.log
-
Cloud UI deployment history log
-
CLI command output if redeployment was triggered by this command
-
Open a support ticket to request information
Frage 21
Frage
Why should you not extend the build script at the end which generates/modifies static content?
Antworten
-
The file system is read-only at this point
-
All generated files were already moved to the init directory by the main script
-
You need to add this script in the deploy phase
-
If the last script is not the ece-tools, it won’t be run
Frage 22
Frage
If you want to have the maximum verbosity level for the deploy script only, what changes should you make?
Antworten
-
Set stage/global/VERBOSE_COMMANDS as "" and stage/deploy/VERBOSE_COMMANDS as “-vvv”
-
Set stage/global/VERBOSE_COMMANDS as "" and stage/deploy/VERBOSE_COMMANDS as “-v”
-
Set only stage/build/VERBOSE_COMMANDS as "” as by default all stages have “-vvv”
-
Set only stage/deploy/VERBOSE_COMMANDS as "-vvv"
Frage 23
Frage
What is the cause if after a deployment with SKIP_SCD: true the static content looks broken? Note that on the previous deployment SCD was run on the Build phase with default settings SKIP_SCD: false and STATIC_CONTENT_SYMLINK: true.
Antworten
-
You have enabled CLEAN_STATIC_FILES which removes all previously generated static files
-
You have broken symlinks in the pub/static directory
-
You have enabled STATIC_CONTENT_SYMLINK which remove files from pub/static and create symlinks
-
SCD_MATRIX configuration has an empty array for all themes
Frage 24
Frage
What is the best configuration to minimize the next deployment time when using SCD with the compact strategy?
Antworten
-
Use stage/global/SCD_ON_DEMAND: true and stage/global/SCD_STRATEGY: compact
-
Move SCD to the Build phase and use stage/global/SCD_STRATEGY: compact with stage/global/SKIP_HTML_MINIFICATION: true
-
Leave SCD on the Deploy phase and use stage/global/SCD_STRATEGY: compact
-
Move SCD to the Build phase and use stage/global/SKIP_SCD: true with
stage/global/SKIP_HTML_MINIFICATION: true
Frage 25
Frage
What is the best configuration to store previously generated static content for the next deployment? The previous deployment generated static content on the Deploy phase
Antworten
-
Use stage/global/CLEAN_STATIC_FILES: false
-
Use stage/global/SCD_ON_DEMAND: true
-
Use stage/global/SKIP_SCD: true
-
Move SCD to the Build phase and use stage/global/SKIP_SCD: false and stage/global/STATIC_CONTENT_SYMLINK: false
Frage 26
Frage
Magento has the following data for timezone field (path general/locale/timezone )
• DB has records for:
- ‘default’ scope – America/Los_Angeles
- ‘stores’ scope and code ‘default’ – America/Chicago
• app/etc/config.php has system/default/general/locale/timezone => Europe/London
• app/etc/env.php has system/default/general/locale/timezone => Europe/Stockholm
What timezone does the store view have with code ‘default’?
Antworten
-
America/Los_Angeles
-
America/Chicago
-
Europe/London
-
Europe/Stockholm
Frage 27
Frage
While reviewing a third-party extension you see the following constructor:
public function __construct(Config $config, EntityFactory $factory = null)
{
$this->config = $config;
$this->factory = $factory ?? ObjectManager::getInstance()->create(EntityFactory::class);
}
What step do you take during the review to ensure that the class is compatible with Magento Commerce Cloud?
Antworten
-
Flag the class as incompatible because the ObjectManager is used
-
Check that the Entity base class of the factory exists
-
Mark the class as compatible
-
Change the code so the ObjectManager is also injected as a dependency
Frage 28
Frage
While reviewing a third-party extension you see the following constructor:
public function __construct(Config $config)
{
$this->config = $config;
$this->command = ObjectManager::getInstance()->create(Command\Proxy::class);
}
What step do you take during the review to ensure that the class is compatible with Magento Commerce Cloud?
Antworten
-
Flag the class as incompatible because ObjectManager::create() is used to create the command proxy
-
Check that the Proxy base class exists
-
Mark the class as compatible
-
Change the code so that the Command\Proxy is passed as a constructor argument
Frage 29
Frage
What are three cloud specific variables?
Frage 30
Frage
How often are Snapshots taken for Production and Staging environments on Commerce Pro?
Antworten
-
Every 12 hours
-
Every 6 hours
-
Every 4 hours
-
Every 2 hours
Frage 31
Frage
How are snapshots initiated for the Production and Staging environments on Commerce Pro?
Antworten
-
Automatic for both Pro and Stater
-
Manual for both Pro and Starter
-
Automatic for Pro and manual for Starter
-
Manual for Pro and Automatic for Starter
Frage 32
Frage
What is included in Snapshots of the Production and Staging environments on Magento Commerce Pro?
Antworten
-
Files only
-
Files and database only
-
Everything on the EBS volume, including the persistent data from all running services
-
Everything on the EBS volume, except the persistent data from all running services
Frage 33
Frage
When backups are transferred to S3, which region are they stored in be default?
Antworten
-
The region furthest from the customers production region
-
The same AWS region as the production environment
-
Any region other than the same AWS region as the production environment
-
All of the AWS regions
Frage 34
Frage
Are backups of the production environment encrypted and why?
Antworten
-
No, backups are not encrypted because S3 storage is not encrypted by default
-
Yes, backups are encrypted because S3 storage is encrypted by default
-
No, backups are not encrypted because the production EBS volumes are not encrypted
-
Yes, backups are encrypted because the EBS volumes are encrypted
Frage 35
Frage
How are restores initiated in the Production environment for Pro and Starter?
Antworten
-
Production restores can be initiated via the Cloud UI/CLI for both Starter and Pro
-
Production restores are initiated via a support ticket for both Starter and Pro
-
Production restores for Pro are initiated via a support ticket and production restores for Starter are initiated via the Cloud UI/CLI
-
Production restores for Pro are initiated via the Cloud UI/CLI and production restores for Starter are initiated via a support ticket
Frage 36
Frage
What's the preferred method of debugging on Magento Cloud?
Antworten
-
Committing var_dump()s and die()s into your code
-
SSH'ing into the server and manually inserting var_dump()s and die()s into your code
-
Creating an extension and installing it via Composer which injects var_dump()s and die()s into your code
-
Using Xdebug
Frage 37
Frage
You have attempted to merge code up to the parent branch and the merge failed due to a conflict. How do you identify the conflicting files? (2 of 4)
Frage 38
Frage
You have identified the files that caused the Git merge conflict. Which tool will you use to resolve the conflicts? (2 of 5)
Antworten
-
Magento Cloud UI
-
magento-cloud CLI
-
git CLI
-
git UI
-
Your analytics tool
Frage 39
Frage
Where should the domain name be pointed?
Antworten
-
Fastly
-
Magento Cloud
-
Server
Frage 40
Frage
You are in the planning stage for a large promotion with 40% off all products and you expect a significant increase in traffic. When do you notify Magento of the event?
Frage 41
Frage
Which three key data points do you need to provide to Magento 72 hours prior to a planned traffic surge event? (pick 3)
Antworten
-
When the event will occur
-
How much revenue the event will generate
-
% increase in traffic / orders
-
Expected duration of the event
-
Which products will be most popular during the event
Frage 42
Frage
When reviewing New Relic you notice a surge in requests, and you realize you are experiencing an unexpected traffic surge. When do you need to notify Magento for upsizing to occur?
Antworten
-
Immediately
-
It is too late, your site will crash
-
Magento will upsize the environment as necessary to maintain the SLA
-
The next day
Frage 43
Frage
You have notified Magento of a planned traffic surge event that will occur in approximately 72 hours. What are the benefits of this prior notice? (pick 2)
Antworten
-
The additional resources are available when the traffic arrives
-
The Support team will be aware of the event
-
Upsizing prior to a surge event guarantees a higher conversion rate
-
There are no benefits to prior notice