-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: introduce updated at field in top level torii query #2807
Changes from all commits
7602646
4fa9955
241eab2
04b2764
85df91a
aa1ef33
eea50a7
dbc84a5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -27,6 +27,7 @@ | |||||||||||||||||||||||||
use rayon::iter::{IntoParallelRefIterator, ParallelIterator}; | ||||||||||||||||||||||||||
use sqlx::prelude::FromRow; | ||||||||||||||||||||||||||
use sqlx::sqlite::SqliteRow; | ||||||||||||||||||||||||||
use sqlx::types::chrono::{DateTime, Utc}; | ||||||||||||||||||||||||||
use sqlx::{Pool, Row, Sqlite}; | ||||||||||||||||||||||||||
use starknet::core::types::Felt; | ||||||||||||||||||||||||||
use starknet::providers::jsonrpc::HttpTransport; | ||||||||||||||||||||||||||
|
@@ -229,6 +230,7 @@ | |||||||||||||||||||||||||
dont_include_hashed_keys: bool, | ||||||||||||||||||||||||||
order_by: Option<&str>, | ||||||||||||||||||||||||||
entity_models: Vec<String>, | ||||||||||||||||||||||||||
internal_updated_at: u64, | ||||||||||||||||||||||||||
) -> Result<(Vec<proto::types::Entity>, u32), Error> { | ||||||||||||||||||||||||||
self.query_by_hashed_keys( | ||||||||||||||||||||||||||
table, | ||||||||||||||||||||||||||
|
@@ -240,6 +242,7 @@ | |||||||||||||||||||||||||
dont_include_hashed_keys, | ||||||||||||||||||||||||||
order_by, | ||||||||||||||||||||||||||
entity_models, | ||||||||||||||||||||||||||
internal_updated_at, | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
.await | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
@@ -258,6 +261,7 @@ | |||||||||||||||||||||||||
row_events.iter().map(map_row_to_event).collect() | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
#[allow(clippy::too_many_arguments)] | ||||||||||||||||||||||||||
async fn fetch_entities( | ||||||||||||||||||||||||||
&self, | ||||||||||||||||||||||||||
table: &str, | ||||||||||||||||||||||||||
|
@@ -266,6 +270,7 @@ | |||||||||||||||||||||||||
dont_include_hashed_keys: bool, | ||||||||||||||||||||||||||
order_by: Option<&str>, | ||||||||||||||||||||||||||
entity_models: Vec<String>, | ||||||||||||||||||||||||||
internal_updated_at: u64, | ||||||||||||||||||||||||||
) -> Result<Vec<proto::types::Entity>, Error> { | ||||||||||||||||||||||||||
let entity_models = | ||||||||||||||||||||||||||
entity_models.iter().map(|tag| compute_selector_from_tag(tag)).collect::<Vec<Felt>>(); | ||||||||||||||||||||||||||
|
@@ -354,9 +359,22 @@ | |||||||||||||||||||||||||
order_by, | ||||||||||||||||||||||||||
None, | ||||||||||||||||||||||||||
None, | ||||||||||||||||||||||||||
internal_updated_at, | ||||||||||||||||||||||||||
)?; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
let rows = sqlx::query(&entity_query).bind(models_str).fetch_all(&mut *tx).await?; | ||||||||||||||||||||||||||
let mut query = sqlx::query(&entity_query).bind(models_str); | ||||||||||||||||||||||||||
if internal_updated_at > 0 { | ||||||||||||||||||||||||||
for _ in 0..schemas.len() { | ||||||||||||||||||||||||||
let time = DateTime::<Utc>::from_timestamp(internal_updated_at as i64, 0) | ||||||||||||||||||||||||||
.ok_or_else(|| { | ||||||||||||||||||||||||||
Error::from(QueryError::InvalidTimestamp(internal_updated_at)) | ||||||||||||||||||||||||||
})? | ||||||||||||||||||||||||||
.to_rfc3339(); | ||||||||||||||||||||||||||
Comment on lines
+368
to
+372
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ohayo, sensei! Fix incorrect timestamp conversion and handle possible overflow
Apply this diff to fix the code: + if internal_updated_at > i64::MAX as u64 {
+ return Err(Error::from(QueryError::InvalidTimestamp(internal_updated_at)));
+ }
- let time = DateTime::<Utc>::from_timestamp(internal_updated_at as i64, 0)
- .ok_or_else(|| {
- Error::from(QueryError::InvalidTimestamp(internal_updated_at))
- })?
- .to_rfc3339();
+ let time = Utc.timestamp_opt(internal_updated_at as i64, 0)
+ .single()
+ .ok_or_else(|| Error::from(QueryError::InvalidTimestamp(internal_updated_at)))?
+ .to_rfc3339(); 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||
query = query.bind(time.clone()); | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
let rows = query.fetch_all(&mut *tx).await?; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
let schemas = Arc::new(schemas); | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
let group_entities: Result<Vec<_>, Error> = rows | ||||||||||||||||||||||||||
|
@@ -430,6 +448,7 @@ | |||||||||||||||||||||||||
dont_include_hashed_keys: bool, | ||||||||||||||||||||||||||
order_by: Option<&str>, | ||||||||||||||||||||||||||
entity_models: Vec<String>, | ||||||||||||||||||||||||||
internal_updated_at: u64, | ||||||||||||||||||||||||||
) -> Result<(Vec<proto::types::Entity>, u32), Error> { | ||||||||||||||||||||||||||
// TODO: use prepared statement for where clause | ||||||||||||||||||||||||||
let filter_ids = match hashed_keys { | ||||||||||||||||||||||||||
|
@@ -510,6 +529,7 @@ | |||||||||||||||||||||||||
dont_include_hashed_keys, | ||||||||||||||||||||||||||
order_by, | ||||||||||||||||||||||||||
entity_models, | ||||||||||||||||||||||||||
internal_updated_at, | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
.await?; | ||||||||||||||||||||||||||
Ok((entities, total_count)) | ||||||||||||||||||||||||||
|
@@ -527,6 +547,7 @@ | |||||||||||||||||||||||||
dont_include_hashed_keys: bool, | ||||||||||||||||||||||||||
order_by: Option<&str>, | ||||||||||||||||||||||||||
entity_models: Vec<String>, | ||||||||||||||||||||||||||
internal_updated_at: u64, | ||||||||||||||||||||||||||
) -> Result<(Vec<proto::types::Entity>, u32), Error> { | ||||||||||||||||||||||||||
let keys_pattern = build_keys_pattern(keys_clause)?; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
|
@@ -655,6 +676,7 @@ | |||||||||||||||||||||||||
dont_include_hashed_keys, | ||||||||||||||||||||||||||
order_by, | ||||||||||||||||||||||||||
entity_models, | ||||||||||||||||||||||||||
internal_updated_at, | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
.await?; | ||||||||||||||||||||||||||
Ok((entities, total_count)) | ||||||||||||||||||||||||||
|
@@ -699,6 +721,7 @@ | |||||||||||||||||||||||||
dont_include_hashed_keys: bool, | ||||||||||||||||||||||||||
order_by: Option<&str>, | ||||||||||||||||||||||||||
entity_models: Vec<String>, | ||||||||||||||||||||||||||
internal_updated_at: u64, | ||||||||||||||||||||||||||
) -> Result<(Vec<proto::types::Entity>, u32), Error> { | ||||||||||||||||||||||||||
let entity_models = | ||||||||||||||||||||||||||
entity_models.iter().map(|model| compute_selector_from_tag(model)).collect::<Vec<_>>(); | ||||||||||||||||||||||||||
|
@@ -765,6 +788,7 @@ | |||||||||||||||||||||||||
order_by, | ||||||||||||||||||||||||||
limit, | ||||||||||||||||||||||||||
offset, | ||||||||||||||||||||||||||
internal_updated_at, | ||||||||||||||||||||||||||
)?; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
let total_count = sqlx::query_scalar(&count_query) | ||||||||||||||||||||||||||
|
@@ -798,6 +822,7 @@ | |||||||||||||||||||||||||
dont_include_hashed_keys: bool, | ||||||||||||||||||||||||||
order_by: Option<&str>, | ||||||||||||||||||||||||||
entity_models: Vec<String>, | ||||||||||||||||||||||||||
internal_updated_at: u64, | ||||||||||||||||||||||||||
) -> Result<(Vec<proto::types::Entity>, u32), Error> { | ||||||||||||||||||||||||||
let (where_clause, having_clause, join_clause, bind_values) = | ||||||||||||||||||||||||||
build_composite_clause(table, model_relation_table, &composite)?; | ||||||||||||||||||||||||||
|
@@ -868,6 +893,7 @@ | |||||||||||||||||||||||||
dont_include_hashed_keys, | ||||||||||||||||||||||||||
order_by, | ||||||||||||||||||||||||||
entity_models, | ||||||||||||||||||||||||||
internal_updated_at, | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
.await?; | ||||||||||||||||||||||||||
Ok((entities, total_count)) | ||||||||||||||||||||||||||
|
@@ -1036,6 +1062,7 @@ | |||||||||||||||||||||||||
query.dont_include_hashed_keys, | ||||||||||||||||||||||||||
order_by, | ||||||||||||||||||||||||||
query.entity_models, | ||||||||||||||||||||||||||
query.internal_updated_at, | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
.await? | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
@@ -1059,6 +1086,7 @@ | |||||||||||||||||||||||||
query.dont_include_hashed_keys, | ||||||||||||||||||||||||||
order_by, | ||||||||||||||||||||||||||
query.entity_models, | ||||||||||||||||||||||||||
query.internal_updated_at, | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
.await? | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
@@ -1073,6 +1101,7 @@ | |||||||||||||||||||||||||
query.dont_include_hashed_keys, | ||||||||||||||||||||||||||
order_by, | ||||||||||||||||||||||||||
query.entity_models, | ||||||||||||||||||||||||||
query.internal_updated_at, | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
.await? | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
@@ -1087,6 +1116,7 @@ | |||||||||||||||||||||||||
query.dont_include_hashed_keys, | ||||||||||||||||||||||||||
order_by, | ||||||||||||||||||||||||||
query.entity_models, | ||||||||||||||||||||||||||
query.internal_updated_at, | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
.await? | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
@@ -1101,6 +1131,7 @@ | |||||||||||||||||||||||||
query.dont_include_hashed_keys, | ||||||||||||||||||||||||||
order_by, | ||||||||||||||||||||||||||
query.entity_models, | ||||||||||||||||||||||||||
query.internal_updated_at, | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
.await? | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here there's a potential speedup if we can trust the
updated_at
that is inside theentities
table. Which could avoid having thisWHERE
clause added for each models.