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

Feature/query microservices #3

Merged
merged 207 commits into from May 20, 2024
Merged

Feature/query microservices #3

merged 207 commits into from May 20, 2024

Commits on May 25, 2022

  1. Configuration menu
    Copy the full SHA
    60ac471 View commit details
    Browse the repository at this point in the history
  2. WIP: Trying to get QueryLogicFactory configured and working correctly…

    … via the spring boot datawave query starter.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    ba6f374 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6608ad1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    29ae316 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7434a81 View commit details
    Browse the repository at this point in the history
  6. minor fixes

    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    c915e18 View commit details
    Browse the repository at this point in the history
  7. Added query service event handler and continued to work on next, clos…

    …e, cancel locking logic.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    0c3b09f View commit details
    Browse the repository at this point in the history
  8. Removed the query lock manager since we now have locking coupled with…

    … the hazelcast cache
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    ba49829 View commit details
    Browse the repository at this point in the history
  9. Added the query cache to the query starter. Created an initial direct…

    …ory structure for the query-executor.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    bb3f07d View commit details
    Browse the repository at this point in the history
  10. Various updates:

     - Updated Query Json Serialization to be polymorphic.
     - Updated Query Json Serialization to serialize the query as a string.
     - Created a ProxiedUserEntity-specific AuthorizationsUtil to avoid usage of DatawavePrincipal.
     - Updated all query microservices to use the spring-boot provided log4j dependencies.
     - Moved Local query storage cache implementation to test and created a test jar.
     - Renamed the query cache dependency to query-storage to be consistent with the api and parent modules.
     - Renamed various application launcher classes to be consistent with our existing microservices.
     - Removed Autowired injection for components where a constructor would suffice.
     - Updated QueryTaskNotification to have it be published via the spring cloud bus.
     - Many other various changes/improvements.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    435f8a6 View commit details
    Browse the repository at this point in the history
  11. Reworked some of the conditional annotations for query storage, and u…

    …pdated QueryStorageCacheTest to work with an external rabbitmq
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    70a74c9 View commit details
    Browse the repository at this point in the history
  12. Almost have a test working for the query executor. Removed the DEFINE…

    … action. Renamed the query status cache to CachedQueryStatus.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    88a5b1a View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    d4dfc2f View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    6fc7903 View commit details
    Browse the repository at this point in the history
  15. Updated the query executor to use a thread pool, and to handle QueryR…

    …equest objects instead of TaskNotification objects.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    ba4e52a View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    950f2b6 View commit details
    Browse the repository at this point in the history
  17. Removed the TaskNotification in lieu of the QueryRequest. Changed que…

    …ryid and query pool to be String objects for avoid excessive object creations and conversions.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    3ac8a1a View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    b0eae16 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    df53812 View commit details
    Browse the repository at this point in the history
  20. Updated next call logic to be able to determine when all results have…

    … been retrieved for a query.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    80aa297 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    caf9e64 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    daba29a View commit details
    Browse the repository at this point in the history
  23. Updated to generate results if numConcurrentNextCalls>0 when a query …

    …is closed.
    
    Updated to adjust the number of results to generate capped by max results.
    Added test cases to verify we generate results as appropriate (ShouldGenerateResultsTest)
    Updated a bunch of javadoc to remove all warnings
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    a27ddcd View commit details
    Browse the repository at this point in the history
  24. Working query executor tests

    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    6d74264 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    3f8f7cf View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    9413697 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    3ffb3f2 View commit details
    Browse the repository at this point in the history
  28. Updated some of the json results serialization.

    Fixed some kafka query queue manager mechanisms and reenabled tests.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    8733b70 View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    5eb1a5e View commit details
    Browse the repository at this point in the history
  30. Updated the query starter to include a default QueryLogicFactory.xml,…

    … and updated the query service to include that file as a resource.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    7a98ac5 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    444182e View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    3eb6052 View commit details
    Browse the repository at this point in the history
  33. Added updating query metrics in the query executor. Added updated las…

    …tUpdated in the query status.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    0211234 View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    eceab7e View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    3fec1a0 View commit details
    Browse the repository at this point in the history
  36. Fixed the test configurations

    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    21b00aa View commit details
    Browse the repository at this point in the history
  37. Fixed property

    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    d88524f View commit details
    Browse the repository at this point in the history
  38. Configure to use rabbitmq. Set checkpointable to false to allow queri…

    …es to work for now
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    78e2b50 View commit details
    Browse the repository at this point in the history
  39. Updated the query service to wait for a create event from the executo…

    …r service before returning to the user.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    5b01646 View commit details
    Browse the repository at this point in the history
  40. Refactored the common, query, and connection-pool modules into a sepa…

    …rate, independent services module, which is required by both the webservice and microservices.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    6ab94b6 View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    5fb8437 View commit details
    Browse the repository at this point in the history
  42. Updated to store the originService in the QueryStatus cache for use b…

    …y the executor to notify the origin service of completion.
    
    Updated the next and seek counts in the QueryStatus cache for use by the QueryManagement service.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    0752018 View commit details
    Browse the repository at this point in the history
  43. Modified task id to be an integer, and updated the task states object…

    … to use sparse bit sets instead.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    7ff7842 View commit details
    Browse the repository at this point in the history
  44. Changed the query executor to immediately set a task as running once …

    …acquired from the TaskStates instead of waiting for the thread to run
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    efeefc4 View commit details
    Browse the repository at this point in the history
  45. Execute next status in sequence instead of randomly.

    Added a CloseCancelCache that is used to avoid excessive close/cancel executions via the FindWorkMonitor/Task
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    c8f9b31 View commit details
    Browse the repository at this point in the history
  46. Added eror code into the query status, and added looking for a failed…

    … query in the NextCall
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    dc215d4 View commit details
    Browse the repository at this point in the history
  47. Separated the query cache into query status cache, a task states cach…

    …e, and a task cache.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    1f36623 View commit details
    Browse the repository at this point in the history
  48. Configuration menu
    Copy the full SHA
    13ae2ad View commit details
    Browse the repository at this point in the history
  49. Configuration menu
    Copy the full SHA
    23d0af2 View commit details
    Browse the repository at this point in the history
  50. Updates to get this to compile

    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    cfa2e71 View commit details
    Browse the repository at this point in the history
  51. Configuration menu
    Copy the full SHA
    5f1a63d View commit details
    Browse the repository at this point in the history
  52. Updated query checkpoints to store the query configuration. Updated q…

    …uery service next call to throw exception without wrapping as RuntimeException.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    5b108a3 View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    17afd1f View commit details
    Browse the repository at this point in the history
  54. Renamed some of the executor classes to be more understandable.

    changed the QueryExecutor to hear self notifications
    Updated the checkpoint mechanism to send a notification for each task
    Updated the executor task to send a notification when a task is not complete
    Updated the next call to ensure no results are missed (but now get duplicate results?)
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    40cb7b1 View commit details
    Browse the repository at this point in the history
  55. delete the topic

    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    bdfbd97 View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    c5c801e View commit details
    Browse the repository at this point in the history
  57. Configuration menu
    Copy the full SHA
    3445f97 View commit details
    Browse the repository at this point in the history
  58. Configuration menu
    Copy the full SHA
    73075a2 View commit details
    Browse the repository at this point in the history
  59. Updated executor to indicate when all tasks are generated, and to dis…

    …allow asynchronous create task execution. Also updated executor tests to be more deterministic, and to use the hazelcast cache instead of caffeine.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    c9b6ad1 View commit details
    Browse the repository at this point in the history
  60. Fixed a bug introduced by the last change which caused multiple execu…

    …tors to process a task. Moved the query status update util to the query starter so it can be used by all services.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    97d1d71 View commit details
    Browse the repository at this point in the history
  61. Reworked some of the messaging logic in order to ensure that the corr…

    …ect number of results are consistently returned. Removed a bunch of code and configuration which didn't seem to be used anymore.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    8f60145 View commit details
    Browse the repository at this point in the history
  62. Added plan and predict rest endpoints to the query service. Plan is f…

    …ully implemented, predict is not.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    651d173 View commit details
    Browse the repository at this point in the history
  63. Configuration menu
    Copy the full SHA
    97f9bc3 View commit details
    Browse the repository at this point in the history
  64. Added a hazelcast query results manager. Added a hazelcast claim chec…

    …k mechanism to handle messages which are too big for rabbitmq. Fixed some of the locking to use the intended cache.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    a961698 View commit details
    Browse the repository at this point in the history
  65. Configuration menu
    Copy the full SHA
    b911cbf View commit details
    Browse the repository at this point in the history
  66. Updated QueryStorageCacheTest to limit application creation to the Qu…

    …eryStorageCacheTest profile.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    c4720ab View commit details
    Browse the repository at this point in the history
  67. Test fixes

    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    80760ea View commit details
    Browse the repository at this point in the history
  68. Configuration menu
    Copy the full SHA
    5355247 View commit details
    Browse the repository at this point in the history
  69. Configuration menu
    Copy the full SHA
    6160374 View commit details
    Browse the repository at this point in the history
  70. Added initial lookupUUID & batchLookupUUID functionality to the query…

    … service.
    
    Restructured use of QueryLogicFactory.xml to use a single instance of that file from the query starter.
    Updated query microservices to use a common application-QueryStarterDefaults.yml file for property defaults, with microservice-specific application-QueryStarterOverrides.yml for property overrides.
    Added scripts to test lookup UUID functionality.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    d38da68 View commit details
    Browse the repository at this point in the history
  71. Integration merge required changes

    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    ea9cb07 View commit details
    Browse the repository at this point in the history
  72. Got content lookups working. Updated base64 decoding logic to avoid t…

    …he use of deprecated infinispan library.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    4464ed5 View commit details
    Browse the repository at this point in the history
  73. Worked through the edge query logic configuration to work with our sp…

    …ring boot configuration of the microservices
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    199091c View commit details
    Browse the repository at this point in the history
  74. Tracking down error handling

    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    4fb6815 View commit details
    Browse the repository at this point in the history
  75. Configuration menu
    Copy the full SHA
    81efc12 View commit details
    Browse the repository at this point in the history
  76. Updated the edge xmlBeansPath to pull from a unique property instead …

    …of using the one for the query logic factory.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    201d55b View commit details
    Browse the repository at this point in the history
  77. Updated version 3.11-SNAPSHOT

    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    fbb7752 View commit details
    Browse the repository at this point in the history
  78. Configuration menu
    Copy the full SHA
    d867967 View commit details
    Browse the repository at this point in the history
  79. Configuration menu
    Copy the full SHA
    f0f9c2f View commit details
    Browse the repository at this point in the history
  80. Configuration menu
    Copy the full SHA
    a016f52 View commit details
    Browse the repository at this point in the history
  81. Configuration menu
    Copy the full SHA
    9b34b71 View commit details
    Browse the repository at this point in the history
  82. Configuration menu
    Copy the full SHA
    204ad96 View commit details
    Browse the repository at this point in the history
  83. Updated guava to the latest version across the board to fix a hazelca…

    …st-related serialization issue.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    8ff1042 View commit details
    Browse the repository at this point in the history
  84. Configuration menu
    Copy the full SHA
    76540e7 View commit details
    Browse the repository at this point in the history
  85. Configuration menu
    Copy the full SHA
    044f1f3 View commit details
    Browse the repository at this point in the history
  86. The executor will now startup multiple tasks for a query at once give…

    …n the number of threads available, the max
    
    concurrent tasks set on the query, and the number of tasks ready to run.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    771f349 View commit details
    Browse the repository at this point in the history
  87. Updated the results task to periodically update the checkpoint as res…

    …ults are being gathered to minimize rework if the executor goes down
    
    Also update junit to 4.13.2 and jupiter/vintage to 5.7.2
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    132e1a0 View commit details
    Browse the repository at this point in the history
  88. Configuration menu
    Copy the full SHA
    3ab7376 View commit details
    Browse the repository at this point in the history
  89. Configuration menu
    Copy the full SHA
    1ba50cd View commit details
    Browse the repository at this point in the history
  90. Added a thread that will periodically update the QueryTask last updated

    Ensure query logics are closed
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    9ab28b5 View commit details
    Browse the repository at this point in the history
  91. Fixed some issues with hanging tests.

    Updated composite, and lookup query logics to be checkpointable.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    0371bbd View commit details
    Browse the repository at this point in the history
  92. Configuration menu
    Copy the full SHA
    949b718 View commit details
    Browse the repository at this point in the history
  93. Added remaining query logics to QueryLogicFactory.xml - many of which…

    … still need to be tweaked/tested.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    be89be2 View commit details
    Browse the repository at this point in the history
  94. Configuration menu
    Copy the full SHA
    ce107c9 View commit details
    Browse the repository at this point in the history
  95. Configuration menu
    Copy the full SHA
    6329d33 View commit details
    Browse the repository at this point in the history
  96. Revert "Added a RUNNING query status and changed checks appropriately"

    This reverts commit 808bf47d8b6c0fbc74d7a7b2f53a685d98ff20f5.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    f2c0ea9 View commit details
    Browse the repository at this point in the history
  97. Updated datawave quickstart to remove the guava jar bundles with accu…

    …mulo, and use the one bundled with datawave. Added test scripts for additional query logics.
    
    Updated CountAggregatingIterator to use the query logic's Marking Functions object.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    9b3f5d4 View commit details
    Browse the repository at this point in the history
  98. Changed query status constants

    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    6b5e687 View commit details
    Browse the repository at this point in the history
  99. Updated to not checkpoint the query configuration if the checkpointab…

    …le boolean in the query logic is set to false.
    
    Got the field index count query logics working, but only with checkpointable set to false.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    e48164a View commit details
    Browse the repository at this point in the history
  100. Created separate stages for the create task

    Updated the executor task to periodically update the task lastUpdatedMillis for ALL tasks (not just the NextTask)
    Updated the orphaned task updater to fail orphaned create tasks and tasks then the query has been closed or cancelled.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    29c9b50 View commit details
    Browse the repository at this point in the history
  101. Working on stress testing the system

    Plugged a hole discovered during some stress testing where results may be dropped while closing a listener
    Ensure we update the last updated tasks immediately when setting them to a running state
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    593705e View commit details
    Browse the repository at this point in the history
  102. Made some minor changes to the kafka and rabbitmq result listeners.

    Updated the query scripts to be able to be called from any directory.
    Updated the poundit script to accept an argument representing the number of queries to run.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    90bb607 View commit details
    Browse the repository at this point in the history
  103. Attempted to clean up exceptions that occur when closing things up.

    Tracking of results in the querySummary.txt files
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    eb92c9b View commit details
    Browse the repository at this point in the history
  104. Resolved some pom warnings and updated the QueryStorageCacheTest to c…

    …heck for the correct exception.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    144038e View commit details
    Browse the repository at this point in the history
  105. Configuration menu
    Copy the full SHA
    c3b74e5 View commit details
    Browse the repository at this point in the history
  106. Tested edge event, hit hightlights, and term frequency query logics f…

    …rom the query logic factory.
    jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    e5c6309 View commit details
    Browse the repository at this point in the history
  107. Configuration menu
    Copy the full SHA
    9f2eac4 View commit details
    Browse the repository at this point in the history
  108. Plugged a few holes that were causing unneeded work and periodic stor…

    …age failures while closing queries.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    57dfffa View commit details
    Browse the repository at this point in the history
  109. Added additional script to pound. Made the caches more robust to extr…

    …aineous objects. Other small improvements.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    224847d View commit details
    Browse the repository at this point in the history
  110. Configuration menu
    Copy the full SHA
    2257983 View commit details
    Browse the repository at this point in the history
  111. Configuration menu
    Copy the full SHA
    6327ae6 View commit details
    Browse the repository at this point in the history
  112. Configuration menu
    Copy the full SHA
    f5c4036 View commit details
    Browse the repository at this point in the history
  113. Configuration menu
    Copy the full SHA
    d7b4c86 View commit details
    Browse the repository at this point in the history
  114. xml.bind from javax to jakarta

    Changed required for integration branch merge
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    830cfb9 View commit details
    Browse the repository at this point in the history
  115. Revert "xml.bind from javax to jakarta"

    This reverts commit d71b668a4f8dc47230da91d4b49e0480d5603b7f.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    997fbeb View commit details
    Browse the repository at this point in the history
  116. Configuration menu
    Copy the full SHA
    42582c1 View commit details
    Browse the repository at this point in the history
  117. Configuration menu
    Copy the full SHA
    81c6b5b View commit details
    Browse the repository at this point in the history
  118. Configuration menu
    Copy the full SHA
    b303940 View commit details
    Browse the repository at this point in the history
  119. Moved the table cache reload endpoints, event handler, and monitor in…

    …to the metadata-starter.
    ivakegg authored and jwomeara committed May 25, 2022
    Configuration menu
    Copy the full SHA
    d50cac1 View commit details
    Browse the repository at this point in the history
  120. Configuration menu
    Copy the full SHA
    cc6db10 View commit details
    Browse the repository at this point in the history
  121. Configuration menu
    Copy the full SHA
    a9d8b74 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2022

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

