Skip to content

Commit 95ce2ec

Browse files
committed
Merge branch 'master' into peter/refactor-access-models
2 parents d8f8556 + 9c8f9c7 commit 95ce2ec

File tree

354 files changed

+10647
-4870
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

354 files changed

+10647
-4870
lines changed

.github/workflows/flaky-test-monitor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
matrix:
5656
targets: ${{ fromJSON(needs.create-dynamic-test-matrix.outputs.dynamic-matrix)}}
5757
# need to set image explicitly due to GitHub logging issue as described in https://github.com/onflow/flow-go/pull/3087#issuecomment-1234383202
58-
runs-on: ubuntu-20.04
58+
runs-on: ubuntu-latest
5959
steps:
6060
- name: Checkout repo
6161
uses: actions/checkout@v4

access/api.go

+9-32
Original file line numberDiff line numberDiff line change
@@ -209,44 +209,21 @@ type API interface {
209209
// If invalid parameters will be supplied SubscribeBlockDigestsFromLatest will return a failed subscription.
210210
SubscribeBlockDigestsFromLatest(ctx context.Context, blockStatus flow.BlockStatus) subscription.Subscription
211211

212-
// SubscribeTransactionStatusesFromStartBlockID subscribes to transaction status updates for a given transaction ID.
213-
// Monitoring begins from the specified block ID. The subscription streams status updates until the transaction
214-
// reaches a final state (TransactionStatusSealed or TransactionStatusExpired). When the transaction reaches one of
215-
// these final statuses, the subscription will automatically terminate.
212+
// SubscribeTransactionStatuses subscribes to transaction status updates for a given transaction ID. Monitoring starts
213+
// from the latest block to obtain the current transaction status. If the transaction is already in the final state
214+
// ([flow.TransactionStatusSealed] or [flow.TransactionStatusExpired]), all statuses will be prepared and sent to the client
215+
// sequentially. If the transaction is not in the final state, the subscription will stream status updates until the transaction
216+
// reaches the final state. Once a final state is reached, the subscription will automatically terminate.
216217
//
217218
// Parameters:
218-
// - ctx: The context to manage the subscription's lifecycle, including cancellation.
219-
// - txID: The identifier of the transaction to monitor.
220-
// - startBlockID: The block ID from which to start monitoring.
221-
// - requiredEventEncodingVersion: The version of event encoding required for the subscription.
222-
SubscribeTransactionStatusesFromStartBlockID(ctx context.Context, txID flow.Identifier, startBlockID flow.Identifier, requiredEventEncodingVersion entities.EventEncodingVersion) subscription.Subscription
223-
224-
// SubscribeTransactionStatusesFromStartHeight subscribes to transaction status updates for a given transaction ID.
225-
// Monitoring begins from the specified block height. The subscription streams status updates until the transaction
226-
// reaches a final state (TransactionStatusSealed or TransactionStatusExpired). When the transaction reaches one of
227-
// these final statuses, the subscription will automatically terminate.
228-
//
229-
// Parameters:
230-
// - ctx: The context to manage the subscription's lifecycle, including cancellation.
231-
// - txID: The unique identifier of the transaction to monitor.
232-
// - startHeight: The block height from which to start monitoring.
233-
// - requiredEventEncodingVersion: The version of event encoding required for the subscription.
234-
SubscribeTransactionStatusesFromStartHeight(ctx context.Context, txID flow.Identifier, startHeight uint64, requiredEventEncodingVersion entities.EventEncodingVersion) subscription.Subscription
235-
236-
// SubscribeTransactionStatusesFromLatest subscribes to transaction status updates for a given transaction ID.
237-
// Monitoring begins from the latest block. The subscription streams status updates until the transaction
238-
// reaches a final state (TransactionStatusSealed or TransactionStatusExpired). When the transaction reaches one of
239-
// these final statuses, the subscription will automatically terminate.
240-
//
241-
// Parameters:
242-
// - ctx: The context to manage the subscription's lifecycle, including cancellation.
219+
// - ctx: Context to manage the subscription's lifecycle, including cancellation.
243220
// - txID: The unique identifier of the transaction to monitor.
244221
// - requiredEventEncodingVersion: The version of event encoding required for the subscription.
245-
SubscribeTransactionStatusesFromLatest(ctx context.Context, txID flow.Identifier, requiredEventEncodingVersion entities.EventEncodingVersion) subscription.Subscription
222+
SubscribeTransactionStatuses(ctx context.Context, txID flow.Identifier, requiredEventEncodingVersion entities.EventEncodingVersion) subscription.Subscription
246223

247-
// SendAndSubscribeTransactionStatuses sends a transaction to the network and subscribes to its status updates.
224+
// SendAndSubscribeTransactionStatuses sends a transaction to the execution node and subscribes to its status updates.
248225
// Monitoring begins from the reference block saved in the transaction itself and streams status updates until the transaction
249-
// reaches a final state (TransactionStatusSealed or TransactionStatusExpired). Once a final status is reached, the subscription
226+
// reaches the final state ([flow.TransactionStatusSealed] or [flow.TransactionStatusExpired]). Once the final status has been reached, the subscription
250227
// automatically terminates.
251228
//
252229
// Parameters:

access/mock/api.go

+3-43
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

admin/README.md

+11
Original file line numberDiff line numberDiff line change
@@ -120,3 +120,14 @@ curl localhost:9002/admin/run_command -H 'Content-Type: application/json' -d '{"
120120
```
121121
curl localhost:9002/admin/run_command -H 'Content-Type: application/json' -d '{"commandName": "backfill-tx-error-messages", "data": { "start-height": 340, "end-height": 343, "execution-node-ids":["ec7b934df29248d574ae1cc33ae77f22f0fcf96a79e009224c46374d1837824e", "8cbdc8d24a28899a33140cb68d4146cd6f2f6c18c57f54c299f26351d126919e"] }}'
122122
```
123+
124+
### Trigger chunk data pack pebble database checkpoint
125+
```
126+
curl localhost:9002/admin/run_command -H 'Content-Type: application/json' -d '{"commandName": "create-chunk-data-packs-checkpoint" }'
127+
```
128+
129+
### Trigger pebble protocol database checkpoints
130+
Useful for reading protocol state data from the checkpoints using the read-badger util without stopping the node process.
131+
```
132+
curl localhost:9002/admin/run_command -H 'Content-Type: application/json' -d '{"commandName": "create-pebble-checkpoint" }'
133+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
package storage
2+
3+
import (
4+
"context"
5+
"fmt"
6+
"path"
7+
"time"
8+
9+
"github.com/cockroachdb/pebble"
10+
"github.com/rs/zerolog/log"
11+
12+
"github.com/onflow/flow-go/admin"
13+
"github.com/onflow/flow-go/admin/commands"
14+
)
15+
16+
var _ commands.AdminCommand = (*PebbleDBCheckpointCommand)(nil)
17+
18+
// PebbleDBCheckpointCommand creates a checkpoint for pebble database for querying the data
19+
// while keeping the node alive.
20+
type PebbleDBCheckpointCommand struct {
21+
checkpointDir string
22+
dbname string // dbname is for logging purposes only
23+
pebbleDB *pebble.DB
24+
}
25+
26+
func NewPebbleDBCheckpointCommand(checkpointDir string, dbname string, pebbleDB *pebble.DB) *PebbleDBCheckpointCommand {
27+
return &PebbleDBCheckpointCommand{
28+
checkpointDir: checkpointDir,
29+
dbname: dbname,
30+
pebbleDB: pebbleDB,
31+
}
32+
}
33+
34+
func (c *PebbleDBCheckpointCommand) Handler(ctx context.Context, req *admin.CommandRequest) (interface{}, error) {
35+
log.Info().Msgf("admintool: creating %v database checkpoint", c.dbname)
36+
37+
targetDir := nextTmpFolder(c.checkpointDir)
38+
39+
log.Info().Msgf("admintool: creating %v database checkpoint at: %v", c.dbname, targetDir)
40+
41+
err := c.pebbleDB.Checkpoint(targetDir)
42+
if err != nil {
43+
return nil, admin.NewInvalidAdminReqErrorf("failed to create %v pebbledb checkpoint at %v: %w", c.dbname, targetDir, err)
44+
}
45+
46+
log.Info().Msgf("admintool: successfully created %v database checkpoint at: %v", c.dbname, targetDir)
47+
48+
return fmt.Sprintf("successfully created %v db checkpoint at %v", c.dbname, targetDir), nil
49+
}
50+
51+
func (c *PebbleDBCheckpointCommand) Validator(req *admin.CommandRequest) error {
52+
return nil
53+
}
54+
55+
func nextTmpFolder(dir string) string {
56+
// use timestamp as folder name
57+
folderName := time.Now().Format("2006-01-02_15-04-05")
58+
return path.Join(dir, folderName)
59+
}

0 commit comments

Comments
 (0)