mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-24 02:46:43 +00:00
Avoid N+1 query for channels with new messages
Co-authored-by: Mikayla <mikayla@zed.dev>
This commit is contained in:
parent
d9d997b218
commit
0db4b29452
5 changed files with 88 additions and 69 deletions
|
@ -529,7 +529,7 @@ impl Database {
|
||||||
.on_conflict(
|
.on_conflict(
|
||||||
OnConflict::columns([Column::UserId, Column::BufferId])
|
OnConflict::columns([Column::UserId, Column::BufferId])
|
||||||
.update_columns([Column::Epoch, Column::LamportTimestamp, Column::ReplicaId])
|
.update_columns([Column::Epoch, Column::LamportTimestamp, Column::ReplicaId])
|
||||||
.target_cond_where(
|
.action_cond_where(
|
||||||
Condition::any()
|
Condition::any()
|
||||||
.add(Column::Epoch.lt(*max_operation.epoch.as_ref()))
|
.add(Column::Epoch.lt(*max_operation.epoch.as_ref()))
|
||||||
.add(
|
.add(
|
||||||
|
@ -702,7 +702,7 @@ impl Database {
|
||||||
pub async fn channels_with_changed_notes(
|
pub async fn channels_with_changed_notes(
|
||||||
&self,
|
&self,
|
||||||
user_id: UserId,
|
user_id: UserId,
|
||||||
channel_ids: impl IntoIterator<Item = ChannelId>,
|
channel_ids: &[ChannelId],
|
||||||
tx: &DatabaseTransaction,
|
tx: &DatabaseTransaction,
|
||||||
) -> Result<HashSet<ChannelId>> {
|
) -> Result<HashSet<ChannelId>> {
|
||||||
#[derive(Debug, Clone, Copy, EnumIter, DeriveColumn)]
|
#[derive(Debug, Clone, Copy, EnumIter, DeriveColumn)]
|
||||||
|
@ -713,7 +713,7 @@ impl Database {
|
||||||
|
|
||||||
let mut channel_ids_by_buffer_id = HashMap::default();
|
let mut channel_ids_by_buffer_id = HashMap::default();
|
||||||
let mut rows = buffer::Entity::find()
|
let mut rows = buffer::Entity::find()
|
||||||
.filter(buffer::Column::ChannelId.is_in(channel_ids))
|
.filter(buffer::Column::ChannelId.is_in(channel_ids.iter().copied()))
|
||||||
.stream(&*tx)
|
.stream(&*tx)
|
||||||
.await?;
|
.await?;
|
||||||
while let Some(row) = rows.next().await {
|
while let Some(row) = rows.next().await {
|
||||||
|
|
|
@ -463,20 +463,14 @@ impl Database {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let channel_ids = graph.channels.iter().map(|c| c.id).collect::<Vec<_>>();
|
||||||
let channels_with_changed_notes = self
|
let channels_with_changed_notes = self
|
||||||
.channels_with_changed_notes(
|
.channels_with_changed_notes(user_id, &channel_ids, &*tx)
|
||||||
user_id,
|
|
||||||
graph.channels.iter().map(|channel| channel.id),
|
|
||||||
&*tx,
|
|
||||||
)
|
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
let mut channels_with_new_messages = HashSet::default();
|
let channels_with_new_messages = self
|
||||||
for channel in graph.channels.iter() {
|
.channels_with_new_messages(user_id, &channel_ids, &*tx)
|
||||||
if self.has_new_message(channel.id, user_id, tx).await? {
|
.await?;
|
||||||
channels_with_new_messages.insert(channel.id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(ChannelsForUser {
|
Ok(ChannelsForUser {
|
||||||
channels: graph,
|
channels: graph,
|
||||||
|
|
|
@ -217,14 +217,12 @@ impl Database {
|
||||||
ConnectionId,
|
ConnectionId,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Observe this message for all participants
|
// Observe this message for the sender
|
||||||
observed_channel_messages::Entity::insert_many(participant_user_ids.iter().map(
|
observed_channel_messages::Entity::insert(observed_channel_messages::ActiveModel {
|
||||||
|pariticpant_id| observed_channel_messages::ActiveModel {
|
user_id: ActiveValue::Set(user_id),
|
||||||
user_id: ActiveValue::Set(*pariticpant_id),
|
channel_id: ActiveValue::Set(channel_id),
|
||||||
channel_id: ActiveValue::Set(channel_id),
|
channel_message_id: ActiveValue::Set(message.last_insert_id),
|
||||||
channel_message_id: ActiveValue::Set(message.last_insert_id),
|
})
|
||||||
},
|
|
||||||
))
|
|
||||||
.on_conflict(
|
.on_conflict(
|
||||||
OnConflict::columns([
|
OnConflict::columns([
|
||||||
observed_channel_messages::Column::ChannelId,
|
observed_channel_messages::Column::ChannelId,
|
||||||
|
@ -248,51 +246,74 @@ impl Database {
|
||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
pub async fn channels_with_new_messages(
|
||||||
pub async fn has_new_message_tx(&self, channel_id: ChannelId, user_id: UserId) -> Result<bool> {
|
|
||||||
self.transaction(|tx| async move { self.has_new_message(channel_id, user_id, &*tx).await })
|
|
||||||
.await
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
pub async fn dbg_print_messages(&self) -> Result<()> {
|
|
||||||
self.transaction(|tx| async move {
|
|
||||||
dbg!(observed_channel_messages::Entity::find()
|
|
||||||
.all(&*tx)
|
|
||||||
.await
|
|
||||||
.unwrap());
|
|
||||||
dbg!(channel_message::Entity::find().all(&*tx).await.unwrap());
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
})
|
|
||||||
.await
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn has_new_message(
|
|
||||||
&self,
|
&self,
|
||||||
channel_id: ChannelId,
|
|
||||||
user_id: UserId,
|
user_id: UserId,
|
||||||
|
channel_ids: &[ChannelId],
|
||||||
tx: &DatabaseTransaction,
|
tx: &DatabaseTransaction,
|
||||||
) -> Result<bool> {
|
) -> Result<HashSet<ChannelId>> {
|
||||||
self.check_user_is_channel_member(channel_id, user_id, &*tx)
|
let mut observed_messages_by_channel_id = HashMap::default();
|
||||||
|
let mut rows = observed_channel_messages::Entity::find()
|
||||||
|
.filter(observed_channel_messages::Column::UserId.eq(user_id))
|
||||||
|
.filter(observed_channel_messages::Column::ChannelId.is_in(channel_ids.iter().copied()))
|
||||||
|
.stream(&*tx)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
let latest_message_id = channel_message::Entity::find()
|
while let Some(row) = rows.next().await {
|
||||||
.filter(Condition::all().add(channel_message::Column::ChannelId.eq(channel_id)))
|
let row = row?;
|
||||||
.order_by(channel_message::Column::SentAt, sea_query::Order::Desc)
|
observed_messages_by_channel_id.insert(row.channel_id, row);
|
||||||
.limit(1 as u64)
|
}
|
||||||
.one(&*tx)
|
drop(rows);
|
||||||
.await?
|
let mut values = String::new();
|
||||||
.map(|model| model.id);
|
for id in channel_ids {
|
||||||
|
if !values.is_empty() {
|
||||||
|
values.push_str(", ");
|
||||||
|
}
|
||||||
|
write!(&mut values, "({})", id).unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
let last_message_read = observed_channel_messages::Entity::find()
|
if values.is_empty() {
|
||||||
.filter(observed_channel_messages::Column::ChannelId.eq(channel_id))
|
return Ok(Default::default());
|
||||||
.filter(observed_channel_messages::Column::UserId.eq(user_id))
|
}
|
||||||
.one(&*tx)
|
|
||||||
.await?
|
|
||||||
.map(|model| model.channel_message_id);
|
|
||||||
|
|
||||||
Ok(last_message_read != latest_message_id)
|
let sql = format!(
|
||||||
|
r#"
|
||||||
|
SELECT
|
||||||
|
*
|
||||||
|
FROM (
|
||||||
|
SELECT
|
||||||
|
*,
|
||||||
|
row_number() OVER (
|
||||||
|
PARTITION BY channel_id
|
||||||
|
ORDER BY id DESC
|
||||||
|
) as row_number
|
||||||
|
FROM channel_messages
|
||||||
|
WHERE
|
||||||
|
channel_id in ({values})
|
||||||
|
) AS messages
|
||||||
|
WHERE
|
||||||
|
row_number = 1
|
||||||
|
"#,
|
||||||
|
);
|
||||||
|
|
||||||
|
let stmt = Statement::from_string(self.pool.get_database_backend(), sql);
|
||||||
|
let last_messages = channel_message::Model::find_by_statement(stmt)
|
||||||
|
.all(&*tx)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
let mut channels_with_new_changes = HashSet::default();
|
||||||
|
for last_message in last_messages {
|
||||||
|
if let Some(observed_message) =
|
||||||
|
observed_messages_by_channel_id.get(&last_message.channel_id)
|
||||||
|
{
|
||||||
|
if observed_message.channel_message_id == last_message.id {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
channels_with_new_changes.insert(last_message.channel_id);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(channels_with_new_changes)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn remove_channel_message(
|
pub async fn remove_channel_message(
|
||||||
|
|
|
@ -171,6 +171,8 @@ test_both_dbs!(
|
||||||
);
|
);
|
||||||
|
|
||||||
async fn test_channel_buffers_diffs(db: &Database) {
|
async fn test_channel_buffers_diffs(db: &Database) {
|
||||||
|
panic!("Rewriting the way this works");
|
||||||
|
|
||||||
let a_id = db
|
let a_id = db
|
||||||
.create_user(
|
.create_user(
|
||||||
"user_a@example.com",
|
"user_a@example.com",
|
||||||
|
|
|
@ -65,6 +65,8 @@ test_both_dbs!(
|
||||||
);
|
);
|
||||||
|
|
||||||
async fn test_channel_message_new_notification(db: &Arc<Database>) {
|
async fn test_channel_message_new_notification(db: &Arc<Database>) {
|
||||||
|
panic!("Rewriting the way this works");
|
||||||
|
|
||||||
let user_a = db
|
let user_a = db
|
||||||
.create_user(
|
.create_user(
|
||||||
"user_a@example.com",
|
"user_a@example.com",
|
||||||
|
@ -108,7 +110,7 @@ async fn test_channel_message_new_notification(db: &Arc<Database>) {
|
||||||
let owner_id = db.create_server("test").await.unwrap().0 as u32;
|
let owner_id = db.create_server("test").await.unwrap().0 as u32;
|
||||||
|
|
||||||
// Zero case: no messages at all
|
// Zero case: no messages at all
|
||||||
assert!(!db.has_new_message_tx(channel, user_b).await.unwrap());
|
// assert!(!db.has_new_message_tx(channel, user_b).await.unwrap());
|
||||||
|
|
||||||
let a_connection_id = rpc::ConnectionId { owner_id, id: 0 };
|
let a_connection_id = rpc::ConnectionId { owner_id, id: 0 };
|
||||||
db.join_channel_chat(channel, a_connection_id, user_a)
|
db.join_channel_chat(channel, a_connection_id, user_a)
|
||||||
|
@ -131,7 +133,7 @@ async fn test_channel_message_new_notification(db: &Arc<Database>) {
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
// Smoke test: can we detect a new message?
|
// Smoke test: can we detect a new message?
|
||||||
assert!(db.has_new_message_tx(channel, user_b).await.unwrap());
|
// assert!(db.has_new_message_tx(channel, user_b).await.unwrap());
|
||||||
|
|
||||||
let b_connection_id = rpc::ConnectionId { owner_id, id: 1 };
|
let b_connection_id = rpc::ConnectionId { owner_id, id: 1 };
|
||||||
db.join_channel_chat(channel, b_connection_id, user_b)
|
db.join_channel_chat(channel, b_connection_id, user_b)
|
||||||
|
@ -139,7 +141,7 @@ async fn test_channel_message_new_notification(db: &Arc<Database>) {
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
// Joining the channel should _not_ update us to the latest message
|
// Joining the channel should _not_ update us to the latest message
|
||||||
assert!(db.has_new_message_tx(channel, user_b).await.unwrap());
|
// assert!(db.has_new_message_tx(channel, user_b).await.unwrap());
|
||||||
|
|
||||||
// Reading the earlier messages should not change that we have new messages
|
// Reading the earlier messages should not change that we have new messages
|
||||||
let _ = db
|
let _ = db
|
||||||
|
@ -147,7 +149,7 @@ async fn test_channel_message_new_notification(db: &Arc<Database>) {
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
assert!(db.has_new_message_tx(channel, user_b).await.unwrap());
|
// assert!(db.has_new_message_tx(channel, user_b).await.unwrap());
|
||||||
|
|
||||||
// This constraint is currently inexpressible, creating a message implicitly broadcasts
|
// This constraint is currently inexpressible, creating a message implicitly broadcasts
|
||||||
// it to all participants
|
// it to all participants
|
||||||
|
@ -165,7 +167,7 @@ async fn test_channel_message_new_notification(db: &Arc<Database>) {
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
assert!(!db.has_new_message_tx(channel, user_b).await.unwrap());
|
// assert!(!db.has_new_message_tx(channel, user_b).await.unwrap());
|
||||||
|
|
||||||
// And future messages should not reset the flag
|
// And future messages should not reset the flag
|
||||||
let _ = db
|
let _ = db
|
||||||
|
@ -173,26 +175,26 @@ async fn test_channel_message_new_notification(db: &Arc<Database>) {
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
assert!(!db.has_new_message_tx(channel, user_b).await.unwrap());
|
// assert!(!db.has_new_message_tx(channel, user_b).await.unwrap());
|
||||||
|
|
||||||
let _ = db
|
let _ = db
|
||||||
.create_channel_message(channel, user_b, "6", OffsetDateTime::now_utc(), 6)
|
.create_channel_message(channel, user_b, "6", OffsetDateTime::now_utc(), 6)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
assert!(!db.has_new_message_tx(channel, user_b).await.unwrap());
|
// assert!(!db.has_new_message_tx(channel, user_b).await.unwrap());
|
||||||
|
|
||||||
// And we should start seeing the flag again after we've left the channel
|
// And we should start seeing the flag again after we've left the channel
|
||||||
db.leave_channel_chat(channel, b_connection_id, user_b)
|
db.leave_channel_chat(channel, b_connection_id, user_b)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
assert!(!db.has_new_message_tx(channel, user_b).await.unwrap());
|
// assert!(!db.has_new_message_tx(channel, user_b).await.unwrap());
|
||||||
|
|
||||||
let _ = db
|
let _ = db
|
||||||
.create_channel_message(channel, user_a, "7", OffsetDateTime::now_utc(), 7)
|
.create_channel_message(channel, user_a, "7", OffsetDateTime::now_utc(), 7)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
assert!(db.has_new_message_tx(channel, user_b).await.unwrap());
|
// assert!(db.has_new_message_tx(channel, user_b).await.unwrap());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue