Skip to content

Conversation

@badaiaqrandista
Copy link

Rebase to openmessaging/benchmark master branch as of 2023-12-21

codelipenghui and others added 30 commits January 19, 2022 21:22
* Load balance topics on RabbitMQ nodes

* Replace isOpen() checks by catching AlreadyClosedException
… script (openmessaging#246)

* [Pulsar] Fix available zone not configured and clean up the terraform script

* Fix wrong output of zookeeper instances
* Support configuring protocol handlers and many other options

* Fix deployment failure for RedHat 8

* Fix protocol handlers not loaded

* Adjust the extra_vars.yaml

* Use the original name of deloy.yaml

* Add document for skip_journal

* Update README

* Support configuring max heap/direct memory
…ssaging#259)

* Update gRPC version for Pravega 0.12.

Signed-off-by: Andrey Koltsov <[email protected]>

* Add comment @ pom.xml
Signed-off-by: AndreyKoltsov1997 <[email protected]>
* update git repository address
* Cannot create topic with partitions in RabbitMQ, so use 1 partition for rabbitmq
Bumps [jackson-databind](https://github.com/FasterXML/jackson) from 2.9.10.8 to 2.12.6.1.
- [Release notes](https://github.com/FasterXML/jackson/releases)
- [Commits](https://github.com/FasterXML/jackson/commits)

---
updated-dependencies:
- dependency-name: com.fasterxml.jackson.core:jackson-databind
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…enmessaging#282)

* Fix license check and modify configurations for multi topics test

* Update driver-pulsar/pom.xml

Co-authored-by: Matteo Merli <[email protected]>
…messaging#277)

* Fixing infinite loop waiting for consumers to be ready

* Throw an exception when the timeout is raised when waiting for consumers to be ready
Bumps [jetty-server](https://github.com/eclipse/jetty.project) from 9.4.42.v20210604 to 10.0.10.
- [Release notes](https://github.com/eclipse/jetty.project/releases)
- [Commits](jetty/jetty.project@jetty-9.4.42.v20210604...jetty-10.0.10)

---
updated-dependencies:
- dependency-name: org.eclipse.jetty:jetty-server
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot bot and others added 23 commits October 24, 2022 10:06
Bumps commons-text from 1.9 to 1.10.0.

---
updated-dependencies:
- dependency-name: org.apache.commons:commons-text
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Configurable pulsar subscription type

* End with newline

* Reformat pulsar driver

* Support shared subscriptions
Restart

Rename for consistency
Update comment

Spotless

Pass credentials

Remove final

Typo
* Resilient resource creation

# Conflicts:
#	benchmark-framework/src/main/java/io/openmessaging/benchmark/worker/LocalWorker.java
#	driver-api/src/main/java/io/openmessaging/benchmark/driver/BenchmarkDriver.java

Resilient resource creation

# Conflicts:
#	benchmark-framework/src/main/java/io/openmessaging/benchmark/worker/LocalWorker.java
#	driver-api/src/main/java/io/openmessaging/benchmark/driver/BenchmarkDriver.java
#	driver-rabbitmq/deploy/templates/rabbitmq-quorum.yaml

License header

Missing import

spotless

* findbugs exclude
* Pulsar 2.10.2

* More version changes

Co-authored-by: Matteo Merli <[email protected]>
Bumps [testng](https://github.com/cbeust/testng) from 7.6.1 to 7.7.0.
- [Release notes](https://github.com/cbeust/testng/releases)
- [Changelog](https://github.com/cbeust/testng/blob/master/CHANGES.txt)
- [Commits](testng-team/testng@7.6.1...7.7.0)

---
updated-dependencies:
- dependency-name: org.testng:testng
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Fix failed drive-kop tests

* Fix format violation
…essaging#376)

* exclude artemis netty transitive dependency

* lint pom.xml

---------

Co-authored-by: sky.kistler <[email protected]>
* [nats] Add storage type to config

so one can test with file or memory stream.

* [nats] Add maxBytes to config

so one can prevent NATS running out of memory incase the storage type is set to "Memory"
…n-plugin:2.25.0:check (check) on project driver-rocketmq: The following files had format violations: [ERROR] src/main/java/io/openmessaging/benchmark/driver/rocketmq/RocketMQBenchmarkDriver.java' (openmessaging#399)

Co-authored-by: nuolin <[email protected]>
@cla-assistant
Copy link

cla-assistant bot commented Dec 19, 2023

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you all sign our Contributor License Agreement before we can accept your contribution.
0 out of 3 committers have signed the CLA.

❌ travisdowns
❌ StevenLuMT
❌ dependabot[bot]
You have signed the CLA already but the status is still pending? Let us recheck it.

@cla-assistant
Copy link

cla-assistant bot commented Dec 19, 2023

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you all sign our Contributor License Agreement before we can accept your contribution.
1 out of 2 committers have signed the CLA.

✅ badaiaqrandista
❌ ConfluentTools
You have signed the CLA already but the status is still pending? Let us recheck it.

travisdowns and others added 2 commits December 19, 2023 17:36
* Grow the histogram buffer if it is too small

When we serialize a histogram to a byte array, the intermediate
ByteBuffer that we pass may be too small which may result in silent
truncation of the encoded histogram.

This will manifest on the driver side as a decoding failure.

This change detects this case and grows the buffer by a
factor of 2 until it fits.

Fixes openmessaging#369.

* Add Histogram deserialization test

Add an addition test to the HistogramSerDeTest which tests that
histogram deserialization roundtrips even when the serialized size
exceeds the initial buffer.

* Fixed spotbugs warnings

---------

Co-authored-by: Matteo Merli <[email protected]>
openmessaging#394)

Bumps [com.rabbitmq:amqp-client](https://github.com/rabbitmq/rabbitmq-java-client) from 4.8.0 to 5.18.0.
- [Release notes](https://github.com/rabbitmq/rabbitmq-java-client/releases)
- [Commits](rabbitmq/rabbitmq-java-client@v4.8.0...v5.18.0)

---
updated-dependencies:
- dependency-name: com.rabbitmq:amqp-client
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.