Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jmeterで解析できるjsonのサイズに制限はありますか?
jmeter 初期化スクリプトで json を使用しようとしています。json のサイズは非常に大きいです。json を切り詰めると、解析にエラーがないことがわかります。しかし、元のサイズではエラーが発生します。
他のjavascriptパーサーでテストしたので、json自体は適切です。
更新:実際に制限があることが確立されているため、問題は制限を回避する方法があるかどうかです。
私ができる唯一の回避策は、次のように js を複数のファイルに分割することでした。
file1.js: vars.putObject('huge_json', {"foo" : [...], "bar" : {...}}); file2.js: vars.getObject('huge_json').foo.push({"foo_child" : {...}}); ... final_file: var hugeJson = vars.getObject('huge_json');