Skip to content
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

Test a pr. #1

Open
wants to merge 116 commits into
base: master
Choose a base branch
from
Open

Test a pr. #1

wants to merge 116 commits into from

Commits on Jun 6, 2015

  1. Improve query performance in the AggregationIterator by calling

    .hasNext() on the downsampler instead of letting it build a
    giant exception string that we're just tossing in the bit bucket.
    manolama committed Jun 6, 2015
    Configuration menu
    Copy the full SHA
    2bd72d6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7318167 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2015

  1. Configuration menu
    Copy the full SHA
    6559cb7 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2015

  1. Configuration menu
    Copy the full SHA
    ef22de8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6cb7637 View commit details
    Browse the repository at this point in the history
  3. Release 2.1.1

    manolama committed Sep 12, 2015
    Configuration menu
    Copy the full SHA
    a30211c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8e7eb32 View commit details
    Browse the repository at this point in the history
  5. Cut 2.2.0 RC1

    manolama committed Sep 12, 2015
    Configuration menu
    Copy the full SHA
    5388ff3 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2015

  1. Configuration menu
    Copy the full SHA
    611c870 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2015

  1. Configuration menu
    Copy the full SHA
    93b3798 View commit details
    Browse the repository at this point in the history
  2. Add the QueryUtil class that pulls some methods out of the TsdbQuery

    class so they can be shared elsewhere.
    Also make queries a tiny bit more efficient with salting by
    compiling the row key regex once instead of once for each bucket.
    manolama committed Sep 27, 2015
    Configuration menu
    Copy the full SHA
    5fc5179 View commit details
    Browse the repository at this point in the history
  3. Fix for OpenTSDB#568, modifying the /api/search/lookup method to prop…

    …erly
    
    handle salted tables.
    manolama committed Sep 27, 2015
    Configuration menu
    Copy the full SHA
    6bc6b3f View commit details
    Browse the repository at this point in the history
  4. Fix up the search API for lookups to be fully asynchronous. Thanks

    to to @Dieken for his work on the salting patch.
    manolama committed Sep 27, 2015
    Configuration menu
    Copy the full SHA
    fcb2f72 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2015

  1. Configuration menu
    Copy the full SHA
    52ee82e View commit details
    Browse the repository at this point in the history
  2. Bump the AsyncHBase version to 1.7.1-SNAPSHOT to fix decoding bugs

    with pre 0.96 region servers.
    manolama committed Oct 4, 2015
    Configuration menu
    Copy the full SHA
    7681bc3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5cc9e65 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2015

  1. Configuration menu
    Copy the full SHA
    b5272ee View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2015

  1. Configuration menu
    Copy the full SHA
    674e290 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2015

  1. Fix test dependencies where DeleteRequest was pulled from Zookeeper

    instead of AsyncHBase.
    manolama committed Oct 28, 2015
    Configuration menu
    Copy the full SHA
    5d2479c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    aaee2ba View commit details
    Browse the repository at this point in the history
  3. s/space/comma/ in instruction for specifying ZooKeeper quorum

    Hong Dai Thanh authored and manolama committed Oct 28, 2015
    Configuration menu
    Copy the full SHA
    384aaf9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f0713e6 View commit details
    Browse the repository at this point in the history
  5. s/space/comma/ in instruction for specifying ZooKeeper quorum

    Hong Dai Thanh authored and manolama committed Oct 28, 2015
    Configuration menu
    Copy the full SHA
    5933ac2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2e5a6ac View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6f8494b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    fcaf2d4 View commit details
    Browse the repository at this point in the history
  9. QueryUi: URL.decode() url/query string before use

    Some browsers (aka firefox) like to encode { and } as %7B and %7D.  This
    causes problem when parsing the query string since its using { and } to
    figure out the metric and tags.  Without this the UI thows an error like
    the following:
    
    Request failed: Bad Request: No such name for 'metrics': 'server.nic.usage.mbit%7Bhost=host1%7D'
    jwestfall69 authored and manolama committed Oct 28, 2015
    Configuration menu
    Copy the full SHA
    99f9abe View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2015

  1. fix stuck metasync when salting is enabled

    MetaScanner extracts (salt_width + metric_width) bytes from tsuid
    to metric uid, this triggers IllegalArgumentException in
    UniqueId.getNameAsync(id), then MetaScanner.call() won't never
    call result.callback(null), and result.joinUninterruptibly() in
    MetaSync.run() never returns.
    
    BTW, I checked all usages of Const.SALT_WIDTH() and fixed some
    other similar wrong calculations.
    Dieken authored and manolama committed Oct 31, 2015
    Configuration menu
    Copy the full SHA
    601209b View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2015

  1. Configuration menu
    Copy the full SHA
    c6ed6f6 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2015

  1. Configuration menu
    Copy the full SHA
    b7602d7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4111c06 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2015

  1. Configuration menu
    Copy the full SHA
    c78b8c5 View commit details
    Browse the repository at this point in the history
  2. Release 2.2.0RC2.

    Thanks for the bug fixes!
    manolama committed Nov 10, 2015
    Configuration menu
    Copy the full SHA
    ec783c6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5c6946e View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2015

  1. Configuration menu
    Copy the full SHA
    6d151e3 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2015

  1. Configuration menu
    Copy the full SHA
    f9636a0 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2015

  1. Silence stray logging output in TSMeta.call()

    This line was added in ab276c8 and based on indentation is likely an accidental commit.  It causes continuous spamming in our logs after upgrade.  Changing log level to "debug" to quiet it down.
    vitaliyf authored and manolama committed Nov 27, 2015
    Configuration menu
    Copy the full SHA
    ad0ccad View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2015

  1. Configuration menu
    Copy the full SHA
    2fc21f1 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2015

  1. Configuration menu
    Copy the full SHA
    82effbd View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2015

  1. Configuration menu
    Copy the full SHA
    eab9709 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    08abaac View commit details
    Browse the repository at this point in the history
  3. Fix OpenTSDB#642 by sorting the tags properly on the bytes, NOT the s…

    …tring
    
    values. Sheesh. Thanks @wuxuehong214
    manolama committed Dec 15, 2015
    Configuration menu
    Copy the full SHA
    1279d45 View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2015

  1. Configuration menu
    Copy the full SHA
    8507c6c View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2015

  1. Configuration menu
    Copy the full SHA
    a182462 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    87b4933 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2016

  1. Configuration menu
    Copy the full SHA
    c865a3e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a6dbb75 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2016

  1. Configuration menu
    Copy the full SHA
    38f6732 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2016

  1. Configuration menu
    Copy the full SHA
    af8581d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ce2b71e View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2016

  1. Configuration menu
    Copy the full SHA
    c5dfac8 View commit details
    Browse the repository at this point in the history
  2. Set tsd.query.allow_simultaneous_duplicates = true by default.

    This was causing some conflicts and confusion so we'll let folks
    enable it if they have problems with abuse.
    manolama committed Feb 3, 2016
    Configuration menu
    Copy the full SHA
    a9e463a View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2016

  1. Configuration menu
    Copy the full SHA
    9fcb370 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2016

  1. Configuration menu
    Copy the full SHA
    9a36e67 View commit details
    Browse the repository at this point in the history
  2. Add a try/catch to the FSCK utility to log problems found when

    printing row information.
    manolama committed Feb 13, 2016
    Configuration menu
    Copy the full SHA
    4fc6f52 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5d897f5 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2016

  1. Update the logback.xml config file with disabled configs for the

    query log. Also add the file appender to the /src/logback.xml file.
    manolama committed Feb 14, 2016
    Configuration menu
    Copy the full SHA
    27c54b2 View commit details
    Browse the repository at this point in the history
  2. Rollback 6d2102a as I was mistaken

    in that on Linux hosts it did indeed point to the wrong config
    directory when installing locally and via package. We'll need to
    revisit this for FreeBSD.
    manolama committed Feb 14, 2016
    Configuration menu
    Copy the full SHA
    5577f7e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    333046d View commit details
    Browse the repository at this point in the history
  4. Cut 2.2.0

    Update News and Thanks!
    manolama committed Feb 14, 2016
    Configuration menu
    Copy the full SHA
    c0612fc View commit details
    Browse the repository at this point in the history
  5. Cut 2.1.4

    manolama committed Feb 14, 2016
    Configuration menu
    Copy the full SHA
    fb453a5 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9b5e56d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a61772f View commit details
    Browse the repository at this point in the history
  8. Merge branch 'next'

    manolama committed Feb 14, 2016
    Configuration menu
    Copy the full SHA
    afc5180 View commit details
    Browse the repository at this point in the history
  9. Fix

    manolama committed Feb 14, 2016
    Configuration menu
    Copy the full SHA
    f49d5d3 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2016

  1. Configuration menu
    Copy the full SHA
    3be2e63 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2016

  1. Configuration menu
    Copy the full SHA
    90b8fec View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2016

  1. Configuration menu
    Copy the full SHA
    f3badad View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2016

  1. Configuration menu
    Copy the full SHA
    370650e View commit details
    Browse the repository at this point in the history
  2. Add comments and UTs to 931242b

    as well as clean up the deferreds a bit.
    manolama committed Apr 18, 2016
    Configuration menu
    Copy the full SHA
    1c73ea8 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2016

  1. Configuration menu
    Copy the full SHA
    e1140c7 View commit details
    Browse the repository at this point in the history
  2. Bump to 2.2.1-SNAPSHOT

    manolama committed Apr 19, 2016
    Configuration menu
    Copy the full SHA
    4087cd1 View commit details
    Browse the repository at this point in the history
  3. Fix the filter metric and tag resolution chain by making sure the

    first callback is attached as a deferring callback and returns
    the proper type
    manolama committed Apr 19, 2016
    Configuration menu
    Copy the full SHA
    9f6a585 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    049cbf0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4c2fd43 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2016

  1. Fix OpenTSDB#773 - Add global_annotations to graphs

    Fixed a bug in which global_annotations were ignored by
    GraphHandler.java (and thus, were not rendered by gnuplot). Added async
    call to hbase to retrieve global annotations when required in a similar
    fashion as that of QueryRpc.java.
    
    Note: Since both GraphHandler.java and QueryRpc.java implement (similar)
    query-processing logic, all of this should be unified in the future
    (requires a large refactor to split all query logic with visualization
    logic).
    HugoMFernandes authored and manolama committed Apr 23, 2016
    Configuration menu
    Copy the full SHA
    07ff47e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    667fccf View commit details
    Browse the repository at this point in the history

