oceanprotocol / ocean-subgraph

🦀 Ocean Protocol Subgraph
Apache License 2.0
19 stars 15 forks source link

[PDR][Lake] Update predictPredictions and predictSlots to feature lastEventTimestamp #760

Open idiom-bytes opened 9 months ago

idiom-bytes commented 9 months ago

Motivation

As part of Incremental Lake + Analytics we want to make it easier to fetch/build our data lake incrementally.

To do so, for [1:n_event] entity tables like predictionPredictions and predictionSlots, we introduce a new parameter lastEventTimestamp .

lastEventTimestamp

I had outlined it as Solution B (and we're still working towards having all data saved on local_lake, but I think this will still reduce a lot of steps/work).

Where the last event to be processed, updates the param like such lastEventTimestamp = max(lastEventTimestamp, newEventTimestamp)

This param can then be filtered via lastEventTimestamp_lte or lastEventTimestamp_gte and enables us to approach all of this with less work and more ease.

DoD:

idiom-bytes commented 8 months ago

Here is an example where the predcition.timestamp < payout.timestamp

Adding where clauses to each entity timestamp will work like an && clause across multiple filters (3x filtering/scan) where we really want an || clause across all timestamps, done efficiently (1x filter)

So rather than

Screenshot from 2024-01-17 08-07-10

We have 1 single param lastUpdateTimestamp to filter on, which already takes the max of whatever timestamp happened last.

idiom-bytes commented 8 months ago

One step towards improving performance is using predictPayouts as part of the predictPredictions query. This enables us to fetch all recent predictions and payouts.

Truevals however, must be fetched in a separate query.

query{
  predictPredictions(where:{ or: [{timestamp_gt:100},{payout_:{timestamp_gt:100}}]}){
    slot{
      id
    }
    user {
      id
    }
    stake
    payout{

      timestamp
      id
    }
  }
}