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

Upgrade to a Lucene 8 snapshot #33310

Merged
merged 96 commits into from
Sep 6, 2018
Merged

Upgrade to a Lucene 8 snapshot #33310

merged 96 commits into from
Sep 6, 2018

Commits on Aug 9, 2018

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

Commits on Aug 16, 2018

  1. Apply renaming to TermContext (->TermStates) and LevensteinDistance (…

    …->LevenshteinDistance).
    jimczi committed Aug 16, 2018
    Configuration menu
    Copy the full SHA
    dfa1568 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4985646 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2018

  1. Handle SimWeight removal.

    jpountz committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    cfa8c35 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    55ab015 View commit details
    Browse the repository at this point in the history
  3. Docs enhancement: added reference to cluster-level setting `search.de…

    …fault_allow_partial_results` (#32810)
    
    Closes #32809
    markharwood authored and jimczi committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    3f54c9e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f05caf7 View commit details
    Browse the repository at this point in the history
  5. Test: Fix unpredictive merges in DocumentSubsetReaderTests

    The merge policy that was used could lead to unpredictive merges due to the
    randomization of `setDeletesPctAllowed`.
    
    Closes #32457
    jimczi committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    07dedde View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    06a40a1 View commit details
    Browse the repository at this point in the history
  7. CharArraysTests: Fix test bug.

    jpountz authored and jimczi committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    f66e5bb View commit details
    Browse the repository at this point in the history
  8. Mutes test in DuelScrollIT

    Due to #32682
    colings86 authored and jimczi committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    227b14d View commit details
    Browse the repository at this point in the history
  9. AwaitFix AckIT.

    Relates #32767
    jpountz authored and jimczi committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    73d8a5d View commit details
    Browse the repository at this point in the history
  10. Remove passphrase support from reload settings API (#32889)

    We do not support passphrases on the secure settings storage (the
    keystore). Yet, we added support for this in the API layer. This commit
    removes this support so that we are not limited in our future options,
    or have to make a breaking change.
    jasontedor authored and jimczi committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    f9a6bdf View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    364c9f6 View commit details
    Browse the repository at this point in the history
  12. HLRC: adding machine learning delete job (#32820)

    * HLRC: adding machine learning delete job
    
    * Fixing whitespace
    
    * Moving docs and tests around
    
    * Unifying ml asciidoc file naming convention
    benwtrent authored and jimczi committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    2d056a2 View commit details
    Browse the repository at this point in the history
  13. [Test] Fix DuelScrollIT#testDuelIndexOrderQueryThenFetch

    This commit disables the automatic `refresh_interval` in order to ensure
    that index readers cannot differ between the normal and scroll search.
    This issue is related to the 7.5 Lucene upgrade which contains a change that
    makes single segment merge more likely to occur (max deletes percentage).
    
    Closes #32682
    jimczi committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    65a1888 View commit details
    Browse the repository at this point in the history
  14. 1 Configuration menu
    Copy the full SHA
    e657402 View commit details
    Browse the repository at this point in the history
  15. Painless: Special Case def (#32871)

    This removes def from the classes map in PainlessLookup and instead always special 
    cases it. This prevents potential calls against the def type that shouldn't be made and 
    forces all cases of def throughout Painless code to be special cased.
    jdconrad authored and jimczi committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    9b73dda View commit details
    Browse the repository at this point in the history
  16. Fix docs for fixed filename for heap dump path (#32882)

    The docs here incorrectly state that it is okay for a heap dump file to
    exist when heap dump path is configured to a fixed filename. This is
    incorrect, the JVM will fail to write the heap dump if a heap dump file
    already exists at the specified location (see the DumpWriter constructor
    DumpWriter::DumpWriter(const char* path) in the JVM source).
    jasontedor authored and jimczi committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    71eb39b View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    28b5ce5 View commit details
    Browse the repository at this point in the history
  18. Re enable ml bwc tests (#32916)

    [ML] Re-enabling BWC tests
    
    Re-enable BWC tests for ML now that #32816 has been backported to 6.x
    edsavage authored and jimczi committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    b5ae8ff View commit details
    Browse the repository at this point in the history
  19. Guard against null in email admin watches (#32923)

    The Kibana settings docs that these watches rely on can sometimes
    contain no xpack settings. When this is the case, we will end up with a
    null pointer exception in the script. We need to guard against in these
    scripts so this commit does that.
    jasontedor authored and jimczi committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    42e03c5 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    f7a861c View commit details
    Browse the repository at this point in the history
  21. Security: remove put privilege API (#32879)

    This commit removes the put privilege API in favor of having a single API to
    create and update privileges. If we see the need to have an API like this in
    the future we can always add it back.
    jaymode authored and jimczi committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    4fb240a View commit details
    Browse the repository at this point in the history
  22. RFC: Test that example plugins build stand-alone (#32235)

    Add tests for build-tools to make sure example plugins build stand-alone using it.
    
    This will catch issues such as referencing files from the buildSrc directly, breaking external uses of build-tools.
    alpar-t authored and jimczi committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    043a767 View commit details
    Browse the repository at this point in the history
  23. remove StandardFilter

    jimczi committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    7e14119 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    2a078ae View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    5f38426 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    c00973b View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    eccfc79 View commit details
    Browse the repository at this point in the history
  28. ENGLISH_STOP_WORDS_SET

    jpountz committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    2175f3a View commit details
    Browse the repository at this point in the history
  29. Fix more compile errors.

    jpountz committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    10e2ad4 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    d39c4ba View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2018

  1. Configuration menu
    Copy the full SHA
    e3c5d0d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bd6b0c7 View commit details
    Browse the repository at this point in the history
  3. Fix more compile errors.

    jpountz committed Aug 20, 2018
    Configuration menu
    Copy the full SHA
    4d724b0 View commit details
    Browse the repository at this point in the history
  4. more Levenstein => Levenshtein

    jimczi committed Aug 20, 2018
    Configuration menu
    Copy the full SHA
    e2be29c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    946312b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    250f160 View commit details
    Browse the repository at this point in the history
  7. remove unused import

    jimczi committed Aug 20, 2018
    Configuration menu
    Copy the full SHA
    09ac9f0 View commit details
    Browse the repository at this point in the history
  8. More compile errors.

    jpountz committed Aug 20, 2018
    Configuration menu
    Copy the full SHA
    7fb6393 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2018

  1. More compile errors.

    jpountz committed Aug 21, 2018
    Configuration menu
    Copy the full SHA
    abfe196 View commit details
    Browse the repository at this point in the history
  2. Add TODO.

    jpountz committed Aug 21, 2018
    Configuration menu
    Copy the full SHA
    a841413 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7f46a18 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a509758 View commit details
    Browse the repository at this point in the history
  5. More compile errors.

    jpountz committed Aug 21, 2018
    Configuration menu
    Copy the full SHA
    ecda651 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2018

  1. Configuration menu
    Copy the full SHA
    32563c2 View commit details
    Browse the repository at this point in the history
  2. fix compilation and style

    jimczi committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    03d13b9 View commit details
    Browse the repository at this point in the history
  3. updateShas

    jimczi committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    2684d88 View commit details
    Browse the repository at this point in the history
  4. more checkstyle fixes

    jimczi committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    aca51ec View commit details
    Browse the repository at this point in the history
  5. standard filter removal

    jimczi committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    b267965 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4dc5a05 View commit details
    Browse the repository at this point in the history
  7. dismax tiebreaker must be <= 1

    jimczi committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    0806f52 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    df0cf40 View commit details
    Browse the repository at this point in the history
  9. remove deprecation tests

    jimczi committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    34455fa View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    dcebf3a View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    d047238 View commit details
    Browse the repository at this point in the history
  12. Change the way that nested docs are excluded.

    Fixes PercolateQueryBuilder#createMultiDocumentSearcher and PercolatorQuerySearchIT.
    jpountz committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    de503ed View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    8a6505d View commit details
    Browse the repository at this point in the history
  14. Update Google Cloud Storage Library for Java (#32940)

    This commit updated the google-cloud-storage library from version 1.28.0
     to version 1.40.0.
    tlrx authored and jimczi committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    4951f58 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    cbd9236 View commit details
    Browse the repository at this point in the history
  16. [Rollup] Move getMetadata() methods out of rollup config objects (#32579

    )
    
    This committ removes the getMetadata() methods from the DateHistoGroupConfig 
    and HistoGroupConfig objects. This way the configuration objects do not rely on RollupField.formatMetaField() anymore and do not expose a getMetadata() 
    method that is tighlty coupled to the rollup indexer.
    tlrx authored and jimczi committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    febf169 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    91ceb08 View commit details
    Browse the repository at this point in the history
  18. Add hook to skip asserting x-content equivalence (#33114)

    This commit adds a hook to AbstractSerializingTestCase to enable
    skipping asserting that the x-content of the test instance and an
    instance parsed from the x-content of the test instance are the
    same. While we usually expect these to be the same, they will not be the
    same when exceptions are involved because the x-content there is lossy.
    jasontedor authored and jimczi committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    77282e8 View commit details
    Browse the repository at this point in the history
  19. Fix race condition in scheduler engine test

    This commit addresses a race condition in the scheduler engine test that
    a listener that throws an exception does not cause other listeners to be
    skipped. The race here is that we were counting down a latch, and then
    throwing an exception yet an assertion that expected the exception to
    have been thrown already could execute after the latch was counted down
    for the final time but before the exception was thrown and acted upon by
    the scheduler engine. This commit addresses this by moving the counting
    down of the latch to definitely be after the exception was acted upon by
    the scheduler engine.
    jasontedor authored and jimczi committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    a8941a9 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    675760e View commit details
    Browse the repository at this point in the history
  21. Revert "Do NOT allow termvectors on nested fields (#32728)"

    This reverts commit fdff8f3.
    mayya-sharipova authored and jimczi committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    9824bf9 View commit details
    Browse the repository at this point in the history
  22. [Test] Fix sporadic failure in MembershipActionTests

    Rewrite test that require Version.V_5 constants.
    jimczi committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    0d0927e View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    848ea39 View commit details
    Browse the repository at this point in the history
  24. unused import

    jimczi committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    bc955cd View commit details
    Browse the repository at this point in the history
  25. adapt to new explanation

    jimczi committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    89dc9e3 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    0b76d68 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2018

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

Commits on Aug 28, 2018

  1. fix expectation in test

    jimczi committed Aug 28, 2018
    Configuration menu
    Copy the full SHA
    7655727 View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2018

  1. Configuration menu
    Copy the full SHA
    2786379 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b85116a View commit details
    Browse the repository at this point in the history
  3. adapt chinese analyzer bwc

    jimczi committed Aug 29, 2018
    Configuration menu
    Copy the full SHA
    b6507fe View commit details
    Browse the repository at this point in the history
  4. adapt docs

    jimczi committed Aug 29, 2018
    Configuration menu
    Copy the full SHA
    f4a44bf View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    46e8c25 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2018

  1. Configuration menu
    Copy the full SHA
    6269744 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d8a370c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c2313b1 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2018

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

    jimczi committed Aug 31, 2018
    Configuration menu
    Copy the full SHA
    8d9db07 View commit details
    Browse the repository at this point in the history
  3. awaitsfix some tests

    jimczi committed Aug 31, 2018
    Configuration menu
    Copy the full SHA
    595c529 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e935c0e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bef0c14 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2018

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

Commits on Sep 5, 2018

  1. 1 Configuration menu
    Copy the full SHA
    67efaae View commit details
    Browse the repository at this point in the history
  2. fix test

    jimczi committed Sep 5, 2018
    Configuration menu
    Copy the full SHA
    e32f54c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6bae99d View commit details
    Browse the repository at this point in the history
  4. styl

    jimczi committed Sep 5, 2018
    Configuration menu
    Copy the full SHA
    dc04a50 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    647b846 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8002bce View commit details
    Browse the repository at this point in the history
  7. unused import

    jimczi committed Sep 5, 2018
    Configuration menu
    Copy the full SHA
    0cc44a9 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9a6d074 View commit details
    Browse the repository at this point in the history