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

[improve][broker] PIP-192: Implement load data store #6

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
62a2058
[improve][sec] Suppress false positive OWASP reports (#19105)
tisonkun Dec 29, 2022
c13f389
[refactor] Remove docs from the main repo (#19100)
tisonkun Dec 29, 2022
c611a1a
[fix][broker] Fix estimateBacklogFromPosition if position is greater …
AnonHxy Dec 30, 2022
ed33fb3
[fix][ci] Fix pulsar shell license issue (#19101)
Technoboy- Dec 30, 2022
36cff70
[fix][cli] Fix wrong description of pulsar-admin flags (#19108)
maxsxu Dec 30, 2022
e194c01
[improve][admin,broker] Add option to unloadNamespaceBundle with bund…
vineeth1995 Dec 31, 2022
b3f3e0b
[fix][admin] Keep new inputSpecs when updating sink configs (#19082)
aymkhalil Jan 2, 2023
1736396
[fix][sec] Upgrade jettison to 1.5.3 (#19038)
nicoloboschi Jan 2, 2023
f912fb3
[fix][build] Resolve OWASP Dependency Check false positives (#19120)
lhotari Jan 2, 2023
9ec1d07
[feat][broker][PIP-195]Implement Filter out all delayed messages and …
coderzc Jan 3, 2023
a2ec02d
[cleanup][broker] Fix ClusterDataImpl#clone and add test (#19126)
michaeljmarshall Jan 4, 2023
3bb93cb
[fix][broker][PIP-195] fix cursor skip read (#19124)
coderzc Jan 4, 2023
8790ed1
[fix][monitor] Fix the partitioned publisher topic stat aggregation b…
heesung-sn Jan 4, 2023
a6516a8
[fix][broker] Topic could be in fenced state forever if deletion fail…
nicoloboschi Jan 4, 2023
3afc291
[improve][schema] Do not print error log with stacktrace for 404 (#19…
codelipenghui Jan 5, 2023
4b8f447
[feat][broker][PIP-195] Implement BucketDelayedDeliveryTrackerFactory…
coderzc Jan 5, 2023
593fcb8
[improve][io] Elasticsearch sink: Support loading config from secrets…
Jan 5, 2023
4028ad3
[improve][ci] Improve CI ssh access in forks, don't fail build if set…
lhotari Jan 5, 2023
c862356
[revert] "[fix][broker] change name limitTime to limitTimeInSec (#190…
michaeljmarshall Jan 8, 2023
badd69b
[fix][broker] fix ttl expiration block due to no-recoverable exceptio…
aloyszhang Jan 8, 2023
96f8262
[improve][broker] Add oshi library to help control OS resources. (#18…
mattisonchao Jan 9, 2023
56a7b89
[fix][broker] Reject create non existent persistent partitions. (#19086)
mattisonchao Jan 9, 2023
b05fddb
[improve][admin]internalGetMessageById shouldn't be allowed on partit…
gaozhangmin Jan 9, 2023
6335fa1
[cleanup][txn] Use MLTransactionMetadataStore in integration tests (#…
nicoloboschi Jan 9, 2023
e829672
[improve][broker] Add parameter check for create/update cluster. (#19…
mattisonchao Jan 9, 2023
dbd6a14
Implement load data store for new load manager
Demogorgon314 Dec 6, 2022
a1bd8c4
Add test group
Demogorgon314 Dec 13, 2022
3b8e695
Fix compile error
Demogorgon314 Jan 10, 2023
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
Next Next commit
[fix][cli] Fix wrong description of pulsar-admin flags (apache#19108)
Signed-off-by: Max Xu <maxs.xu@gmail.com>
Motivation
pulsar-admin sources list has the wrong parameters description.
Modifications
Should be pulsar-admin sources list --namespace <The source's namespace> --tenant <The source's tenant>
  • Loading branch information
maxsxu authored Dec 30, 2022
commit 36cff70575745f98c7fb4f3a345d21404f5504fc
Original file line number Diff line number Diff line change
Expand Up @@ -618,10 +618,10 @@ void runCmd() throws Exception {
*/
@Parameters(commandDescription = "List all running Pulsar IO source connectors")
protected class ListSources extends BaseCommand {
@Parameter(names = "--tenant", description = "The sink's tenant")
@Parameter(names = "--tenant", description = "The source's tenant")
protected String tenant;

@Parameter(names = "--namespace", description = "The sink's namespace")
@Parameter(names = "--namespace", description = "The source's namespace")
protected String namespace;

@Override
Expand Down