0
0
Microservicessystem_design~10 mins

Spotify architecture overview in Microservices - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to identify the main component responsible for storing user playlists in Spotify's microservices architecture.

Microservices
The service that manages user playlists is called the [1] service.
Drag options to blanks, or click blank then click option'
APlaylist
BAuthentication
CStreaming
DSearch
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing the Streaming service with Playlist service.
Choosing Authentication service which handles user login.
2fill in blank
medium

Complete the code to specify the component responsible for delivering music tracks to users.

Microservices
The [1] service streams audio content to users in Spotify's system.
Drag options to blanks, or click blank then click option'
AStreaming
BSearch
CPlaylist
DUser Profile
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting Playlist service which manages playlists but does not stream music.
Choosing Search service which helps find songs but does not deliver them.
3fill in blank
hard

Fix the error in naming the service that handles user login and security.

Microservices
The [1] service manages user authentication and security in Spotify's microservices.
Drag options to blanks, or click blank then click option'
AStreaming
BAuthentication
CPlaylist
DRecommendation
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing Authentication with Streaming service.
Choosing Recommendation service which suggests songs but does not handle login.
4fill in blank
hard

Fill both blanks to complete the description of how Spotify handles song search and recommendations.

Microservices
The [1] service helps users find songs, while the [2] service suggests new music based on user taste.
Drag options to blanks, or click blank then click option'
ASearch
BStreaming
CRecommendation
DPlaylist
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up Search and Streaming services.
Choosing Playlist instead of Recommendation for suggestions.
5fill in blank
hard

Fill all three blanks to complete the description of Spotify's microservices interaction for user experience.

Microservices
When a user logs in, the [1] service verifies credentials, then the [2] service streams music, and the [3] service updates user playlists.
Drag options to blanks, or click blank then click option'
AAuthentication
BStreaming
CPlaylist
DSearch
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping Streaming and Playlist services.
Choosing Search instead of Playlist for playlist management.