-
Notifications
You must be signed in to change notification settings - Fork 1
feat: Add reset() method, gRPC keep-alive, and transport resilience #40
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
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
042afe0
fix: Use gRPC DnsNameResolver for periodic DNS re-resolution
phillipleblanc 72a28ba
feat: Add reset() method, gRPC keep-alive, and transport resilience
lukekim 7724c13
Merge remote-tracking branch 'origin/trunk' into phillipleblanc/fix-d…
lukekim ce5eb54
fix: Resolve merge conflicts and fix TimeUnit ambiguity
lukekim beea47a
fix: Ensure FlightStream is closed after query in ResetTest
lukekim d8c2328
chore: Add CI quality checks, address PR review comments
lukekim 55ea00e
chore: Add permissions block to quality CI job
lukekim da8fdd8
fix: Add SpotBugs exclusion filter and synchronize queryInternal method
lukekim 9aed5e0
perf: Use snapshot-under-lock in queryInternal for concurrent query t…
lukekim 522c037
perf: Add HTTP connect timeout and double-checked locking for ADBC init
lukekim 137d129
chore: Cap gRPC inbound message size at ~2 GiB and metadata at 16 MiB
lukekim 1718068
perf: Fix medium-priority performance issues (#5-#8)
lukekim 947bb51
fix: Address PR review comments (round 3)
lukekim d8d736a
fix: Remove outdated commit message template
lukekim c8fa9a1
fix: Address PR review comments (round 4)
lukekim 6f55f6c
fix: Fix CI failures - SpotBugs exclusion, integration test tables, r…
phillipleblanc 5a464d8
fix: Address Copilot review comments
phillipleblanc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <!-- | ||
| SpotBugs exclusion filter for pre-existing findings. | ||
| These are findings in code that predates the introduction of SpotBugs. | ||
| They should be addressed in follow-up PRs. | ||
| --> | ||
| <FindBugsFilter> | ||
| <!-- Example code: dead stores are intentional (demonstrating all param types) --> | ||
| <Match> | ||
| <Package name="ai.spice.example"/> | ||
|
lukekim marked this conversation as resolved.
|
||
| <Bug pattern="DLS_DEAD_LOCAL_STORE"/> | ||
| </Match> | ||
|
|
||
| <!-- Example code: rough constants like 3.14 are intentional demo values for float params --> | ||
| <Match> | ||
| <Package name="ai.spice.example"/> | ||
| <Bug pattern="CNT_ROUGH_CONSTANT_VALUE"/> | ||
| </Match> | ||
|
|
||
|
lukekim marked this conversation as resolved.
|
||
| <!-- Config: dead store in getUserAgent() --> | ||
| <Match> | ||
| <Class name="ai.spice.Config"/> | ||
| <Bug pattern="DLS_DEAD_LOCAL_STORE"/> | ||
| </Match> | ||
|
|
||
| <!-- HeaderAuthMiddlewareFactory: internal representation exposure (by design, internal class) --> | ||
| <Match> | ||
| <Class name="ai.spice.HeaderAuthMiddlewareFactory"/> | ||
| <Bug pattern="EI_EXPOSE_REP2"/> | ||
| </Match> | ||
|
|
||
| <!-- RefreshOptions: public fields are part of the public API --> | ||
| <Match> | ||
| <Class name="ai.spice.RefreshOptions"/> | ||
| <Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE"/> | ||
| </Match> | ||
|
|
||
| <!-- Constructor-throw warnings: these constructors intentionally validate/fail early --> | ||
| <Match> | ||
|
lukekim marked this conversation as resolved.
|
||
| <Class name="ai.spice.SpiceClient"/> | ||
| <Bug pattern="CT_CONSTRUCTOR_THROW"/> | ||
| </Match> | ||
| <Match> | ||
| <Class name="ai.spice.SpiceClientBuilder"/> | ||
| <Bug pattern="CT_CONSTRUCTOR_THROW"/> | ||
| </Match> | ||
|
lukekim marked this conversation as resolved.
|
||
| </FindBugsFilter> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.