-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
HBase counters #758
HBase counters #758
Conversation
This still isn't rebased off the latest Next, did you forget to do a git pull or something? Do a "git fetch --all; git rebase origin/next" (assuming origin is what you named the OpenTSBD fork, you might have called it something else) |
I did everything (fork, create pull request...) from github.com, not from command line. anyway, i just did what you asked from command line (Git Shell), and now it appears I'm synched: C:\Users\pini\Documents\GitHub\opentsdb [next]> git fetch --all; git rebase origin/next However, i see that there are still a few conflicts: C:\Users\pini\Documents\GitHub\opentsdb [next]> git merge upstream/next |
Ok i fixed the 2 conflicts and made git commit. |
Assigning to @manolama as he wanted to review this. |
ok, great. |
src/core/ByteBufferList.java
Outdated
@@ -57,6 +57,15 @@ public void add(final byte[] buf, final int offset, final int len) { | |||
segments.add(new BufferSegment(buf, offset, len)); | |||
total_length += len; | |||
} | |||
|
|||
public BufferSegment removeLastSegment() { |
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.
Jdoc and formatting.
Thanks for the attempt! Otherwise also watch out for:
Thanks! |
# Conflicts: # src/core/IncomingDataPoints.java # src/core/TSDB.java # src/utils/Config.java
Hi Chris\Jonathan, I've committed today the relevant fixes as you suggested:
I would be happy if you could review and send comments. Thanks in advance! |
I just saw 2.4.0 was released ~ 6 months ago. was this feature merged in? why is it still open? |
hi, this is will be merged? |
My question exactly... I've committed this code ~ 3 years ago, i don't know why it was not merged at the time. |
@Pinif Because the active maintainers got other jobs where we don't get to use OpenTSDB. |
added support for using hbase counters as the underlying implementation of opentsdb
added support for summing up detected duplicate counters (instead of discarding them)