2020-04-20 09:21:22 UTC - Sijie Guo: You can use Flink SQL to query these
streams as well.
----
2020-04-20 09:21:33 UTC - Sijie Guo: Correct
----
2020-04-20 09:24:37 UTC - ran: @Frans Guelinckx hi, I met a problem is similar
to yours, I’m trying to fix it. Do you try the localrun mode?
----
2020-04-20 09:25:57 UTC - Frans Guelinckx: i tried that, but localrun is broken
in 2.5.0 I think. <https://github.com/apache/pulsar/issues/6239>
----
2020-04-20 09:26:54 UTC - JG: ah ok !
----
2020-04-20 09:27:22 UTC - JG: I have to query these event stream in order to
replay events in a event streaming architecture
----
2020-04-20 09:28:08 UTC - JG: btw, what is the naming convention for topics, I
have event streams that modify the state of entity ( they are persisted in
database and this is the layer part on CQRS )
----
2020-04-20 09:29:05 UTC - JG: I have an entity named: Account so I should
store all change state events in a a topic named
tenant/namespace/accounts-stream ? so If I replay all events I will "rebuild"
again the read part.
----
2020-04-20 09:41:27 UTC - rani: @Sijie Guo, any estimate on the `2.5.1` release
date?
----
2020-04-20 13:21:17 UTC - Subash Kunjupillai: Okay, in that case may I please
understand in which OS variant & version Pulsar is tested by community?
Also can I please know what is the Base OS used for Pulsar Docker image?
----
2020-04-20 13:23:29 UTC - Subash Kunjupillai: @Sijie Guo, will appreciate your
valuable thoughts on this..
----
2020-04-20 15:00:49 UTC - Sijie Guo: The vote was closed last night. @tuteng is
finalizing the post-release steps to publish the release assets.
+1 : Mike Russell, rani, matt_innerspace.io
----
2020-04-20 15:52:37 UTC - Mike Russell: I’m excited for the new release! I’ll
have to see if it rc4 + others that got iterated on for 2.5.1 now alleviate the
pain point with local pulsar function development on mac, I’m also super
excited to hear that python3.8 support is now baked in!
100 : Curtis Cook, Julius S
----
2020-04-20 17:28:31 UTC - Jove Zhong: @Jove Zhong has joined the channel
----
2020-04-20 17:40:56 UTC - Curtis Cook: This is great! Very excited for py38
----
2020-04-20 19:12:39 UTC - JG: I'm also exited :slightly_smiling_face:
----
2020-04-21 01:08:02 UTC - Frank Kelly: Probably a rookie question - Running
Pulsar in Standalone mode in a Docker container in the background, also running
my Integration tests in the same container ,but when I do I get connection
refused - any ideas
```time="2020-04-21T01:03:55Z" level=warning msg="Failed to connect to broker."
error="dial tcp 127.0.0.1:6650: connect: connection refused"
remote_addr="<pulsar://localhost:6650>"
time="2020-04-21T01:03:55Z" level=info msg="Connection closed"
remote_addr="<pulsar://localhost:6650>"
time="2020-04-21T01:03:57Z" level=info msg="Connecting to broker"
remote_addr="<pulsar://localhost:6650>"
time="2020-04-21T01:03:57Z" level=warning msg="Failed to connect to broker."
error="dial tcp 127.0.0.1:6650: connect: connection refused"
remote_addr="<pulsar://localhost:6650>"
time="2020-04-21T01:03:57Z" level=info msg="Connection closed"
remote_addr="<pulsar://localhost:6650>"
time="2020-04-21T01:04:01Z" level=info msg="Connecting to broker"
remote_addr="<pulsar://localhost:6650>"
time="2020-04-21T01:04:01Z" level=warning msg="Failed to connect to broker."
error="dial tcp 127.0.0.1:6650: connect: connection refused"
remote_addr="<pulsar://localhost:6650>"
time="2020-04-21T01:04:01Z" level=info msg="Connection closed"
remote_addr="<pulsar://localhost:6650>"```
----
2020-04-21 03:07:55 UTC - Alex Sim: If I'm not wrong, is this the method to
upgrade Pulsar? <https://pulsar.apache.org/docs/en/administration-upgrade/> We
have Pulsar 2.4.2, but am unsure of how to upgrade it to 2.5.0 as well as
migrating the sql db. We're fairely new to the technology but google hasn't
been showing any results on the upgrade/migration. From what *I* understand
from the guide, do we just have to upgrade the bookies/brokers/zookeeper?
----
2020-04-21 03:11:53 UTC - Sijie Guo: Yes. that is the guide to follow.
----
2020-04-21 03:14:00 UTC - Alex Sim: I see, thank you!
----
2020-04-21 04:30:17 UTC - Shivji Kumar Jha: point taken @Xavier Levaux, thanks
:slightly_smiling_face:
----
2020-04-21 05:51:04 UTC - Rahul: Does
<https://github.com/streamnative/pulsar-spark|pulsar-spark> supports ordering
guarantee for reading stream from one topic and writing into another?
----
2020-04-21 07:07:07 UTC - xue: What's the difference between
prometheusStatsHttpPort and httpServerPort in bookkeeper.conf?
----
2020-04-21 08:34:13 UTC - Aaron Verachtert: I'm trying to deploy a Pulsar
Function using the REST-API, but I'm getting a HTTP 415 response. I found an
issue (<https://github.com/apache/pulsar/issues/5312>) on this but the
resolution does not seem clear to me. I'm trying to send a request with Postman
My call:
```URL: localhost:8080/admin/v3/functions/public/default/functionName
HEADERS:
Postman-Token
<calculated when request is sent>
Content-Type
application/json
Content-Length
<calculated when request is sent>
Host
<calculated when request is sent>
User-Agent
PostmanRuntime/7.24.1
Accept
*/*
Accept-Encoding
gzip, deflate, br
Connection
keep-alive
BODY:
{
"inputs": "<persistent://public/default/topicName>",
"log-topic": "<persistent://public/default/logging-function-logs>",
"classname": "<http://path.to|path.to>.Function",
"jar": "functions/pulsar-functions-1.0-SNAPSHOT.jar"
}```
----