forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Correct batch memory limit #7
Closed
Closed
Conversation
This file contains 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
5 tasks
AnonHxy
force-pushed
the
correct_batch_mem
branch
2 times, most recently
from
October 9, 2022 09:18
a37be35
to
32ef485
Compare
AnonHxy
pushed a commit
that referenced
this pull request
Oct 10, 2022
* [fxi][doc] Rewrite the steps of docker-deploy ### Motivation The old implementation is incompletely. ### Modification Rewrite it.
…ered when using batch receive and trigger timeout. (apache#17318)
* [fix][doc] SVG files and references Signed-off-by: tison <[email protected]> Co-authored-by: Dave Duggins <[email protected]> * fix one more broken syntax on the fly Signed-off-by: tison <[email protected]> Signed-off-by: tison <[email protected]> Co-authored-by: Dave Duggins <[email protected]>
…18002) * [fix][CI] Use GitHub Actions actions/checkout@v3 - Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ * Also upgrade actions/cache and actions/setup-java
…Codecov (apache#17382) * [improve][ci] Generate jacoco code coverage reports and upload to CodeCov * [improve][ci] Generate jacoco code coverage reports and upload to CodeCov * [improve][ci] Generate jacoco code coverage reports and upload to CodeCov * [improve][ci] Generate jacoco code coverage reports and upload to CodeCov * Add codecov configuration file * Update codecov.yml Co-authored-by: tison <[email protected]> * Change codecov comment behaviour configuration to default to reduce the email notification times. * Allow CodeCov upload report job can be failure * Include only apache/pulsar class to generate jacoco tests * Include only apache/pulsar class to generate jacoco tests * Exclude class files in META-INF and skip pulsar-all-docker-image in test_group_other * Remove generate jacoco reports step in pulsar-ci Co-authored-by: tison <[email protected]>
…h insertMode=UPSERT (apache#17950)
* [fix][bookie] Correctly handle list configuration values * Remove unused import ### Motivation When the `metadataServiceUri` or the `zkServers` configuration for `BookieRackAffinityMapping` is provided as a comma delimited list, it is automatically parsed into an ArrayList by the configuration class because the Bookkeeper configuration class relies on the defaults in the `org.apache.commons.configuration.AbstractConfiguration` class. Here is a sample error: ``` 2022-07-29T19:25:43,437+0000 [main] ERROR org.apache.bookkeeper.client.RackawareEnsemblePlacementPolicyImpl - Failed to initialize DNS Resolver org.apache.pulsar.zookeeper.ZkBookieRackAffinityMapping, used default subnet resolver java.lang.ClassCastException: class java.util.ArrayList cannot be cast to class java.lang.String (java.util.ArrayList and java.lang.String are in module java.base of loader 'bootstrap') ``` Also, see apache#6349 and apache#6343 for context. ### Modifications * Move the `castToString` method out to a shared class. * Use the `castToString` method to safely get the configuration value. ### Verifying this change This PR includes a test. ### Documentation - [x] `doc-not-needed`
…che#17903) Co-authored-by: leolinchen <[email protected]>
…QueueFull enabled (apache#17795)
…#16225) ### Motivation In apache#13950, we switched an error log to an info log. @hsaputra requested on Pulsar Slack we use warn level so that alerts still fire in for the case when the topic is not found. ### Modifications * Replace `info` with `warn` when topic is not found in the `ServerCnx` class. - [x] `doc-not-needed`
AnonHxy
force-pushed
the
correct_batch_mem
branch
from
October 12, 2022 08:10
32ef485
to
ed4b8f1
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Upstream PR apache#17936