Commits on Jun 8, 2022

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

Commits on Jun 10, 2022

  1. Updated datawave version

    ivakegg committed Jun 10, 2022
    Configuration menu
    Copy the full SHA
    019afd1 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2022

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

Commits on Jun 24, 2022

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

Commits on Jul 1, 2022

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

Commits on Jul 7, 2022

  1. Added scm info for the poms

    jwomeara committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    4eca9a0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b3975d6 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2022

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

Commits on Jul 11, 2022

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

Commits on Jul 13, 2022

  1. Moved query client

    ivakegg committed Jul 13, 2022
    Configuration menu
    Copy the full SHA
    e65b2a3 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2022

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

Commits on Aug 11, 2022

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

Commits on Aug 18, 2022

  1. Configuration menu
    Copy the full SHA
    d543d34 View commit details
    Browse the repository at this point in the history
  2. removed missing reference

    jwomeara committed Aug 18, 2022
    Configuration menu
    Copy the full SHA
    9137cab View commit details
    Browse the repository at this point in the history
  3. fixed a typo

    jwomeara committed Aug 18, 2022
    Configuration menu
    Copy the full SHA
    1a01d2a View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2022

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

Commits on Sep 16, 2022

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

Commits on Oct 17, 2022

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

Commits on Oct 21, 2022

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

