You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2022/09/05 01:07:13 UTC

[GitHub] [dolphinscheduler] ruanwenjun opened a new issue, #11768: [Improvement][Monitor] Support monitor h2 database in monitor page

ruanwenjun opened a new issue, #11768:
URL: https://github.com/apache/dolphinscheduler/issues/11768

   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
   
   
   ### Description
   
   Right now, we only support monitor mysql/pgsql in monitor page, when we start at standalone mode, we cannot get the db health in monitor page, it's better to support h2.
   
   ### Are you willing to submit a PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] DarkAssassinator commented on issue #11768: [Improvement][Monitor] Support monitor h2 database in monitor page

Posted by GitBox <gi...@apache.org>.
DarkAssassinator commented on issue #11768:
URL: https://github.com/apache/dolphinscheduler/issues/11768#issuecomment-1237080852

   Dear @ruanwenjun there is a small question, H2 memory database does not have indicators such as the maximum number of connections, just session numbers. do we need check the JDBC connection pool?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] DarkAssassinator commented on issue #11768: [Improvement][Monitor] Support monitor h2 database in monitor page

Posted by GitBox <gi...@apache.org>.
DarkAssassinator commented on issue #11768:
URL: https://github.com/apache/dolphinscheduler/issues/11768#issuecomment-1236492204

   I'm interested in this part, can i assign this case?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] DarkAssassinator commented on issue #11768: [Improvement][Monitor] Support monitor h2 database in monitor page

Posted by GitBox <gi...@apache.org>.
DarkAssassinator commented on issue #11768:
URL: https://github.com/apache/dolphinscheduler/issues/11768#issuecomment-1237226551

   yes, but cannot determine the MAX_CONNECTION, becasue H2 do not have this setting. so we just can check the cur active connection number.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] ruanwenjun closed issue #11768: [Improvement][Monitor] Support monitor h2 database in monitor page

Posted by GitBox <gi...@apache.org>.
ruanwenjun closed issue #11768: [Improvement][Monitor] Support monitor h2 database in monitor page
URL: https://github.com/apache/dolphinscheduler/issues/11768


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] github-actions[bot] commented on issue #11768: [Improvement][Monitor] Support monitor h2 database in monitor page

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #11768:
URL: https://github.com/apache/dolphinscheduler/issues/11768#issuecomment-1236457150

   Thank you for your feedback, we have received your issue, Please wait patiently for a reply.
   * In order for us to understand your request as soon as possible, please provide detailed information、version or pictures.
   * If you haven't received a reply for a long time, you can [join our slack](https://s.apache.org/dolphinscheduler-slack) and send your question to channel `#troubleshooting`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] ruanwenjun commented on issue #11768: [Improvement][Monitor] Support monitor h2 database in monitor page

Posted by GitBox <gi...@apache.org>.
ruanwenjun commented on issue #11768:
URL: https://github.com/apache/dolphinscheduler/issues/11768#issuecomment-1237200898

   > Dear @ruanwenjun there is a small question, H2 memory database does not have indicators such as the maximum number of connections, just session numbers. do we need check the JDBC connection pool?
   
   Yes, we can query the session number to represent the connection number.
   ```
   select * from information_schema.sessions;
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org