Skip to content
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: Add an API to allow for querying events under a subscription with additional filtering #1452

Merged
merged 29 commits into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
bd63fc2
feat: add new api route for querying events under subscription
SamMayWork Jan 19, 2024
016f954
feat: wipro
SamMayWork Jan 22, 2024
9382bc5
test: coverage
SamMayWork Jan 22, 2024
6522970
test: coverage
SamMayWork Jan 22, 2024
b8d97f9
test: coverage
SamMayWork Jan 22, 2024
d9c58b2
Merge branch 'main' of github.com:hyperledger/firefly into query-api
SamMayWork Jan 23, 2024
229d47f
fix: restore settings.json
SamMayWork Jan 23, 2024
d00cc05
fix: restore settings.json
SamMayWork Jan 23, 2024
0a832dd
fix: restore settings.json
SamMayWork Jan 23, 2024
998d18e
fix: tuning
SamMayWork Jan 23, 2024
0d91729
test: tidy tidy tidy
SamMayWork Jan 23, 2024
de6d46b
refactor: push down the filtering code
SamMayWork Jan 25, 2024
7e22a2c
refactor: configuration tuning for index max count
SamMayWork Jan 25, 2024
33294f1
refactor: do filtering properly, and test coverage
SamMayWork Jan 25, 2024
120b559
fix: various small fixes
SamMayWork Jan 25, 2024
52c191e
fix: make API queries less restrictive
SamMayWork Jan 25, 2024
80ddde2
fix: change the swagger to reflect how the API works
SamMayWork Jan 26, 2024
9e6c0fd
fix: start to work through review comments
SamMayWork Feb 7, 2024
8e49a71
refactor: tidy up
SamMayWork Feb 8, 2024
9733406
test: coverage
SamMayWork Feb 8, 2024
c5c7a7c
fix: make configuration options make sense in the new world
SamMayWork Feb 8, 2024
68c6a55
docs: field descriptions
SamMayWork Feb 8, 2024
41e165f
fix: default values for sequence
SamMayWork Feb 8, 2024
a08f80b
docs: reference
SamMayWork Feb 8, 2024
26ee14d
fix: performance tuning for SQL
SamMayWork Feb 8, 2024
def007f
test: coverage and shuffling
SamMayWork Feb 8, 2024
b6cdd32
fix: literally make it 6x faster
SamMayWork Feb 8, 2024
0395957
fix: make it so
SamMayWork Feb 9, 2024
45fc854
fix: wiped away some pretty important functionality, oops.
SamMayWork Feb 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/reference/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -1390,6 +1390,12 @@ nav_order: 2
|batchSize|Default read ahead to enable for subscriptions that do not explicitly configure readahead|`int`|`50`
|batchTimeout|Default batch timeout|`int`|`50ms`

## subscription.events

|Key|Description|Type|Default Value|
|---|-----------|----|-------------|
|maxScanLength|The maximum number of events a search for historical events matching a subscription will index from the database|`int`|`1000`

## subscription.retry

|Key|Description|Type|Default Value|
Expand Down
Loading
Loading