Commits on Oct 24, 2022

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

    jwomeara committed Oct 24, 2022
    Configuration menu
    Copy the full SHA
    83a61ea View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2022

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

Commits on Dec 2, 2022

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

Commits on Dec 5, 2022

  1. Merge remote-tracking branch 'origin/feature/queryMicroservices' into…

    … feature/queryMicroservices
    jwomeara committed Dec 5, 2022
    Configuration menu
    Copy the full SHA
    465633b View commit details
    Browse the repository at this point in the history
  2. Updated server proxied user details supplier to not be required when …

    …running in a map reduce query context.
    jwomeara committed Dec 5, 2022
    Configuration menu
    Copy the full SHA
    56c7e4e View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2022

  1. Added the ability to specify mandatory query syntax as a list in the …

    …spring yml configuration
    jwomeara committed Dec 10, 2022
    Configuration menu
    Copy the full SHA
    ec3618d View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2022

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

Commits on Dec 14, 2022

  1. formatting fixes

    jwomeara committed Dec 14, 2022
    Configuration menu
    Copy the full SHA
    86dc6e3 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2022

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

Commits on Dec 23, 2022

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

Commits on Dec 27, 2022

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

Commits on Jan 20, 2023

  1. integration/main merge

    ivakegg committed Jan 20, 2023
    Configuration menu
    Copy the full SHA
    27bedae View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2023

  1. Configuration menu
    Copy the full SHA
    4202a06 View commit details
    Browse the repository at this point in the history
  2. Updated hazelcast version

    jwomeara committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    e700bd3 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2023

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

