-
Notifications
You must be signed in to change notification settings - Fork 3
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
Implement Benchmarks #254
Implement Benchmarks #254
Conversation
Can we add the benchmarking results to the documentation as well? |
@@ -73,35 +73,66 @@ | |||
|
|||
logger = Logger(__name__) | |||
|
|||
_profiles: Dict[str, List[PluginFactory]] = {} |
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.
There is PR that updates the plugin profiles on the JDBC Wrapper. The existing plugin profile implementation also isn't widely used as seen on the JDBC side. What do you think if we add the plugin profile feature later?
if contains_profile(profile_name): | ||
plugin_factories = get_plugin_factories(profile_name) |
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.
nit:
if contains_profile(profile_name): | |
plugin_factories = get_plugin_factories(profile_name) | |
plugin_factories = get_plugin_factories(profile_name) |
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.
Oops. Surprised I didn't catch this myself. Thanks for pointing it out.
@@ -73,35 +73,66 @@ | |||
|
|||
logger = Logger(__name__) | |||
|
|||
_profiles: Dict[str, List[PluginFactory]] = {} |
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.
Does this PR also fully implement driver configuration profiles? If so, should we add docs for driver profiles? Could also be done in a separate PR
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.
Docs added.
f83ff98
to
a067aa0
Compare
Description
Implement Benchmarks.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.