While launching a site migrated from Magento 1, you are instructed to change the website CNAME record in your DNS provider by Magento for go live.
What is the purpose of setting this record?
A. Setting this record causes sent email to be properly authenticated and not show in junk folders.
B. Setting this record enables the page caching service for your site.
C. Setting this record is needed on Pro to allow upsizing servers without downtime.
D. Setting this record reduces the time it takes for customers to start seeing your Magento 2 site.
You need to increase the Admin Session Lifetime up to 86400 seconds for the branch named Integration and children branches, but not for the Staging and Production branches.
How do you update this on the Integration branch and its child branches?
A. On your local environment, set the Admin Session Lifetime in the Magento admin backend under Stores > Configuration > Advanced > Admin > Security then dump this setting into the app/etc/ config.php file and commit this file
B. Add the following variable on the Integration branch and set its value to 86400: env:CONFIG_STORES_DEFAULT_ADMIN_SECURITY_SESSION_LIFETIME
C. Run the following Magento CLI command: php bin/magento config:set admin/security/session_lifetime 86400
D. On the Integration environment, set the Admin Session Lifetime in the Magento admin backend under Stores > Configuration > Advanced > Admin > Security
You are going to create a backup of an Integration branch before implementing some new feature.
What are two ways to create the backup of the Integration branch? (Choose two.)
A. Create a snapshot using the ece-tools snapshot:create command
B. Create a snapshot using the snapshot button in the Project Web UI
C. Create a snapshot using the magento-cloud snapshot:create command
D. Submit a support ticket requesting a backup be made
For the Magento search backend, you would like to move from MySQL to Elasticsearch for your existing project. You have confirmed that your services.yaml file is configured appropriately. However, after your most recently deployment, you notice the search engine is still set to MySQL.
What additional step must be completed?
A. Configure the relationships section of the .magento.app.yaml file
B. Find an appropriate Elasticsearch module to require with Composer
C. Specify Elasticsearch as the search engine in the Magento Admin panel
D. Remove the MySQL service from the services.yaml file
You upgraded an integration branch in your Magento Commerce Cloud project, but received an error during the deploy phase.
What are the two ways to review details about the deployment? (Choose two.)
A. View the logs in the var/reports/ directory on the remote server
B. View the exception.log file in the var/log/ directory
C. View the deploy.log file in the /var/log/ directory
D. View the cloud.log file in the var/log/ directory
You want to move static content deploy to the build phase of deployments.
Which two actions do you take? (Choose two.)
A. Download and commit app/etc/config.php from production
B. Run ece-tools scd-deploy:set build on production
C. Run ece-tools config:dump on production
D. Use scp to copy app/etc/config.php from local to production
A merchant states the downtime during the deployment phase is too long. After analysis, it is determined the static content deployment is the longest process. Static content needs to be available immediately after deployment.
How can the static content deployment time be reduced?
A. Move static content deploy to the build phase
B. Commit var/view_preprocessed to git so it already exists during the deployment phase
C. Set stage/global/SKIP_SCD to true
D. Reduce the number of store views per website
You need to disable a module on a Magento Commerce 2.3 Cloud project and remove its database tables. The module uses the declarative schema system to manage its database changes.
Which action do you take?
A. Run bin/magento module:disable MyCompany_MyModule on the local environment and then commit and deploy the app/et/config.php file
B. Run bin/magento module:disable MyCompany_MyModule on the production environment and download and commit the app/etc/config.php file
C. Delete the module from the git repository leaving the record in app/etc/config.php intact and deploy the changes
D. Remove the module line from the app/etc/config.php file on the local environment and then deploy the file
A merchant with three websites using en_GB, fr_FR and de_AT requires a change in locale to de_DE for the German Production website. After running the following command on Production you notice the frontend design of the German website is broken:
php bin/magento config:set --scope=websites --scope-code=german general/locale/code de_DE
Static content deployment is set up on the deploy phase.
Why did this happen?
A. Static Content is not pre-generated for the de_DE locale
B. de_DE is not writeable in pub/static and has to be configured via the .magento.app.yaml file
C. The magento-cloud environment:deploy command has not been run yet to generate static content for the new locale
D. STATIC_CONTENT_SYMLINK is not configured in the .magento.env.yaml file
You have created a new Integration branch and did not receive the administrator email with the password reset link.
What is prohibiting the email from sending?
A. You have not enabled the Magento Email module with bin/magento module:enable
B. The Outgoing Emails setting is disabled under Environment Settings in the Project Web UI
C. Email is always disabled on all integration branches
D. You have not configured SendGrid for this environment