Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam MCIA - Level 1 All Questions

View all questions & answers for the MCIA - Level 1 exam

Exam MCIA - Level 1 topic 1 question 99 discussion

Actual exam question from Mulesoft's MCIA - Level 1
Question #: 99
Topic #: 1
[All MCIA - Level 1 Questions]

A marketing organization is designing a Mule application to process campaign data. The Mule application will periodically check for a file in a SFTP location and process the records in the file. The size of the file can vary from 10MB to 5GB. Due to the limited availabiltty of vCores, the Mule application is deployed to a single CloudHub worker configured with vCore size 0.2.

The application must transform and send different formats of this file to three different downstream SFTP locations.

What is the most idiomatic (used for its intended purpose) and performant way to configure the SFTP operations or event sources to process the large files to support these deployment requirements?

  • A. Use an in-memory repeatable stream
  • B. Use a file-stored non-repeatable stream
  • C. Use an in-memory non-repeatable stream
  • D. Use a file-stored repeatable stream
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
awsuser1
1 year, 10 months ago
I think D is right answer.
upvoted 2 times
awsuser1
1 year, 10 months ago
https://docs.mulesoft.com/mule-runtime/4.4/streaming-about
upvoted 1 times
...
...
Examschaffer
1 year, 10 months ago
Selected Answer: D
I'll go with D. Use a file-stored repeatable stream. File-stored, because heap memory assigned to 0.2 vCores is 1 GB. If the size of the processed file is more than 1 GB and the disc storage isn't available, the application will crash. So the disc (file) storage is needed. Repeatable, since there are three downstream SFTP locations which expect different file formats, it can be assumed, that the mule application needs to access the stored data three times to transform them into three different formats.
upvoted 4 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...