-
Notifications
You must be signed in to change notification settings - Fork 11
feat(node-sdk): add configurable exit event flushing #311
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
12 commits
Select commit
Hold shift + click to select a range
0acd01a
feat(node-sdk): add configurable exit event flushing
pavkam 5d99468
test(node-sdk): add offline mode tests for BucketClient
pavkam 1388dea
whoops: tried to over-optimize
pavkam 4a71ced
Merge branch 'main' into flush-on-terminate
pavkam 81ec58c
feat(node-sdk): add promise timeout utility function
pavkam 39da372
refactor(node-sdk): simplify event flushing timeout handling
pavkam 1e11c48
refactor(node-sdk): sort imports in test and flusher files
pavkam b1684eb
docs(node-sdk): remove manual flush handling example from README
pavkam fc9d28c
chore(node-sdk): remove unused host configuration and add dotenv import
pavkam ecea7a6
fix(node-sdk): adjust process exit code for signal handling
pavkam 1ffec9b
Merge branch 'main' into flush-on-terminate
pavkam 3050f4f
chore(node-sdk): bump package version to 1.5.3
pavkam 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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| import "dotenv/config"; | ||
|
|
||
| import bucket from "./bucket"; | ||
| import app from "./app"; | ||
|
|
||
|
|
||
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,62 @@ | ||
| import { constants } from "os"; | ||
|
|
||
| import { END_FLUSH_TIMEOUT_MS } from "./config"; | ||
| import { TimeoutError, withTimeout } from "./utils"; | ||
|
|
||
| type Callback = () => Promise<void>; | ||
|
|
||
| const killSignals = ["SIGINT", "SIGTERM", "SIGHUP", "SIGBREAK"] as const; | ||
|
|
||
| export function subscribe( | ||
| callback: Callback, | ||
| timeout: number = END_FLUSH_TIMEOUT_MS, | ||
| ) { | ||
| let state: boolean | undefined; | ||
|
|
||
| const wrappedCallback = async () => { | ||
| if (state !== undefined) { | ||
| return; | ||
| } | ||
|
|
||
| state = false; | ||
|
|
||
| try { | ||
| await withTimeout(callback(), timeout); | ||
| } catch (error) { | ||
| if (error instanceof TimeoutError) { | ||
| console.error( | ||
| "[Bucket SDK] Timeout while flushing events on process exit.", | ||
| ); | ||
| } else { | ||
| console.error( | ||
| "[Bucket SDK] An error occurred while flushing events on process exit.", | ||
| error, | ||
| ); | ||
| } | ||
| } | ||
|
|
||
| state = true; | ||
| }; | ||
|
|
||
| killSignals.forEach((signal) => { | ||
| const hasListeners = process.listenerCount(signal) > 0; | ||
|
|
||
| if (hasListeners) { | ||
| process.prependListener(signal, wrappedCallback); | ||
| } else { | ||
| process.on(signal, async () => { | ||
| await wrappedCallback(); | ||
| process.exit(0x80 + constants.signals[signal]); | ||
| }); | ||
| } | ||
| }); | ||
|
|
||
| process.on("beforeExit", wrappedCallback); | ||
| process.on("exit", () => { | ||
| if (!state) { | ||
| console.error( | ||
| "[Bucket SDK] Failed to finalize the flushing of events on process exit.", | ||
| ); | ||
| } | ||
| }); | ||
| } |
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
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.