Commits on May 1, 2016

  1. Configuration menu
    Copy the full SHA
    8874bac View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    27bb483 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4c98026 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b24eccf View commit details
    Browse the repository at this point in the history
  5. Fix issue OpenTSDB#778 by allowing the creating of a TSMeta object wi…

    …thout
    
    a TSUID.
    Also fix up some UTs in the UIDRPC class where the JSON order can
    change.
    manolama committed May 1, 2016
    Configuration menu
    Copy the full SHA
    a4cc4fc View commit details
    Browse the repository at this point in the history
  6. Fix issue OpenTSDB#784 by adding an estimate for the number of data p…

    …oints
    
    from storage. Also fix the average calculation when salting is
    not enabled.
    manolama committed May 1, 2016
    Configuration menu
    Copy the full SHA
    050d507 View commit details
    Browse the repository at this point in the history
  7. f

    manolama committed May 1, 2016
    Configuration menu
    Copy the full SHA
    6d011d5 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2016

  1. Configuration menu
    Copy the full SHA
    ef4905a View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2016

  1. Configuration menu
    Copy the full SHA
    21df40d View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2016

  1. Move to AsyncHBase 1.7.2

    manolama committed Sep 18, 2016
    Configuration menu
    Copy the full SHA
    7d2f7a9 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2016

  1. Configuration menu
    Copy the full SHA
    b1fe8fc View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2016

  1. Configuration menu
    Copy the full SHA
    d6a7405 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2016

  1. Configuration menu
    Copy the full SHA
    3665794 View commit details
    Browse the repository at this point in the history
  2. Modify the config loads for the RPCManager class to use the config's

    getBoolean function to parse various types of boolean setting flags.
    manolama committed Dec 31, 2016
    Configuration menu
    Copy the full SHA
    ef35ae2 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2017

  1. Avoid double computing the expressions for the /query/exp endpoint.

    Also make sure both versions of next() handle booleans.
    manolama committed Jan 28, 2017
    Configuration menu
    Copy the full SHA
    4728986 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2017

  1. Bump javassist to 3.21.0-GA

    goll authored and manolama committed Feb 1, 2017
    Configuration menu
    Copy the full SHA
    cedd46e View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2017

  1. Configuration menu
    Copy the full SHA
    b665eaf View commit details
    Browse the repository at this point in the history
  2. Fix OpenTSDB#915 by simply copying the entire tools directory into the

    destination directory. Thanks @shyamraj242.
    manolama committed Mar 11, 2017
    Configuration menu
    Copy the full SHA
    97bdd3c View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2017

  1. Configuration menu
    Copy the full SHA
    4cbfbc7 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2017

  1. Log query stats in case of Closed Channel also

    Signed-off-by: Chris Larsen <[email protected]>
    jsbali authored and manolama committed May 14, 2017
    Configuration menu
    Copy the full SHA
    be2b995 View commit details
    Browse the repository at this point in the history
  2. added java-8-oracle PATH in JDK_DIRS

    added /usr/lib/jvm/java-8-oracle in JDK_DIRS ...if JAVA_HOME is not defined in $DEFAULT
    
    Signed-off-by: Chris Larsen <[email protected]>
    ioanszilagyi authored and manolama committed May 14, 2017
    Configuration menu
    Copy the full SHA
    e7ccbfd View commit details
    Browse the repository at this point in the history
  3. Pass FAMILY to get().

    Signed-off-by: Chris Larsen <[email protected]>
    alienth authored and manolama committed May 14, 2017
    Configuration menu
    Copy the full SHA
    f31916e View commit details
    Browse the repository at this point in the history
  4. Fix spotted incorrect conditional.

    Fix OpenTSDB#708 by using better comparisons
    
    The implemented Comparable interface was very inconsistent, leading to randomly sorted lists.
    Marcin Januszkiewicz authored and manolama committed May 14, 2017
    Configuration menu
    Copy the full SHA
    58e6c72 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2017

  1. Configuration menu
    Copy the full SHA
    e05923f View commit details
    Browse the repository at this point in the history
  2. Fix OpenTSDB#994 by filtering on the annotation start time when seria…

    …lizing
    
    so that we skip any that do not start within the query timespan.
    manolama committed Jun 11, 2017
    Configuration menu
    Copy the full SHA
    e918e8f View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2017

  1. Fix OpenTSDB#967 by changing the conversions to UTF-8 for the static …

    …byte methods
    
    in the UID class. This should properly decode the UTF strings now.
    Also remove the CHARSET from the UID class, use Const instead.
    manolama committed Jun 12, 2017
    Configuration menu
    Copy the full SHA
    e7ff2fb View commit details
    Browse the repository at this point in the history
  2. Take a stab at fixing OpenTSDB#953 by at least hunting for back-ticks…

    … before passing
    
    parameters to Gnuplot. Metrics and tags are already handled by the char list.
    Thanks @gsocgsoc
    manolama committed Jun 12, 2017
    Configuration menu
    Copy the full SHA
    c5379e3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    11958ab View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2017

  1. Configuration menu
    Copy the full SHA
    f88236e View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2017

  1. Remove the "final" modifier from the meta classes (TSMeta, UIDMeta and

    Annotations) so that plugins can extend them as needed. This can be
    useful in the search plugin.
    manolama committed Jul 16, 2017
    Configuration menu
    Copy the full SHA
    8e0ebf0 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2018

  1. Configuration menu
    Copy the full SHA
    e33410f View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2018

  1. Try screwdriver.

    manolama committed Feb 8, 2018
    Configuration menu
    Copy the full SHA
    212d4f8 View commit details
    Browse the repository at this point in the history
  2. Fix SD

    manolama committed Feb 8, 2018
    Configuration menu
    Copy the full SHA
    6f380a5 View commit details
    Browse the repository at this point in the history
  3. Doh, missed period

    manolama committed Feb 8, 2018
    Configuration menu
    Copy the full SHA
    804ea58 View commit details
    Browse the repository at this point in the history
  4. Install autoconf?

    manolama committed Feb 8, 2018
    Configuration menu
    Copy the full SHA
    3ae0816 View commit details
    Browse the repository at this point in the history
  5. SD didn't like init

    manolama committed Feb 8, 2018
    Configuration menu
    Copy the full SHA
    9d3cc9a View commit details
    Browse the repository at this point in the history
  6. Now it sets up the docker

    manolama committed Feb 8, 2018
    Configuration menu
    Copy the full SHA
    6b17459 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2018

  1. Fail a ut

    manolama committed Feb 9, 2018
    Configuration menu
    Copy the full SHA
    a19db84 View commit details
    Browse the repository at this point in the history
  2. Test a pr.

    manolama committed Feb 9, 2018
    Configuration menu
    Copy the full SHA
    a7fd85c View commit details
    Browse the repository at this point in the history