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

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam MCD - Level 1 topic 1 question 65 discussion

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

A Database On Table Row listener retrieves data from a CUSTOMER table that contains a primary key user_id column and an increasing login_date_time column. Neither column allows duplicate values.
How should the listener be configured so it retrieves each row at most one time?

  • A. Set the watermark column to the login_date_time column
  • B. Set the target value to the last retrieved login_date_time value
  • C. Set the target value to the last retrieved user_id value
  • D. Set the watermark column to the user_id column
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️
Reference:
https://docs.mulesoft.com/connectors/db/database-documentation

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
pgarciar
Highly Voted 3 years ago
A is the correct answer.
upvoted 14 times
...
Maxroyo
Highly Voted 1 year, 7 months ago
Selected Answer: A
* Watermark allows the poll scope to poll for new resources instead of getting the same resource over and over again. * The database table must be ordered so that the "watermark functionality" can move effectively in the ordered list. Watermark stores the current/last picked up "record id." * If the Mule application is shut down, it will store the last picked up "record id" in the Java Object Store and the data will continue to exist in the file. This watermark functionality is valuable and enables developers to have increased transparency. * Developers do not need to create code to handle caching; it is all configurable! * There are two columns and both are unique but user_id can't guaranty sequence whereas date_time will always be in increasing order and table content can easily be ordered on the basis of last processed date_time. So correct answer is: Set the watermark column to the date_time column
upvoted 5 times
...
VickySoni
Most Recent 1 week, 3 days ago
Watermark should be set on Primary key, so D should be the answer.
upvoted 1 times
...
ajcacho
6 months, 1 week ago
This is a scenario for watermarking, therefore A has to be the answer, not the pointed B option ('On Table Row' doesn't even have a target parameter as seen in https://docs.mulesoft.com/connectors/db/database-documentation)
upvoted 2 times
...
Yug21
12 months ago
I am doubtful about option A. Consider a scenario, the user logged in at time A and the row was retrieved by the listener. The same row can be retrieved again if the user logs in later sometime (the logged in column gets updated to the latest time for the same row and possibly greater than watermarking column value), but the question says "each row should be retrieved at most one time". Example: UserId LoginTime 1 10:00 AM At this point of time, watermarking column value = 10:00 AM Later some time same user again logs in then UserId LoginTime 1 12:00 AM This time as the column value is greater than the watermark column value, it will be again retrieved which is against question statement. Is this a valid scenario, can someone please explain? Thanks
upvoted 2 times
notthatgerry
5 months, 1 week ago
I think the statement refers to the fact that every row in login_date_time column is unique as user_id is aswell, so the timestamp for login at 10:00AM and login at 12:AM are two different time stamps taking into consideration that a timestamp has the format yyyymmdd hh:mm:ss.00 in general, so as you can see hardly two users will login at the same time. Also please take into consideration the following: a system as the one described can be used to provide anonymous access to a certain resource, so no matter if the same person access the resource twice, the application generates a unique radomized user_id every time the user access the application. This kind of systems are usefull to generate access tokens so if an unauthorized agent gets an user_id already used, they will not be able to access the resource.
upvoted 1 times
...
...
kampatra
1 year, 1 month ago
Selected Answer: A
A is Correct
upvoted 1 times
...
Kbessadi
1 year, 1 month ago
Selected Answer: A
A is the correct answer
upvoted 1 times
...
frediepulgoso
2 years ago
A is correct
upvoted 1 times
...
kubota_dump
2 years, 1 month ago
Selected Answer: B
B is the correct answer.
upvoted 1 times
kubota_dump
2 years, 1 month ago
A. Set the watermark column to the login_date_time column
upvoted 1 times
...
...
senthil_Kumar_Murugan
2 years, 3 months ago
Selected Answer: A
Set the watermark column to the login_date_time column
upvoted 1 times
...
Ella_Z
2 years, 6 months ago
"Neither column allows duplicate values." if there have two user click in same time, them the timestamp may same. So I think the B is correct.
upvoted 2 times
...
Anseal
2 years, 10 months ago
I wonder why is D incorrect? I would choose both A and D.
upvoted 2 times
...
Rahul_16
2 years, 10 months ago
A is correct. It is done on column not on value
upvoted 3 times
RoyalCasa
2 years, 9 months ago
Because the user_id column can be unique but need not be incremental / higher than the previous user_id. Whereas in case of timestamp, it would always be HIGHER than the previous one. So that would be the ideal watermark column.
upvoted 6 times
ck0241
2 years, 8 months ago
Good explanation, thank you. I wonder what is the importance of ''At most one value' in the question.
upvoted 1 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 ...