I've been trying WSO2DAS server and I'm looking for a way to limit the result fields from search queries. I'm using some fields to store potentially large content and I don't want to always have those in the results. The underlying SOLR seems to be able to support this using fl query parameter (https://cwiki.apache.org/confluence/display/solr/Common+Query+Parameters) but I'm not able to specify those using the DAS REST API. I found some indications to put DAS on external SOLR implementation but it seems to be limited to the registry not the analytics events tables. Is there a way to select or limit output results ?
WSO2 DAS 3.1.0 Select result fields with REST Search API
117 Views Asked by Niels Lous At
1
There are 1 best solutions below
Related Questions in REST
- Spring RestTemplate passing the type of the response
- .net rest service with JSON string and consumed with java client
- SuiteCRM how to retrieve all account related contacts
- http status code for failed email send
- cloud foundry - 413 Request Entity Too Large
- Why does PHP add "\r\n" to an empty string?
- WCF Service not accepting multiple body parameters
- How to send Rest GET request that contains "#" value in url parameters?
- Phalcon PHP - RESTful API
- Object of class CS_REST_Wrapper_Result could not be converted to string in CAMPAIGN MONITOR
- purchase individual items and subscriptions in the same PayPal REST API transaction
- Empty Response Received on Android POST Request
- angular load more tweets onclick
- Async vs Horizontal scaling
- Responding to an Office 365 event invite via REST
Related Questions in SOLR
- Developing a search and tag heavy website
- How can I integrate Solr5.1.0 with Nutch1.10
- Solr ping taking time during full import
- Indexed data is not displaying on storefront
- Heap size issue on migrating from Solr 5.0.0 to Solr 5.1.0
- Monolithic ETL to distributed/scalable solution and OLAP cube to Elasticsearch/Solr
- Exact word not boosting much Solr
- Solr stopped with Error opening new searcher at org.apache.solr.core
- Data import in solr from multiple entities
- solr reindexing issue for EdgeNgramFilter
- Heap memory Solr and Elasticsearch
- How to index documents with their metadata in a DB using Solr 5.1.0
- Isnull equivalent in SOLR
- SolrNet query not working for Scandinavian characters
- Query always the same with Sunspot/Solr on rails
Related Questions in WSO2-DAS
- Referring to a column alias in two tables
- WSO2 DAS Metric DB size increasing
- How to config DAS_AGENT with wso2am-analytics-2.0.0 HA
- wso2 carbon how to fix Cannot read property 'getTenantDomain' of undefined at getGadgetLocation?
- Using LIKE to compare two columns in SPARK SQL
- sortBy is not working in wso2 DAS. Will you please provie how to query through REST API to WS02 DAS table stream
- WSO2 DAS Dashboard - Creating custom gadget
- WSO2 DAS Dashboard - Delete unused pages
- WSO2 API Manager - WSO2 Analytics Server - Dropping wrongly formatted event Error
- wso2 - Problem commad merge API_REQ_USER_BROW_SUMMARY
- Howto create WSO2 DAS event receiver using management API
- create a gadget in dashboard designer of DAS WSO2
- ML integration with WSO2 Data Analytics Server
- there is no tenant concept in WSO2 ML?
- Call a R script from WSO2 - Bridging the loose ends
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can specify the required columns in the POST request payload body or as a request query parameter if it is a GET request. Unfortunately, this parameter was missing from the Docs. We have updated the REST API docs with the necessary changes. You can find updated documentation below