2019-06-14 09:26:55 UTC - ishara: @ishara has joined the channel ---- 2019-06-14 10:17:45 UTC - vikash: @vikash has joined the channel ---- 2019-06-14 10:20:53 UTC - vikash: is any support for .net client ,as of now i have builded c++ Project and get the dll but that dll not working on c# .net ---- 2019-06-14 10:23:24 UTC - Sijie Guo: :ok_hand: ---- 2019-06-14 10:24:35 UTC - Sijie Guo: Currently there is no .net client available yet. But I remembered that there is a group working on the .net client and will be open sourced around Sep. ---- 2019-06-14 10:37:26 UTC - vikash: thanks @Sijie Guo,is it not possible if i build <https://github.com/apache/pulsar/tree/master/pulsar-client-cpp> ,i will get dll pulsardll.dll and i will add as Refrance in .net .i have triyed this way but not able to add dll ---- 2019-06-14 10:38:48 UTC - Sijie Guo: I have no idea about this. sorry. I am not a .net expert ---- 2019-06-14 10:43:07 UTC - vikash: i have created Tenant using Rest api http://<url>:8080/admin/v2/tenants/test1 using this body { "adminRoles": [], "allowedClusters": [ "standalone" ] },its created sucess fully,but in pulsar dashboard i cant see my chnages ---- 2019-06-14 11:11:32 UTC - Sijie Guo: @Brian Doran: @tuteng has put up a pull request adding this feature - <https://github.com/apache/pulsar/pull/4534/files>
Sorry for being late on this feature. ---- 2019-06-14 12:50:13 UTC - Aaron: Any/all help with these questions would be appreciated. Thanks. ---- 2019-06-14 12:56:03 UTC - Sijie Guo: 1. Listener threads are used for invoking MessageListener, when you are using a MessageListener to receive messages for a consumer. 2. IO threads receive message and add message to a pending queue. Listener threads take message out of the queue and invoke MessageListener. 3. yes. in number of messages. 4. it is thread safe 5. there is no fundemental difference between receive and receiveAsync. both receive and receiveAsync pulls items from the prefetched message queue. the only difference is that receive will be blocking if there is no other messages in the queue. ---- 2019-06-14 12:59:49 UTC - Lewey: When trying to publish messages to a topic i get the following error ```Namespace does not have any clusters configured``` how do i set the cluster that the namespace uses? ---- 2019-06-14 13:01:09 UTC - Aaron: Thanks! So the queue the IO threads put messages into is different then the queue the consumer.receive pulls from, correct? ---- 2019-06-14 13:01:39 UTC - Sijie Guo: correct +1 : Aaron ---- 2019-06-14 13:23:10 UTC - Aaron: Are iothreads used by the producer too when sending messages to the Pulsar cluster? ---- 2019-06-14 14:26:08 UTC - Grant Wu: <https://pulsar.apache.org/docs/en/pulsar-admin/#set-clusters> ---- 2019-06-14 16:21:14 UTC - Aaron: @Sijie Guo ^ ---- 2019-06-14 23:49:18 UTC - Alexey Pikin: thx ---- 2019-06-15 00:14:10 UTC - Ali Ahmed: @vikash You can wrap dll’s generated via C# to get things to work if you know C# pinvoke python clients are built in the same way. ---- 2019-06-15 03:11:05 UTC - Sijie Guo: yes ---- 2019-06-15 08:29:03 UTC - vikash: Hi there ,How to acknowledge Message from consumer using rest api ---- 2019-06-15 08:29:48 UTC - vikash: as of now i am using websocket consumer and producers... ---- 2019-06-15 08:30:35 UTC - vikash: our consumer are multithreaded.. ---- 2019-06-15 08:30:51 UTC - vikash: I cant send acknowledge from consumer in multi thread.. which causing socket to close.. ---- 2019-06-15 08:31:25 UTC - vikash: so i am finding a way to acknowledge message through rest api.. ----
