-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Logstash doris output plugin #3800
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
Conversation
|
Good work! Please add English doc ~ |
| @@ -0,0 +1,198 @@ | |||
| --- | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to add this doc title in the side bar:
open the docs/.vuepress/sidebar/en.js and search extending-doris/
| @@ -0,0 +1,198 @@ | |||
| --- | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to add this doc title in the side bar:
open the docs/.vuepress/sidebar/zh-CN.js and search 扩展功能
| Gem::Specification.new do |s| | ||
| s.name = 'logstash-output-doris' | ||
| s.version = '0.1.0' | ||
| s.licenses = ['Apache License (2.0)'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apache License (2.0) seems not a valid license name in my env.
Should it be Apache-2.0
| s.add_runtime_dependency 'mini_cache', ">= 1.0.0", "< 2.0.0" | ||
| s.add_runtime_dependency "rest-client", '>= 1.8.0' | ||
|
|
||
| s.add_development_dependency 'logstash-devutils' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add version info for following 3 dependencies
morningman
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
…y instead of Topn node apache#46551 (apache#3800) pick apache#46551 ### What problem does this PR solve? Plan node is not good to be hash map key, because two plan nodes in different tree level may be regarded as "equal". for example, in following tree, topn1.equals(topn2) may be true. Topn filter generator should distinguish them, and hence topn node is not suitable to be used as hash map key. topn1 -->some node -->topn2 -->other node Related PR: apache#31485
This plugin is used to output data to Doris for logstash
Use the HTTP protocol to interact with the Doris FE Http interface
Load data through Doris's stream load
#3809