Commits on Feb 15, 2023

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

Commits on Mar 3, 2023

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

Commits on Apr 8, 2023

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

Commits on Apr 11, 2023

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

Commits on Apr 14, 2023

  1. Added some logging

    ivakegg committed Apr 14, 2023
    Configuration menu
    Copy the full SHA
    3ec8eb2 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2023

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

Commits on May 6, 2023

  1. Configuration menu
    Copy the full SHA
    63b35cc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    070109f View commit details
    Browse the repository at this point in the history

Commits on May 12, 2023

  1. bumped datawave version.

    jwomeara committed May 12, 2023
    Configuration menu
    Copy the full SHA
    85bd817 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2023

  1. Updated the query results publisher and setup the kafka manager to cr…

    …eate topics manually.
    jwomeara committed May 19, 2023
    Configuration menu
    Copy the full SHA
    bd3e253 View commit details
    Browse the repository at this point in the history
  2. bumped datawave version

    jwomeara committed May 19, 2023
    Configuration menu
    Copy the full SHA
    9b28e1f View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2023

  1. Updated datawave version

    jwomeara committed Jun 23, 2023
    Configuration menu
    Copy the full SHA
    c9cb565 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2023

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

Commits on Aug 7, 2023

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

Commits on Aug 31, 2023

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

