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

[fix][broker] support peek-message for compressed and encrypted messages #23234

Merged
merged 1 commit into from
Aug 30, 2024

Conversation

rdhabalia
Copy link
Contributor

@rdhabalia rdhabalia commented Aug 28, 2024

Fixes #23233

Motivation

It fixes this issue: #23233

Currently peek-message CLI/API returns encrypted or compressed message , and user can use this CLI/API to retrieve message and metadata information for any kind of debugging. For example, if encrypted messages is failing to decrypt in consumer application and if user wants to know the encryption keys name then peek-message will help to retrieve such information.
But peek-message api/cli fails if message is encrypted and compressed , and failed with below error because broker is trying to decompress invalid message payload as client first compress and encrypt the message, and broker tried to uncompress already encrypted message.

Reason: 
--- An unexpected error occurred in the server ---

Message: offset outside destination buffer: offset=10

Stacktrace:

io.airlift.compress.MalformedInputException: offset outside destination buffer: offset=10
	at io.airlift.compress.lz4.Lz4RawDecompressor.decompress(Lz4RawDecompressor.java:112)
	at io.airlift.compress.lz4.Lz4Decompressor.decompress(Lz4Decompressor.java:93)
	at org.apache.pulsar.common.compression.CompressionCodecLZ4.decode(CompressionCodecLZ4.java:98)
	at org.apache.pulsar.broker.admin.impl.PersistentTopicsBase.generateResponseWithEntry(PersistentTopicsBase.java:2927)
	at org.apache.pulsar.broker.admin.impl.PersistentTopicsBase.internalPeekNthMessage(PersistentTopicsBase.java:2740)
	at org.apache.pulsar.broker.admin.v1.PersistentTopics.peekNthMessage(PersistentTopics.java:707)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.base/java.lang.reflect.Method.invoke(Method.java:566)

Modifications

Avoid decompressing invalid payload if message is already encrypted.

Verifying this change

  • Make sure that the change passes the CI checks.

(Please pick either of the following options)

This change is a trivial rework / code cleanup without any test coverage.

(or)

This change is already covered by existing tests, such as (please describe tests).

(or)

This change added tests and can be verified as follows:

(example:)

  • Added integration tests for end-to-end deployment with large payloads (10MB)
  • Extended integration test for recovery after broker failure

Does this pull request potentially affect one of the following parts:

If the box was checked, please highlight the changes

  • Dependencies (add or upgrade a dependency)
  • The public API
  • The schema
  • The default values of configurations
  • The threading model
  • The binary protocol
  • The REST endpoints
  • The admin CLI options
  • The metrics
  • Anything that affects deployment

Documentation

  • doc
  • doc-required
  • doc-not-needed
  • doc-complete

Matching PR in forked repository

PR in forked repository:

@rdhabalia rdhabalia self-assigned this Aug 28, 2024
@codecov-commenter
Copy link

codecov-commenter commented Aug 30, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 74.60%. Comparing base (bbc6224) to head (d16cd4d).
Report is 556 commits behind head on master.

Additional details and impacted files

Impacted file tree graph

@@             Coverage Diff              @@
##             master   #23234      +/-   ##
============================================
+ Coverage     73.57%   74.60%   +1.02%     
- Complexity    32624    33778    +1154     
============================================
  Files          1877     1924      +47     
  Lines        139502   144917    +5415     
  Branches      15299    15846     +547     
============================================
+ Hits         102638   108110    +5472     
+ Misses        28908    28548     -360     
- Partials       7956     8259     +303     
Flag Coverage Δ
inttests 27.93% <0.00%> (+3.35%) ⬆️
systests 24.61% <0.00%> (+0.29%) ⬆️
unittests 73.97% <100.00%> (+1.12%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
...pulsar/broker/admin/impl/PersistentTopicsBase.java 69.66% <100.00%> (+4.21%) ⬆️

... and 552 files with indirect coverage changes

@rdhabalia rdhabalia merged commit dccc06b into apache:master Aug 30, 2024
51 checks passed
@rdhabalia rdhabalia deleted the peek_enc branch August 30, 2024 05:26
grssam pushed a commit to grssam/pulsar that referenced this pull request Sep 4, 2024
@lhotari lhotari added this to the 4.0.0 milestone Oct 14, 2024
hanmz pushed a commit to hanmz/pulsar that referenced this pull request Feb 12, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug] Pulsar CLI is not able to peek encrypted and compressed message
4 participants