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][misc] DO NOT MERGE #288

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
64ead41
[improve][ci] Migrate from Gradle Enterprise to Develocity (#22880)
lhotari Jun 8, 2024
65576f9
[fix] Remove blocking calls from BookieRackAffinityMapping (#22846)
merlimat Jun 5, 2024
4e98aa9
[fix][cli] Fix Pulsar standalone shutdown - bkCluster wasn't closed (…
lhotari Jun 7, 2024
40ef1ae
[fix][cli] Fix Pulsar standalone "--wipe-data" (#22885)
lhotari Jun 10, 2024
b984e6d
[improve] Upgrade IPAddress to 5.5.0 (#22886)
merlimat Jun 10, 2024
5c834f2
[fix][misc] Topic name from persistence name should decode local name…
Shawyeok Jun 11, 2024
0337bf6
[improve][broker] Optimize PersistentTopic.getLastDispatchablePositio…
dao-jun Jun 11, 2024
f17a6b2
[improve][broker] Include runtime dependencies in server distribution…
dragosvictor Jan 31, 2024
fe11f9a
[fix][broker][branch-3.0] The topic might reference a closed ledger (…
shibd Jun 13, 2024
e2c4f32
[fix][cli] Fix the pulsar-daemon parameter passthrough syntax (#22905)
coderzc Jun 14, 2024
6091cec
[improve][broker] Include runtime dependencies in server distribution…
dragosvictor Jan 31, 2024
a7bcb02
[improve][misc] Include native epoll library for Netty for arm64 (#22…
lhotari Mar 21, 2024
28fe36c
[fix][broker] Fix topic status for oldestBacklogMessageAgeSeconds con…
shibd Jun 14, 2024
568be99
fix: cannot find symbol from cherry-pick 73b50e
shibd Jun 18, 2024
4fab68d
[fix] [client] PIP-344 Do not create partitioned metadata when callin…
poorbarcode May 23, 2024
4c1f8e2
[improve] [client] PIP-344 support feature flag supportsGetPartitione…
poorbarcode Jun 6, 2024
63e2dcc
[fix] [broker] response not-found error if topic does not exist when …
poorbarcode Jun 17, 2024
134621c
[fix][client] fix producer/consumer perform lookup for migrated topic…
rdhabalia Oct 14, 2023
5775898
[fix][test] Fix thread leaks in Managed Ledger tests and remove dupli…
lhotari Oct 24, 2023
d733598
[fix] [broker] Messages lost on the remote cluster when using topic l…
poorbarcode Jun 19, 2024
3dd8e63
[fix][fn] Enable optimized Netty direct byte buffer support for Pulsa…
lhotari Jun 17, 2024
71e6d02
[fix] [proxy] Add missing parameter in newPartitionMetadataRequest call
nikhil-ctds Jun 24, 2024
ab293a2
[fix][test] Fix TableViewBuilderImplTest NPE and infinite loop (#22924)
lhotari Jun 17, 2024
0d08b5b
[fix] [client] Fix resource leak in Pulsar Client since HttpLookupSer…
poorbarcode Jun 18, 2024
00a6eb0
[fix] [broker] broker log a full thread dump when a deadlock is detec…
yyj8 Jun 20, 2024
befa38d
[fix][fn] Support compression type and crypto config for all producer…
lhotari Jun 20, 2024
c373025
[fix][broker] Check the markDeletePosition and calculate the backlog …
nodece Jun 20, 2024
47caa79
[improve][broker] Optimize `ConcurrentOpenLongPairRangeSet` by Roarin…
dao-jun Jun 20, 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
Prev Previous commit
Next Next commit
[improve][broker] Include runtime dependencies in server distribution (
…apache#22001)

(cherry picked from commit 57025bc)
(cherry picked from commit 3670515)
  • Loading branch information
dragosvictor authored and nikhil-ctds committed Jun 17, 2024
commit f17a6b212a8e9cc69692ae1ee57a3db509a2f9d9
2 changes: 1 addition & 1 deletion distribution/server/src/assemble/LICENSE.bin.txt
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,7 @@ The Apache Software License, Version 2.0
- io.reactivex.rxjava3-rxjava-3.0.1.jar
* RoaringBitmap
- org.roaringbitmap-RoaringBitmap-0.9.44.jar
- org.roaringbitmap-shims-0.9.44.jar

BSD 3-clause "New" or "Revised" License
* Google auth library
Expand Down Expand Up @@ -537,7 +538,6 @@ Protocol Buffers License

CDDL-1.1 -- ../licenses/LICENSE-CDDL-1.1.txt
* Java Annotations API
- javax.annotation-javax.annotation-api-1.3.2.jar
- com.sun.activation-javax.activation-1.2.0.jar
- javax.xml.bind-jaxb-api-2.3.1.jar
* Java Servlet API -- javax.servlet-javax.servlet-api-3.1.0.jar
Expand Down
9 changes: 6 additions & 3 deletions distribution/server/src/assemble/bin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
<dependencySet>
<outputDirectory>lib</outputDirectory>
<unpack>false</unpack>
<scope>compile</scope>
<scope>runtime</scope>
<useProjectArtifact>false</useProjectArtifact>
<!-- Include 'groupId' in the dependencies Jar names to better identify
the provenance of the jar -->
Expand All @@ -135,12 +135,15 @@
<excludes>
<exclude>com.datastax.oss:pulsar-functions-runtime-all</exclude>

<exclude>org.projectlombok:lombok</exclude>

<!-- prevent adding pulsar-functions-api-examples in lib -->
<exclude>com.datastax.oss:pulsar-functions-api-examples</exclude>
<!-- prevent adding any distribution .tar.gz files in lib -->
<exclude>*:tar.gz</exclude>
<!-- prevent adding annotation libraries -->
<exclude>org.codehaus.mojo:animal-sniffer-annotations</exclude>
<exclude>com.google.android:annotations</exclude>
<!-- Needed only in the pulsar-shell distro only -->
<exclude>net.java.dev.jna:jna</exclude>
</excludes>
</dependencySet>
</dependencySets>
Expand Down