What's the difference between a monolith and microservices?
# of services and # of databases
Why is syncing hard?
Lots of work to set up syncing, reconciliation, monitoring, etc. to prevent data drift
What is list filtering?
Showing a list in app where a portion of the list needs to be flittered
What is a request?
When you do a thing in an app, it flows through the app to make things happen
What happens when you want to audit the authorization logic?
Why is authorization less painful in a monolith?
1 database
What does Zanzibar do?
Centralizes all log and all data
What is an example of list filtering in Slack?
What is uptime & latency?
Uptime: % of time that the app responds
Latency: how long it takes to respond
Why are there a lot of bugs in a custom authz solution
Can you describe the architecture of a monolith?
1 frontend, 1 backend, 1 database
what are the 2 main problems with list filtering in a zanzibar model?
1. syncing
2. perf
Why is lit filtering hard?
Performance. If this moves slowly, it's a bad user experience (imagine if it took 1 minute to open up Amplemarket and see all of my sequences)
How does authorization fit into the frontend?
What can a use see?
If logic is spread throughout an app, what happens when you want to add new features?
You need to find every place in the app to go and update the logic
Why would a monolith use a DSL?
To be able to express logic clearly
Can you give an example of an authorization question that would be hard to answer in an app with microservices?
Why is it hard?
Pulling a list of all of your accounts in SalesForce
Multi stage filtering
1. first we see accounts in your org (data sits in one service)
2. Then we see the ones assigned to you (data sits in another service)
Where in the app does list filtering happen? Why?
Database - it's too computationally intensive to happen in app code
If an app has multiple services feeding to >1 database but not servicing the same core app, how painful is authorization/list filtering?
Not that painful
What are 4 hard things that happen when in a custom authz solution?
Hard to express logic clearly and the logic is spread throughout the app so:
1. Hard to maintain and add new features
2. Hard to test (bugs)
3. Hard to audit
Why would a monolith use a library?
You can centralize authz logic behind an API using a library to solve enforcement
Why is authorization hard in microservices?
Authorization – and in particular, list filtering – is hard in microservices because we want to centralize authorization, but the data is spread out across multiple services. And these 2 things are fundamentally at odds with each other
Which applications need list filtering?
If you have fine grained authz, you need list filtering
Why is authorization on the critical path?
Everything in an app relies on authorization. If we're down, our customers are down
What happened with Intercom?