Skip to content

Sketch Environment/Producer/Consumer API #1

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 46 commits into from
Aug 6, 2020
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
93cd259
Sketch producer API
acogoluegnes Jul 9, 2020
8c9d2b7
Merge branch 'master' into producer-spike
acogoluegnes Jul 10, 2020
ba18b3b
Introduce Environment API
acogoluegnes Jul 15, 2020
1087abf
Add URI(s) parameters to build Environment
acogoluegnes Jul 17, 2020
e8f874d
Merge branch 'master' into producer-spike
acogoluegnes Jul 17, 2020
18390f6
Remove some publish methods in Client
acogoluegnes Jul 17, 2020
96dfc24
Organize classes between API/implementation packages
acogoluegnes Jul 17, 2020
be54e5c
Introduce Consumer API
acogoluegnes Jul 20, 2020
80f64e9
Handle publishing error in producer
acogoluegnes Jul 20, 2020
7baa62c
Support stream creation/deletion in environment
acogoluegnes Jul 20, 2020
bc5e567
Document Environment API
acogoluegnes Jul 21, 2020
c6b2d68
Document Producer API
acogoluegnes Jul 21, 2020
d8cc437
Document Consumer API
acogoluegnes Jul 21, 2020
91f52ab
Publish temp API documentation
acogoluegnes Jul 21, 2020
c5c45e2
Support sub-entry batching in producer
acogoluegnes Jul 27, 2020
d8cf412
Synchronize message accumulator access
acogoluegnes Jul 27, 2020
afb7203
Limit number of outstanding publish confirms
acogoluegnes Jul 27, 2020
ea960d0
Document maxUnconfirmedMessages and subEntrySize
acogoluegnes Jul 27, 2020
07f8681
Recover locator connection in environment
acogoluegnes Jul 28, 2020
504a68b
Close producers and consumers in environment
acogoluegnes Jul 28, 2020
7d3bea5
Document environment settings
acogoluegnes Jul 29, 2020
9e2300e
Use new API for sample application
acogoluegnes Jul 29, 2020
a0771a2
Use Consumer in performance tool
acogoluegnes Jul 29, 2020
147b8d5
Downsample latency calculation in performance tool
acogoluegnes Jul 29, 2020
b41aa94
Deal with stream unavailibility in consumer
acogoluegnes Jul 30, 2020
4bc6744
Add delay before consumer re-assignment after metadata update
acogoluegnes Jul 31, 2020
87b866d
Add unit tests for DefaultClientSubscriptions
acogoluegnes Jul 31, 2020
c5e3736
Unit test DefaultClientSubscriptions sub/unsub
acogoluegnes Jul 31, 2020
a4e5abe
Update data structure before subscription
acogoluegnes Jul 31, 2020
eae2887
More DefaultClientSubscriptions unit tests
acogoluegnes Jul 31, 2020
6782fa8
More DefaultClientSubscriptions unit tests
acogoluegnes Jul 31, 2020
cd5cf2f
Schedule candidates lookup on metadata update
acogoluegnes Aug 3, 2020
cc0806e
Create async retry utility for metadata update
acogoluegnes Aug 3, 2020
f0ded28
More DefaultClientSubscriptions unit tests
acogoluegnes Aug 3, 2020
c4fea33
Use async retry utility for locator recovery
acogoluegnes Aug 3, 2020
53ea1d9
Add some Environment unit tests
acogoluegnes Aug 4, 2020
5efe862
Handle connection loss in consumer
acogoluegnes Aug 5, 2020
83c3c12
Rename RecoveryBackOffDelayPolicy to BackOffDelayPolicy
acogoluegnes Aug 5, 2020
fe91c97
Add node failure test for consumer
acogoluegnes Aug 6, 2020
6afab81
Add unit for consumer connection recovery
acogoluegnes Aug 6, 2020
ea52a49
Disable a couple of recovery tests
acogoluegnes Aug 6, 2020
a6bea16
Remove Client documentation
acogoluegnes Aug 6, 2020
b3d4bc0
Improve wording in documentation
acogoluegnes Aug 6, 2020
0190f1d
Add some Javadoc to Client
acogoluegnes Aug 6, 2020
a2f2394
Kill connection instead of stopping node in test
acogoluegnes Aug 6, 2020
298826e
Publish documentation to snapshot directory
acogoluegnes Aug 6, 2020
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
Prev Previous commit
Publish documentation to snapshot directory
  • Loading branch information
acogoluegnes committed Aug 6, 2020
commit 298826ef213dbd2f1c4f92f49ce9bb416bdedc76
6 changes: 3 additions & 3 deletions publish-documentation-to-github-pages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ MESSAGE=$(git log -1 --pretty=%B)
git remote set-branches origin 'gh-pages'
git fetch -v
git checkout gh-pages
mkdir -p api-spike/htmlsingle
cp target/generated-docs/index.html api-spike/htmlsingle
git add api-spike/
mkdir -p snapshot/htmlsingle
cp target/generated-docs/index.html snapshot/htmlsingle
git add snapshot/
git commit -m "$MESSAGE"
git push origin gh-pages
git checkout master