-
Notifications
You must be signed in to change notification settings - Fork 4
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
Separate out logs into own table #79
Comments
When we create the new logs table, we need to also create a process to backfill the existing data. |
Had a meeting with Ian, Rick and Ashwin. Agreed on the following structure for a new table to hold the Log data as described below: Additionally: Add B Tree indexes for the Topic columns and Data columns Also : When we create the new logs table, we need to also create a process to backfill the existing data. |
Worked on the coding. Have to parse the Logs in the receipt next |
Created a local Logs table with the structure below using the following SQL statements: CREATE TABLE Logs ( address char(42), CREATE UNIQUE INDEX topic0_idx ON Logs (Topics0); Table "public.logs" |
Related issue: vulcanize/go-codec-dageth#25 |
We need to
|
Linking to vulcanize/statediff-migrations#7 |
Currently, logs don't have their own table and are stored in additional columns in the receipts table. It's desirable to create a separate table and IPLD schema for them, allowing for more efficient query and distribution of individual logs.
DEPENDENCY: vulcanize/go-codec-dageth#25.
After finishing vulcanize/go-codec-dageth#25 it will be known precisely how we want to represent logs as IPLD objects.
The text was updated successfully, but these errors were encountered: