-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Broker's web threads get stuck #4756
Labels
type/bug
The PR fixed a bug or issue reported a bug
Comments
It reproduces with the following command.
|
1 task
1 task
sijie
pushed a commit
that referenced
this issue
Jul 23, 2019
Master Issue: #4756 ### Motivation This is a continuation of #4765. ### Modifications Added async rest handlers to the following APIs: ``` DELETE /admin/namespaces/{tenant}/{cluster}/{namespace} PUT /admin/namespaces/{tenant}/{cluster}/{namespace}/unload POST /admin/namespaces/{tenant}/{cluster}/{namespace}/clearBacklog POST /admin/namespaces/{tenant}/{cluster}/{namespace}/clearBacklog/{subscription} POST /admin/namespaces/{tenant}/{cluster}/{namespace}/unsubscribe/{subscription} DELETE /admin/v2/namespaces/{tenant}/{namespace} PUT /admin/v2/namespaces/{tenant}/{namespace}/unload POST /admin/v2/namespaces/{tenant}/{namespace}/clearBacklog POST /admin/v2/namespaces/{tenant}/{namespace}/clearBacklog/{subscription} POST /admin/v2/namespaces/{tenant}/{namespace}/unsubscribe/{subscription} ```
1 task
merlimat
pushed a commit
that referenced
this issue
Jul 25, 2019
…Is (3) (#4795) * Process requests asynchronously on some REST APIs (3) * Add async rest handler to API for expiring message on single topic subscription
easyfan
pushed a commit
to easyfan/pulsar
that referenced
this issue
Jul 26, 2019
Master Issue: apache#4756 ### Motivation This is a continuation of apache#4765. ### Modifications Added async rest handlers to the following APIs: ``` DELETE /admin/namespaces/{tenant}/{cluster}/{namespace} PUT /admin/namespaces/{tenant}/{cluster}/{namespace}/unload POST /admin/namespaces/{tenant}/{cluster}/{namespace}/clearBacklog POST /admin/namespaces/{tenant}/{cluster}/{namespace}/clearBacklog/{subscription} POST /admin/namespaces/{tenant}/{cluster}/{namespace}/unsubscribe/{subscription} DELETE /admin/v2/namespaces/{tenant}/{namespace} PUT /admin/v2/namespaces/{tenant}/{namespace}/unload POST /admin/v2/namespaces/{tenant}/{namespace}/clearBacklog POST /admin/v2/namespaces/{tenant}/{namespace}/clearBacklog/{subscription} POST /admin/v2/namespaces/{tenant}/{namespace}/unsubscribe/{subscription} ```
easyfan
pushed a commit
to easyfan/pulsar
that referenced
this issue
Jul 26, 2019
…EST APIs (3) (apache#4795) * Process requests asynchronously on some REST APIs (3) * Add async rest handler to API for expiring message on single topic subscription
For now the stuck at However, besides the stuck at
|
wolfstudy
pushed a commit
that referenced
this issue
Nov 20, 2019
Master Issue: #4756 ### Motivation This is a continuation of #4765. ### Modifications Added async rest handlers to the following APIs: ``` DELETE /admin/namespaces/{tenant}/{cluster}/{namespace} PUT /admin/namespaces/{tenant}/{cluster}/{namespace}/unload POST /admin/namespaces/{tenant}/{cluster}/{namespace}/clearBacklog POST /admin/namespaces/{tenant}/{cluster}/{namespace}/clearBacklog/{subscription} POST /admin/namespaces/{tenant}/{cluster}/{namespace}/unsubscribe/{subscription} DELETE /admin/v2/namespaces/{tenant}/{namespace} PUT /admin/v2/namespaces/{tenant}/{namespace}/unload POST /admin/v2/namespaces/{tenant}/{namespace}/clearBacklog POST /admin/v2/namespaces/{tenant}/{namespace}/clearBacklog/{subscription} POST /admin/v2/namespaces/{tenant}/{namespace}/unsubscribe/{subscription} ``` (cherry picked from commit 2cc34af)
wolfstudy
pushed a commit
that referenced
this issue
Nov 20, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The other day, one of our broker servers became unable to respond to any HTTP request. The following is a part of the thread dump at that time.
threaddump.txt
It seems that many
pulsar-web-x-x
threads are blocked trying to get a list of subscriptions.Pulsar version
We have already backported #4484 to Pulsar-2.2.1, but the REST API that returns a list of subscriptions does not seem to time out.
The text was updated successfully, but these errors were encountered: