-
Notifications
You must be signed in to change notification settings - Fork 114
Refactor ver1.0.0 #10
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Fix issues with python3, cross version enum compatibility - Deal with optional Kerberos implementation - Add new functionality to cater for monthly, weekly and bespoke index naming functions
Moving on to: - daily indices, weekly indices, monthly indices, bespoke indices configuration
Supports daily, weekly, monthly and yearly postfixes to the indexname Changed a map section for an interator when creating actions to reduce chances of extra memory used (trade-off with speed) Added sonar support
Current coverage is 86.66% (diff: 78.18%)
@@ development #10 diff @@
=============================================
Files 1 1
Lines 90 120 +30
Methods 0 0
Messages 0 0
Branches 11 14 +3
=============================================
+ Hits 80 104 +24
- Misses 7 13 +6
Partials 3 3
|
cmanaha
added a commit
that referenced
this pull request
Jan 17, 2017
* Added variable for selecting index_frequency postfix * Supports daily, weekly, monthly and yearly postfixes to the indexname * Changed a map section for an interator when creating actions to reduce * chances of extra memory used (trade-off with speed) * Added sonar support This closes #7, closes #9 . Beta version ready for release
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added extra functionality to create daily, weekly, monthly, yearly indices
Supports python2 and 3 (starting with 3.4 as a dependency from Enum)
Changed a few map operations to iterators to save some potential memory
Clients on basic or no authentications are reused. Kerberos clients are still re-generated in each flush cycle to request new valid token and avoid tokens expiring.