Commits on Sep 14, 2023

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

Commits on Sep 18, 2023

  1. bumped release version

    jwomeara committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    56e5bf4 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2023

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

Commits on Oct 20, 2023

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

Commits on Nov 16, 2023

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

Commits on Nov 22, 2023

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

Commits on Dec 1, 2023

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

Commits on Dec 13, 2023

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

Commits on Dec 14, 2023

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

Commits on Dec 23, 2023

  1. Integrated preInitialize

    ivakegg committed Dec 23, 2023
    Configuration menu
    Copy the full SHA
    c5aae30 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2024

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

Commits on Feb 10, 2024

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

Commits on Feb 13, 2024

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

Commits on Mar 6, 2024

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

Commits on Mar 13, 2024

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

Commits on Mar 18, 2024

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

Commits on Mar 20, 2024

  1. formatting

    jwomeara committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    db0fd3e View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2024

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

Commits on Apr 8, 2024

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

Commits on Apr 26, 2024

  1. PR feedback

    jwomeara committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    71e3749 View commit details
    Browse the repository at this point in the history
  2. PR feedback

    jwomeara committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    62e495e View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2024

  1. PR feedback

    jwomeara committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    e2faf51 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. PR feedback

    jwomeara committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    65979f8 View commit details
    Browse the repository at this point in the history
  2. pr feedback

    jwomeara committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    949a15d View commit details
    Browse the repository at this point in the history
  3. PR feedback

    jwomeara committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    42fbb1c View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2024

  1. PR feedback

    jwomeara committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    7e36c36 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2024

  1. PR feedback

    jwomeara committed May 1, 2024
    Configuration menu
    Copy the full SHA
    034755b View commit details
    Browse the repository at this point in the history
  2. pr feedback

    jwomeara committed May 1, 2024
    Configuration menu
    Copy the full SHA
    f41489c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fe4c815 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2024

  1. pr feedback

    jwomeara committed May 2, 2024
    Configuration menu
    Copy the full SHA
    243b3c6 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2024

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

Commits on May 6, 2024

  1. pr feedback

    jwomeara committed May 6, 2024
    Configuration menu
    Copy the full SHA
    819b78b View commit details
    Browse the repository at this point in the history
  2. pr feedback

    jwomeara committed May 6, 2024
    Configuration menu
    Copy the full SHA
    aa88a61 View commit details
    Browse the repository at this point in the history