Skip to content

fix ssl negotiation error #18

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

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ ADD ./ /opt/kafka-websocket

WORKDIR /opt/kafka-websocket

RUN mvn package
RUN mvn -Dhttps.protocols=TLSv1.2 package

CMD java -jar target/kafka-websocket-0.8.2-SNAPSHOT-shaded.jar

9 changes: 7 additions & 2 deletions conf/consumer.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
group.id=kafka-websocket
zookeeper.connect=localhost:2181
zookeeper.connect=zookeeper:2181
serializer.class=kafka.serializer.DefaultEncoder
key.serializer.class=kafka.serializer.StringEncoder
key.serializer.class=kafka.serializer.StringEncoder
message.max.bytes=200000000
fetch.max.bytes=200000000
max.message.bytes=200000000
max.request.size=200000000
compression.type=gzip
4 changes: 3 additions & 1 deletion conf/producer.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
bootstrap.servers=localhost:9092
bootstrap.servers=kafka:9092
acks=1
compression.type=gzip
max.request.size=200000000