-
Notifications
You must be signed in to change notification settings - Fork 246
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
Pass query parameters to remoteQueryService.planQuery call #2043
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Previously, no parameters were passed. This meant the receiver did not get any information about the query to plan, resulting in an odd `415 Unsupported Media Type` error due to the empty POST body.
apmoriarty
approved these changes
Jul 25, 2023
mineralntl
approved these changes
Jul 25, 2023
Interestingly, this issue was present in the We'll need to be careful when we merge upwards. |
hgklohr
pushed a commit
that referenced
this pull request
Aug 3, 2023
* Previously, no parameters were passed. This meant the receiver did not get any information about the query to plan, resulting in an odd `415 Unsupported Media Type` error due to the empty POST body. Conflicts: warehouse/query-core/src/main/java/datawave/query/tables/RemoteEventQueryLogic.java
hgklohr
pushed a commit
that referenced
this pull request
Aug 3, 2023
* Previously, no parameters were passed. This meant the receiver did not get any information about the query to plan, resulting in an odd `415 Unsupported Media Type` error due to the empty POST body. Conflicts: warehouse/query-core/src/main/java/datawave/query/tables/RemoteEventQueryLogic.java
hgklohr
added a commit
that referenced
this pull request
Aug 8, 2023
* Closes #1961 - Use MoreExecutors.newDirectExecutorService() for ListenableFuture callbacks (#1962) * Closes #1963 - Bump ZK to 3.8.1 (#1965) * 5.2.1 * 5.2.2-SNAPSHOT * Date volume chooser (#1347) (#1948) * Date volume chooser (#1347) * First pass at date based volume chooser * Moved to balancers package and renamed package * Adding missed rename * Update dist.xml to reflect new package name * Updates for quickstart and docs to point to new jar * Updates for accumulo 2.1 * Some minor cleanup * Updating tests * Update date chooser with comments. * Updates for date based volume chooser --------- Co-authored-by: Adam Lerman awlerma <[email protected]> Co-authored-by: Adam Lerman <[email protected]> * 5.2.2 * 5.2.3-SNAPSHOT * Updated to avoid using a separate a listener executor that requires being shutdown (#1980) * 5.2.3 * 5.2.4-SNAPSHOT * Update query limits handling to allow rules based on systemFrom values (#1951) * 5.2.4 * 5.2.5-SNAPSHOT * Merge release/version3.41 into release/version5.2 (#2033) * 5.2.5 * 5.2.6-SNAPSHOT * Fixes #2039 (#2040) * Fixes #2039 - Restored ability to configure AccumuloOutputFormat's accumulo client via script - Cleanup of IngestJob's CBMutationOutputFormatter setup for live ingest * RE: #2039 - Ensure that parent class configure method is used * 5.2.6 * 5.2.7-SNAPSHOT * Fix formatting for AccumuloHelper * ThreadConfigurableLogger not suppressing logs in query metric writing (#2023) (#2024) Conflicts: web-services/common-util/src/main/java/datawave/webservice/common/logging/ThreadConfigurableLogger.java * 5.2.7 * 5.2.8-SNAPSHOT * Pass query parameters to remoteQueryService.planQuery call (#2043) * Previously, no parameters were passed. This meant the receiver did not get any information about the query to plan, resulting in an odd `415 Unsupported Media Type` error due to the empty POST body. Conflicts: warehouse/query-core/src/main/java/datawave/query/tables/RemoteEventQueryLogic.java * 5.2.8 * 5.2.9-SNAPSHOT * Correct merge conflicts --------- Co-authored-by: Keith Ratcliffe <[email protected]> Co-authored-by: alerman <[email protected]> Co-authored-by: Adam Lerman awlerma <[email protected]> Co-authored-by: Adam Lerman <[email protected]> Co-authored-by: Ivan Bella <[email protected]> Co-authored-by: Drew Farris <[email protected]> Co-authored-by: Bill Oley <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
/plan
endpoint. This meant the receiver did not get any information about the query to plan, resulting in an odd415 Unsupported Media Type
error due to the empty POST body.