|
|
|
|
|
by idunno246
1403 days ago
|
|
these tend to be for one-off analytical queries. you want ever user with flag X >10 joined against five other tables each with similar filters. you don't know ahead of time what that query is, your analyst thought of it this morning, so you cant make indices ahead of time. and itll never run again so you don't need to take the performance hit keeping an index. and someone has to decide which indices to keep, but app engineers arent best utilized figuring out indices for analysts. the indices is nice, but the bigger selling feature for me is if you have many services, and each services data are in the warehouse, you can join against them all together. |
|