i have vespa verion 5.220.14 installed in one server where i have used json (provided by gson lib ) in searcher, while i am deploying the same code in vespa version 5.550 in a diffrentserver it is not working and changing it to string.
Attached are the screenshot for same.
What could be the possible reason for same,
And what should be resolution to make this work. 
vespa json object changes to string
147 Views Asked by divyansh At
2
There are 2 best solutions below
Related Questions in DATABASE
- How to add the dynamic new rows from my registration form in my database?
- How to store a date/time in sqlite (or something similar to a date)
- Problem with add new attribute in table with BOTO3 on python
- When an E-R attribute should be perceived as a relationship attribute or as an entity set attribute?
- SQLAlchemy: efficient relationship loading in 3-way many-to-many relationship
- Cannot connect to Postgres Database when running Quarkus Tests with Gitlab ci
- Local or remote database with react-native?
- I want to edit a specific row in database
- How to enter data in mongodb array at specific position such that if there is only 2 data in array and I want to insert at 5, then rest data is null
- Open Web Library
- database login.py and register.py error showing 404 file not found and doesn't work
- SQL71561: SqlComputedColumn: When column selected
- Liquibase as SaaS To Configure Multiple Database as Dynamic
- Updated max input vars but table still shows error
- Spring does not map set of roles
Related Questions in DEPLOYMENT
- Github Pages Deployment deploys a blank page
- Django Admin Panel and Sub URLs Returning 404 Error on Deployment
- Next 14 App Router pages from dynamic routes not generating when deployed on vercel but only work on localhost
- Deployment through app engine, cloud sql database, problem connecting with server code, doesn't connect
- How to Deploy and Manage a Python Application with Systemd
- Elasticbeanstalk FastAPI application is intermittently not responding to https requests
- Duplicate GET requests - Rails & Heroku
- How to use a proxy to obtain a static IP for my Node.js application?
- Next js app throwing 404 error when deployed to vercel, even though it works fine on local
- How to deploy my shiny application (with multiple files) via Docker
- Deploying telegram bot
- How to deploy angular 17 SSR into IIS
- Route not working on refreshing the page in react deployed application
- Vercel wildcard route's src results in 404 error in Hapi.js backend
- Django deployment with GTK3
Related Questions in SERVER
- Sending data from C++ server to React.js client
- Deploy Flutter and Laravel php mobile app on the host server
- Protect Server Actions with Next Auth in Next JS 14
- Cannot interact with netcat server over distance
- Facing fatal errors while running "yum update" command on CentOS 7/Cloudlinux 7
- Is there any way to set a printer as default according with Active Directory Policy Security Group and PC hostname?
- How to run GRPC and REST server on same port in Go?
- Share files from the server without data or internet usage
- Django Not Sending Tasks to Celery in Production
- Install Postfix Mail Server
- Is it viable proxying all my mobile apps requests, to some kind knowing that a request is coming from a secure source
- How does a server handle multiple requests, and how does is know where to send which response?
- Trying to launch batch file from powershell, and immediately closes
- Apache: How can I redirect to a subfolder with a URL param but serve required content via the main URL?
- Developing on a remote server an app symfony
Related Questions in VESPA
- Vespa not able to identify the embedding id during the query. even when it is in vald embedders list
- How to apply custom analyzers on a field in Vespa schema
- Recommended approach for managing entries in a vector database when the embeddings are identical but their metadata differs?
- How Vespa addresses memory limitations in big data applications
- Find all documents with exact expression
- Result format of Vespa Query
- String comparison in Vespa ranking expression behaving oddly
- Using weakAnd with an array<string> attribute
- Vespa - ReturnCode(NO_SPACE, External feed is blocked due to resource exhaustion: in content cluster)
- Rank by maximum bm25 score on a field of type array<string>
- How could autocomplete be implemented in Vespa search?
- Vespa counts the number of times a word appears in a string
- Feeding documents in Vespa
- Utilizing vespa only as vector database and not embedder
- How to view Vespa Embedding?
Related Questions in DATABASE-VERSIONING
- What could be optimal way of storing form response with version history or changelog when someone updates some data?
- How to Baseline an sql script so that it won't show in the pending migrations in flyway
- How can I disable sqlalchemy versioning auto-populate transaction table for running tests?
- GraphDB history and versioning plugin weird behaviour
- How to update entries in a database created by spring and jpa
- vespa json object changes to string
- Versioning document changes in Vespa
- How to skip all callbacks except paper-trail when updating an ActiveRecord model using update_column method?
- Is there a way to store database modifications with a versioning feature (for eventual versions comparaison)?
- Versioning concept for records with relationships (foreign key) [Database]
- How onUpgrade() works if anyone uninstall and cleared all data?
- VS 2019 - When I press the F5 button on the SQL Server Database Project I don't want to deploy to the database. I just want to build the project
- Does the Azure Storage Emulator support blob versioning? If so, how do I enable it?
- Django (DRF) Serializers and MariDB Versioning Tables
- possible ways to version your RDF store in gitlab
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 # Hahtags
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?

special-handling of org.json in rendering was removed one year ago:
https://github.com/vespa-engine/vespa/pull/16326/files#diff-8cff528a21faf96a6e90b1490adc25ff474ad72e973627ee4e8b9734084ad86f
you should probably wrap your "data" field in a facade that implements the com.yahoo.data.JsonProducer interface:
https://javadoc.io/doc/com.yahoo.vespa/container-search/latest/com/yahoo/data/JsonProducer.html