From 01d0afd0e7534c23d46e5a1b59ac519598468bd3 Mon Sep 17 00:00:00 2001 From: manelcecs Date: Thu, 26 Oct 2023 08:06:06 +0200 Subject: [PATCH 01/19] Add initial Jest config --- jest.config.ts | 20 + package.json | 4 + tsconfig.json | 8 +- yarn.lock | 1892 +++++++++++++++++++++++++++++++++++++++++++++++- 4 files changed, 1895 insertions(+), 29 deletions(-) create mode 100644 jest.config.ts diff --git a/jest.config.ts b/jest.config.ts new file mode 100644 index 00000000..e8f237e1 --- /dev/null +++ b/jest.config.ts @@ -0,0 +1,20 @@ +import type { Config } from '@jest/types'; + +const config: Config.InitialOptions = { + verbose: true, + preset: 'ts-jest', + testEnvironment: 'node', + testPathIgnorePatterns: ['/node_modules/'], + testMatch: ['/**/*.spec.ts'], + coveragePathIgnorePatterns: ['/node_modules/', '/test/'], + clearMocks: true, + transform: { + '^.+\\.ts?$': 'ts-jest', + }, + transformIgnorePatterns: ['node_modules/(?!(@unocha)/)'], + modulePathIgnorePatterns: ['/test/'], + setupFilesAfterEnv: ['/tests/test-environment-setup.ts'], + testTimeout: 100000, +}; + +export default config; diff --git a/package.json b/package.json index 7dda3cc6..92aad302 100644 --- a/package.json +++ b/package.json @@ -34,12 +34,16 @@ "@hapi/hapi": "^20.2.1", "@types/bunyan": "^1.8.8", "@types/hapi__hapi": "^20.0.9", + "@types/jest": "^29.5.5", "@types/node": "^18.16.19", + "@types/pg": "^8.10.2", "@unocha/hpc-repo-tools": "^3.0.1", "eslint": "^8.44.0", "husky": "^8.0.3", + "jest": "^29.7.0", "lint-staged": "^13.2.2", "prettier": "2.8.8", + "ts-jest": "^29.1.1", "ts-node-dev": "^2.0.0" }, "engines": { diff --git a/tsconfig.json b/tsconfig.json index cf104830..d39d5a01 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,6 +17,12 @@ "strictPropertyInitialization": false, "strict": true }, - "include": ["src/**/*.ts", "src/**/*.js", "start.js", "bin"], + "include": [ + "src/**/*.ts", + "src/**/*.js", + "start.js", + "bin", + "jest.config.ts" + ], "exclude": ["node_modules"] } diff --git a/yarn.lock b/yarn.lock index 2202c878..d5eed099 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7,6 +7,14 @@ resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== +"@ampproject/remapping@^2.2.0": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" + integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" + "@apollo/protobufjs@1.2.6": version "1.2.6" resolved "https://registry.yarnpkg.com/@apollo/protobufjs/-/protobufjs-1.2.6.tgz#d601e65211e06ae1432bf5993a1a0105f2862f27" @@ -115,6 +123,293 @@ dependencies: xss "^1.0.8" +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.13": + version "7.22.13" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e" + integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== + dependencies: + "@babel/highlight" "^7.22.13" + chalk "^2.4.2" + +"@babel/compat-data@^7.22.9": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.20.tgz#8df6e96661209623f1975d66c35ffca66f3306d0" + integrity sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw== + +"@babel/core@^7.11.6", "@babel/core@^7.12.3": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.20.tgz#e3d0eed84c049e2a2ae0a64d27b6a37edec385b7" + integrity sha512-Y6jd1ahLubuYweD/zJH+vvOY141v4f9igNQAQ+MBgq9JlHS2iTsZKn1aMsb3vGccZsXI16VzTBw52Xx0DWmtnA== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.22.13" + "@babel/generator" "^7.22.15" + "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-module-transforms" "^7.22.20" + "@babel/helpers" "^7.22.15" + "@babel/parser" "^7.22.16" + "@babel/template" "^7.22.15" + "@babel/traverse" "^7.22.20" + "@babel/types" "^7.22.19" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/generator@^7.22.15", "@babel/generator@^7.7.2": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.15.tgz#1564189c7ec94cb8f77b5e8a90c4d200d21b2339" + integrity sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA== + dependencies: + "@babel/types" "^7.22.15" + "@jridgewell/gen-mapping" "^0.3.2" + "@jridgewell/trace-mapping" "^0.3.17" + jsesc "^2.5.1" + +"@babel/helper-compilation-targets@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz#0698fc44551a26cf29f18d4662d5bf545a6cfc52" + integrity sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw== + dependencies: + "@babel/compat-data" "^7.22.9" + "@babel/helper-validator-option" "^7.22.15" + browserslist "^4.21.9" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-environment-visitor@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" + integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== + +"@babel/helper-function-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" + integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== + dependencies: + "@babel/template" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-module-imports@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" + integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== + dependencies: + "@babel/types" "^7.22.15" + +"@babel/helper-module-transforms@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.20.tgz#da9edc14794babbe7386df438f3768067132f59e" + integrity sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/helper-validator-identifier" "^7.22.20" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" + integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== + +"@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-split-export-declaration@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" + integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-string-parser@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" + integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== + +"@babel/helper-validator-identifier@^7.22.19", "@babel/helper-validator-identifier@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" + integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== + +"@babel/helper-validator-option@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040" + integrity sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA== + +"@babel/helpers@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.15.tgz#f09c3df31e86e3ea0b7ff7556d85cdebd47ea6f1" + integrity sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw== + dependencies: + "@babel/template" "^7.22.15" + "@babel/traverse" "^7.22.15" + "@babel/types" "^7.22.15" + +"@babel/highlight@^7.22.13": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54" + integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg== + dependencies: + "@babel/helper-validator-identifier" "^7.22.20" + chalk "^2.4.2" + js-tokens "^4.0.0" + +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.22.15", "@babel/parser@^7.22.16": + version "7.22.16" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.16.tgz#180aead7f247305cce6551bea2720934e2fa2c95" + integrity sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA== + +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-bigint@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" + integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.8.3": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-import-meta@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-jsx@^7.7.2": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" + integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-logical-assignment-operators@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-top-level-await@^7.8.3": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-typescript@^7.7.2": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272" + integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/template@^7.22.15", "@babel/template@^7.22.5", "@babel/template@^7.3.3": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" + integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== + dependencies: + "@babel/code-frame" "^7.22.13" + "@babel/parser" "^7.22.15" + "@babel/types" "^7.22.15" + +"@babel/traverse@^7.22.15", "@babel/traverse@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.20.tgz#db572d9cb5c79e02d83e5618b82f6991c07584c9" + integrity sha512-eU260mPZbU7mZ0N+X10pxXhQFMGTeLb9eFS0mxehS8HZp9o1uSnFeWQuG1UPrlxgA7QoUzFhOnilHDp0AXCyHw== + dependencies: + "@babel/code-frame" "^7.22.13" + "@babel/generator" "^7.22.15" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/parser" "^7.22.16" + "@babel/types" "^7.22.19" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.3.3": + version "7.22.19" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.19.tgz#7425343253556916e440e662bb221a93ddb75684" + integrity sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg== + dependencies: + "@babel/helper-string-parser" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.19" + to-fast-properties "^2.0.0" + +"@bcoe/v8-coverage@^0.2.3": + version "0.2.3" + resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" + integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== + "@cspotcode/source-map-consumer@0.8.0": version "0.8.0" resolved "https://registry.yarnpkg.com/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz#33bf4b7b39c178821606f669bbc447a6a629786b" @@ -511,21 +806,253 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== +"@istanbuljs/load-nyc-config@^1.0.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== + dependencies: + camelcase "^5.3.1" + find-up "^4.1.0" + get-package-type "^0.1.0" + js-yaml "^3.13.1" + resolve-from "^5.0.0" + +"@istanbuljs/schema@^0.1.2": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== + +"@jest/console@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.7.0.tgz#cd4822dbdb84529265c5a2bdb529a3c9cc950ffc" + integrity sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg== + dependencies: + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" + slash "^3.0.0" + +"@jest/core@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.7.0.tgz#b6cccc239f30ff36609658c5a5e2291757ce448f" + integrity sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg== + dependencies: + "@jest/console" "^29.7.0" + "@jest/reporters" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + ansi-escapes "^4.2.1" + chalk "^4.0.0" + ci-info "^3.2.0" + exit "^0.1.2" + graceful-fs "^4.2.9" + jest-changed-files "^29.7.0" + jest-config "^29.7.0" + jest-haste-map "^29.7.0" + jest-message-util "^29.7.0" + jest-regex-util "^29.6.3" + jest-resolve "^29.7.0" + jest-resolve-dependencies "^29.7.0" + jest-runner "^29.7.0" + jest-runtime "^29.7.0" + jest-snapshot "^29.7.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" + jest-watcher "^29.7.0" + micromatch "^4.0.4" + pretty-format "^29.7.0" + slash "^3.0.0" + strip-ansi "^6.0.0" + +"@jest/environment@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.7.0.tgz#24d61f54ff1f786f3cd4073b4b94416383baf2a7" + integrity sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw== + dependencies: + "@jest/fake-timers" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + jest-mock "^29.7.0" + +"@jest/expect-utils@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.7.0.tgz#023efe5d26a8a70f21677d0a1afc0f0a44e3a1c6" + integrity sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA== + dependencies: + jest-get-type "^29.6.3" + +"@jest/expect@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.7.0.tgz#76a3edb0cb753b70dfbfe23283510d3d45432bf2" + integrity sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ== + dependencies: + expect "^29.7.0" + jest-snapshot "^29.7.0" + +"@jest/fake-timers@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.7.0.tgz#fd91bf1fffb16d7d0d24a426ab1a47a49881a565" + integrity sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ== + dependencies: + "@jest/types" "^29.6.3" + "@sinonjs/fake-timers" "^10.0.2" + "@types/node" "*" + jest-message-util "^29.7.0" + jest-mock "^29.7.0" + jest-util "^29.7.0" + +"@jest/globals@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.7.0.tgz#8d9290f9ec47ff772607fa864ca1d5a2efae1d4d" + integrity sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/expect" "^29.7.0" + "@jest/types" "^29.6.3" + jest-mock "^29.7.0" + +"@jest/reporters@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.7.0.tgz#04b262ecb3b8faa83b0b3d321623972393e8f4c7" + integrity sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg== + dependencies: + "@bcoe/v8-coverage" "^0.2.3" + "@jest/console" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + "@jridgewell/trace-mapping" "^0.3.18" + "@types/node" "*" + chalk "^4.0.0" + collect-v8-coverage "^1.0.0" + exit "^0.1.2" + glob "^7.1.3" + graceful-fs "^4.2.9" + istanbul-lib-coverage "^3.0.0" + istanbul-lib-instrument "^6.0.0" + istanbul-lib-report "^3.0.0" + istanbul-lib-source-maps "^4.0.0" + istanbul-reports "^3.1.3" + jest-message-util "^29.7.0" + jest-util "^29.7.0" + jest-worker "^29.7.0" + slash "^3.0.0" + string-length "^4.0.1" + strip-ansi "^6.0.0" + v8-to-istanbul "^9.0.1" + +"@jest/schemas@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" + integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== + dependencies: + "@sinclair/typebox" "^0.27.8" + +"@jest/source-map@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.6.3.tgz#d90ba772095cf37a34a5eb9413f1b562a08554c4" + integrity sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw== + dependencies: + "@jridgewell/trace-mapping" "^0.3.18" + callsites "^3.0.0" + graceful-fs "^4.2.9" + +"@jest/test-result@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.7.0.tgz#8db9a80aa1a097bb2262572686734baed9b1657c" + integrity sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA== + dependencies: + "@jest/console" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/istanbul-lib-coverage" "^2.0.0" + collect-v8-coverage "^1.0.0" + +"@jest/test-sequencer@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz#6cef977ce1d39834a3aea887a1726628a6f072ce" + integrity sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw== + dependencies: + "@jest/test-result" "^29.7.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.7.0" + slash "^3.0.0" + +"@jest/transform@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.7.0.tgz#df2dd9c346c7d7768b8a06639994640c642e284c" + integrity sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw== + dependencies: + "@babel/core" "^7.11.6" + "@jest/types" "^29.6.3" + "@jridgewell/trace-mapping" "^0.3.18" + babel-plugin-istanbul "^6.1.1" + chalk "^4.0.0" + convert-source-map "^2.0.0" + fast-json-stable-stringify "^2.1.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.7.0" + jest-regex-util "^29.6.3" + jest-util "^29.7.0" + micromatch "^4.0.4" + pirates "^4.0.4" + slash "^3.0.0" + write-file-atomic "^4.0.2" + +"@jest/types@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" + integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== + dependencies: + "@jest/schemas" "^29.6.3" + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^17.0.8" + chalk "^4.0.0" + "@josephg/resolvable@^1.0.0": version "1.0.1" resolved "https://registry.yarnpkg.com/@josephg/resolvable/-/resolvable-1.0.1.tgz#69bc4db754d79e1a2f17a650d3466e038d94a5eb" integrity sha512-CtzORUwWTTOTqfVtHaKRJ0I1kNQd1bpn3sUh8I3nJDVY+5/M/Oe1DnEWzPQvqq/xPIIkzzzIP7mfCoAjFRvDhg== +"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" + integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + "@jridgewell/resolve-uri@^3.0.3": version "3.1.0" resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" + integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== + +"@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + "@jridgewell/sourcemap-codec@^1.4.10": version "1.4.14" resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== +"@jridgewell/sourcemap-codec@^1.4.14": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + "@jridgewell/trace-mapping@0.3.9": version "0.3.9" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" @@ -534,6 +1061,14 @@ "@jridgewell/resolve-uri" "^3.0.3" "@jridgewell/sourcemap-codec" "^1.4.10" +"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.19" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811" + integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + "@nodelib/fs.scandir@2.1.4": version "2.1.4" resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz#d4b3549a5db5de2683e0c1071ab4f140904bbf69" @@ -729,6 +1264,25 @@ resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== +"@sinclair/typebox@^0.27.8": + version "0.27.8" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" + integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== + +"@sinonjs/commons@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.0.tgz#beb434fe875d965265e04722ccfc21df7f755d72" + integrity sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA== + dependencies: + type-detect "4.0.8" + +"@sinonjs/fake-timers@^10.0.2": + version "10.3.0" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66" + integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== + dependencies: + "@sinonjs/commons" "^3.0.0" + "@tootallnate/once@1": version "1.1.2" resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" @@ -754,6 +1308,39 @@ resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.2.tgz#423c77877d0569db20e1fc80885ac4118314010e" integrity sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA== +"@types/babel__core@^7.1.14": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.2.tgz#215db4f4a35d710256579784a548907237728756" + integrity sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA== + dependencies: + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.6.5" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.5.tgz#281f4764bcbbbc51fdded0f25aa587b4ce14da95" + integrity sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + version "7.4.2" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.2.tgz#843e9f1f47c957553b0c374481dc4772921d6a6b" + integrity sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.2.tgz#4ddf99d95cfdd946ff35d2b65c978d9c9bf2645d" + integrity sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw== + dependencies: + "@babel/types" "^7.20.7" + "@types/bunyan@^1.8.8": version "1.8.8" resolved "https://registry.yarnpkg.com/@types/bunyan/-/bunyan-1.8.8.tgz#8d6d33f090f37c07e2a80af30ae728450a101008" @@ -769,6 +1356,13 @@ "@types/minimatch" "*" "@types/node" "*" +"@types/graceful-fs@^4.1.3": + version "4.1.6" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz#e14b2576a1c25026b7f02ede1de3b84c3a1efeae" + integrity sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw== + dependencies: + "@types/node" "*" + "@types/hapi__catbox@*": version "10.2.3" resolved "https://registry.yarnpkg.com/@types/hapi__catbox/-/hapi__catbox-10.2.3.tgz#c9279c16d709bf2987491c332e11d18124ae018f" @@ -802,6 +1396,33 @@ dependencies: "@types/node" "*" +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" + integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== + +"@types/istanbul-lib-report@*": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" + integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" + integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== + dependencies: + "@types/istanbul-lib-report" "*" + +"@types/jest@^29.5.5": + version "29.5.5" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.5.tgz#727204e06228fe24373df9bae76b90f3e8236a2a" + integrity sha512-ebylz2hnsWR9mYvmBFbXJXr+33UPc4+ZdxyDXh5w0FlPBTfCVN3wPL+kuOiQt3xvrK419v7XWeAs+AeOksafXg== + dependencies: + expect "^29.0.0" + pretty-format "^29.0.0" + "@types/json-schema@^7.0.9": version "7.0.9" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d" @@ -855,6 +1476,15 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.19.tgz#cb03fca8910fdeb7595b755126a8a78144714eea" integrity sha512-IXl7o+R9iti9eBW4Wg2hx1xQDig183jj7YLn8F7udNceyfkbn1ZxmzZXuak20gR40D7pIkIY1kYGx5VIGbaHKA== +"@types/pg@^8.10.2": + version "8.10.2" + resolved "https://registry.yarnpkg.com/@types/pg/-/pg-8.10.2.tgz#7814d1ca02c8071f4d0864c1b17c589b061dba43" + integrity sha512-MKFs9P6nJ+LAeHLU3V0cODEOgyThJ3OAnmOlsZsxux6sfQs3HRXR5bBn7xG5DjckEFhTAxsXi7k7cd0pCMxpJw== + dependencies: + "@types/node" "*" + pg-protocol "*" + pg-types "^4.0.1" + "@types/semver@^7.3.12": version "7.3.13" resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91" @@ -865,6 +1495,11 @@ resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.5.tgz#74deebbbcb1e86634dbf10a5b5e8798626f5a597" integrity sha512-iotVxtCCsPLRAvxMFFgxL8HD2l4mAZ2Oin7/VJ2ooWO0VOK4EGOGmZWZn1uCq7RofR3I/1IOSjCHlFT71eVK0Q== +"@types/stack-utils@^2.0.0": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" + integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== + "@types/strip-bom@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@types/strip-bom/-/strip-bom-3.0.0.tgz#14a8ec3956c2e81edb7520790aecf21c290aebd2" @@ -880,6 +1515,18 @@ resolved "https://registry.yarnpkg.com/@types/validator/-/validator-13.7.10.tgz#f9763dc0933f8324920afa9c0790308eedf55ca7" integrity sha512-t1yxFAR2n0+VO6hd/FJ9F2uezAZVWHLmpmlJzm1eX03+H7+HsuTAp7L8QJs+2pQCfWkP1+EXsGK9Z9v7o/qPVQ== +"@types/yargs-parser@*": + version "21.0.0" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" + integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== + +"@types/yargs@^17.0.8": + version "17.0.24" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.24.tgz#b3ef8d50ad4aa6aecf6ddc97c580a00f5aa11902" + integrity sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw== + dependencies: + "@types/yargs-parser" "*" + "@typescript-eslint/eslint-plugin@5.61.0": version "5.61.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.61.0.tgz#a1a5290cf33863b4db3fb79350b3c5275a7b1223" @@ -1049,7 +1696,7 @@ ansi-colors@^4.1.1: resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== -ansi-escapes@^4.3.0: +ansi-escapes@^4.2.1, ansi-escapes@^4.3.0: version "4.3.2" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== @@ -1066,6 +1713,13 @@ ansi-regex@^6.0.1: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" @@ -1073,23 +1727,28 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" +ansi-styles@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== + ansi-styles@^6.0.0: version "6.1.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.1.0.tgz#87313c102b8118abd57371afab34618bf7350ed3" integrity sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ== -anymatch@~3.1.1: - version "3.1.2" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" - integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== +anymatch@^3.0.3, anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== dependencies: normalize-path "^3.0.0" picomatch "^2.0.4" -anymatch@~3.1.2: - version "3.1.3" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" - integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== +anymatch@~3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== dependencies: normalize-path "^3.0.0" picomatch "^2.0.4" @@ -1290,6 +1949,66 @@ axios@^0.21.0: dependencies: follow-redirects "^1.14.0" +babel-jest@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.7.0.tgz#f4369919225b684c56085998ac63dbd05be020d5" + integrity sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg== + dependencies: + "@jest/transform" "^29.7.0" + "@types/babel__core" "^7.1.14" + babel-plugin-istanbul "^6.1.1" + babel-preset-jest "^29.6.3" + chalk "^4.0.0" + graceful-fs "^4.2.9" + slash "^3.0.0" + +babel-plugin-istanbul@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-instrument "^5.0.4" + test-exclude "^6.0.0" + +babel-plugin-jest-hoist@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz#aadbe943464182a8922c3c927c3067ff40d24626" + integrity sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg== + dependencies: + "@babel/template" "^7.3.3" + "@babel/types" "^7.3.3" + "@types/babel__core" "^7.1.14" + "@types/babel__traverse" "^7.0.6" + +babel-preset-current-node-syntax@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" + integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== + dependencies: + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-bigint" "^7.8.3" + "@babel/plugin-syntax-class-properties" "^7.8.3" + "@babel/plugin-syntax-import-meta" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.8.3" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-top-level-await" "^7.8.3" + +babel-preset-jest@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz#fa05fa510e7d493896d7b0dd2033601c840f171c" + integrity sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA== + dependencies: + babel-plugin-jest-hoist "^29.6.3" + babel-preset-current-node-syntax "^1.0.0" + balanced-match@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" @@ -1354,6 +2073,30 @@ braces@^3.0.2, braces@~3.0.2: dependencies: fill-range "^7.0.1" +browserslist@^4.21.9: + version "4.21.10" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.10.tgz#dbbac576628c13d3b2231332cb2ec5a46e015bb0" + integrity sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ== + dependencies: + caniuse-lite "^1.0.30001517" + electron-to-chromium "^1.4.477" + node-releases "^2.0.13" + update-browserslist-db "^1.0.11" + +bs-logger@0.x: + version "0.2.6" + resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" + integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== + dependencies: + fast-json-stable-stringify "2.x" + +bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + dependencies: + node-int64 "^0.4.0" + buffer-from@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" @@ -1399,6 +2142,21 @@ callsites@^3.0.0: resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.2.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +caniuse-lite@^1.0.30001517: + version "1.0.30001538" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001538.tgz#9dbc6b9af1ff06b5eb12350c2012b3af56744f3f" + integrity sha512-HWJnhnID+0YMtGlzcp3T9drmBJUVDchPJ08tpUGFLs9CYlwWPH2uLgpHn8fND5pCgXVtnGS3H4QR9XLMHVNkHw== + chalk@3.0.0, chalk@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" @@ -1412,6 +2170,15 @@ chalk@5.2.0: resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3" integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== +chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + chalk@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" @@ -1420,6 +2187,11 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" +char-regex@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" + integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== + charm@~0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/charm/-/charm-0.1.2.tgz#06c21eed1a1b06aeb67553cdc53e23274bac2296" @@ -1455,6 +2227,16 @@ chokidar@^3.5.3: optionalDependencies: fsevents "~2.3.2" +ci-info@^3.2.0: + version "3.8.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" + integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== + +cjs-module-lexer@^1.0.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz#6c370ab19f8a3394e318fe682686ec0ac684d107" + integrity sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ== + class-utils@^0.3.5: version "0.3.6" resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" @@ -1509,6 +2291,25 @@ cli-truncate@^3.1.0: slice-ansi "^5.0.0" string-width "^5.0.0" +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== + +collect-v8-coverage@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9" + integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== + collection-visit@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" @@ -1517,6 +2318,13 @@ collection-visit@^1.0.0: map-visit "^1.0.0" object-visit "^1.0.0" +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + color-convert@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" @@ -1524,6 +2332,11 @@ color-convert@^2.0.1: dependencies: color-name "~1.1.4" +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + color-name@~1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" @@ -1584,6 +2397,16 @@ continuation-local-storage@^3.2.1: async-listener "^0.6.0" emitter-listener "^1.1.1" +convert-source-map@^1.6.0, convert-source-map@^1.7.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + copy-descriptor@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" @@ -1594,6 +2417,19 @@ core-util-is@~1.0.0: resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== +create-jest@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/create-jest/-/create-jest-29.7.0.tgz#a355c5b3cb1e1af02ba177fe7afd7feee49a5320" + integrity sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q== + dependencies: + "@jest/types" "^29.6.3" + chalk "^4.0.0" + exit "^0.1.2" + graceful-fs "^4.2.9" + jest-config "^29.7.0" + jest-util "^29.7.0" + prompts "^2.0.1" + create-require@^1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" @@ -1666,6 +2502,13 @@ debug@^3.2.6: dependencies: ms "^2.1.1" +debug@^4.1.0, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + debug@^4.1.1: version "4.3.1" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" @@ -1673,18 +2516,16 @@ debug@^4.1.1: dependencies: ms "2.1.2" -debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - decode-uri-component@^0.2.0: version "0.2.2" resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== +dedent@^1.0.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.5.1.tgz#4f3fc94c8b711e9bb2800d185cd6ad20f2a90aff" + integrity sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg== + deep-is@^0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" @@ -1695,6 +2536,11 @@ deep-is@~0.1.3: resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== +deepmerge@^4.2.2: + version "4.3.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== + define-property@^0.2.5: version "0.2.5" resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" @@ -1742,6 +2588,16 @@ detect-file@^1.0.0: resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc= +detect-newline@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" + integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== + +diff-sequences@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921" + integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== + diff@^4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" @@ -1775,6 +2631,11 @@ dynamic-dedupe@^0.3.0: dependencies: xtend "^4.0.0" +electron-to-chromium@^1.4.477: + version "1.4.525" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.525.tgz#614284f33901fbecd3e90176c0d60590cd939700" + integrity sha512-GIZ620hDK4YmIqAWkscG4W6RwY6gOx1y5J6f4JUQwctiJrqH2oxZYU4mXHi35oV32tr630UcepBzSBGJ/WYcZA== + emitter-listener@^1.1.1: version "1.1.2" resolved "https://registry.yarnpkg.com/emitter-listener/-/emitter-listener-1.1.2.tgz#56b140e8f6992375b3d7cb2cab1cc7432d9632e8" @@ -1782,6 +2643,11 @@ emitter-listener@^1.1.1: dependencies: shimmer "^1.2.0" +emittery@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad" + integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== + emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" @@ -1799,6 +2665,28 @@ enquirer@2.3.6: dependencies: ansi-colors "^4.1.1" +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +escape-string-regexp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + escape-string-regexp@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" @@ -1955,6 +2843,21 @@ eventemitter2@~0.4.14: resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-0.4.14.tgz#8f61b75cde012b2e9eb284d4545583b5643b61ab" integrity sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas= +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + execa@^7.0.0: version "7.1.1" resolved "https://registry.yarnpkg.com/execa/-/execa-7.1.1.tgz#3eb3c83d239488e7b409d48e8813b76bb55c9c43" @@ -1970,6 +2873,11 @@ execa@^7.0.0: signal-exit "^3.0.7" strip-final-newline "^3.0.0" +exit@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== + expand-brackets@^2.1.4: version "2.1.4" resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" @@ -1990,6 +2898,17 @@ expand-tilde@^2.0.0, expand-tilde@^2.0.2: dependencies: homedir-polyfill "^1.0.1" +expect@^29.0.0, expect@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-29.7.0.tgz#578874590dcb3214514084c08115d8aee61e11bc" + integrity sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw== + dependencies: + "@jest/expect-utils" "^29.7.0" + jest-get-type "^29.6.3" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" + extend-shallow@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" @@ -2045,7 +2964,7 @@ fast-json-patch@^3.0.0-1: resolved "https://registry.yarnpkg.com/fast-json-patch/-/fast-json-patch-3.1.1.tgz#85064ea1b1ebf97a3f7ad01e23f9337e72c66947" integrity sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ== -fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: +fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== @@ -2062,6 +2981,13 @@ fastq@^1.6.0: dependencies: reusify "^1.0.4" +fb-watchman@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" + integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== + dependencies: + bser "2.1.1" + fclone@1.0.11, fclone@~1.0.11: version "1.0.11" resolved "https://registry.yarnpkg.com/fclone/-/fclone-1.0.11.tgz#10e85da38bfea7fc599341c296ee1d77266ee640" @@ -2096,6 +3022,14 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" +find-up@^4.0.0, find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + find-up@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" @@ -2195,6 +3129,11 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= +fsevents@^2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + fsevents@~2.3.1, fsevents@~2.3.2: version "2.3.2" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" @@ -2213,7 +3152,22 @@ function-bind@^1.1.1: resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== -get-stream@^6.0.1: +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-package-type@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + +get-stream@^6.0.0, get-stream@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== @@ -2299,6 +3253,18 @@ glob@^7.1.3, glob@^7.1.6: once "^1.3.0" path-is-absolute "^1.0.0" +glob@^7.1.4: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + global-modules@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" @@ -2319,6 +3285,11 @@ global-prefix@^1.0.1: is-windows "^1.0.1" which "^1.2.14" +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + globals@^13.19.0: version "13.19.0" resolved "https://registry.yarnpkg.com/globals/-/globals-13.19.0.tgz#7a42de8e6ad4f7242fbcca27ea5b23aca367b5c8" @@ -2343,6 +3314,11 @@ graceful-fs@^4.1.6, graceful-fs@^4.2.0: resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== +graceful-fs@^4.2.9: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + graphemer@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" @@ -2374,6 +3350,11 @@ graphql@^15.7.2: resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.7.2.tgz#85ab0eeb83722977151b3feb4d631b5f2ab287ef" integrity sha512-AnnKk7hFQFmU/2I9YSQf3xw44ctnSFCfp3zE0N6W174gqe9fWG/2rKaKxROK7CcI3XtERpjEKFqts8o319Kf7A== +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + has-flag@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" @@ -2424,6 +3405,11 @@ homedir-polyfill@^1.0.1: dependencies: parse-passwd "^1.0.0" +html-escaper@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + http-errors@1.8.1: version "1.8.1" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.8.1.tgz#7c3f28577cbc8a207388455dbd62295ed07bd68c" @@ -2452,6 +3438,11 @@ https-proxy-agent@5, https-proxy-agent@^5.0.0: agent-base "6" debug "4" +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + human-signals@^4.3.0: version "4.3.1" resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2" @@ -2482,6 +3473,14 @@ import-fresh@^3.0.0, import-fresh@^3.2.1: parent-module "^1.0.0" resolve-from "^4.0.0" +import-local@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" + integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== + dependencies: + pkg-dir "^4.2.0" + resolve-cwd "^3.0.0" + imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" @@ -2547,6 +3546,11 @@ is-accessor-descriptor@^1.0.0: dependencies: kind-of "^6.0.0" +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + is-binary-path@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" @@ -2559,6 +3563,13 @@ is-buffer@^1.1.5: resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== +is-core-module@^2.13.0: + version "2.13.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db" + integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== + dependencies: + has "^1.0.3" + is-core-module@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" @@ -2625,6 +3636,11 @@ is-fullwidth-code-point@^4.0.0: resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88" integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== +is-generator-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== + is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" @@ -2670,6 +3686,11 @@ is-relative@^1.0.0: dependencies: is-unc-path "^1.0.0" +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + is-stream@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" @@ -2714,11 +3735,422 @@ isobject@^3.0.0, isobject@^3.0.1: resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= +istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" + integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== + +istanbul-lib-instrument@^5.0.4: + version "5.2.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" + integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== + dependencies: + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^6.3.0" + +istanbul-lib-instrument@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz#7a8af094cbfff1d5bb280f62ce043695ae8dd5b8" + integrity sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw== + dependencies: + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^7.5.4" + +istanbul-lib-report@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#908305bac9a5bd175ac6a74489eafd0fc2445a7d" + integrity sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== + dependencies: + istanbul-lib-coverage "^3.0.0" + make-dir "^4.0.0" + supports-color "^7.1.0" + +istanbul-lib-source-maps@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" + integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== + dependencies: + debug "^4.1.1" + istanbul-lib-coverage "^3.0.0" + source-map "^0.6.1" + +istanbul-reports@^3.1.3: + version "3.1.6" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.6.tgz#2544bcab4768154281a2f0870471902704ccaa1a" + integrity sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg== + dependencies: + html-escaper "^2.0.0" + istanbul-lib-report "^3.0.0" + iterall@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.3.0.tgz#afcb08492e2915cbd8a0884eb93a8c94d0d72fea" integrity sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg== +jest-changed-files@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.7.0.tgz#1c06d07e77c78e1585d020424dedc10d6e17ac3a" + integrity sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w== + dependencies: + execa "^5.0.0" + jest-util "^29.7.0" + p-limit "^3.1.0" + +jest-circus@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.7.0.tgz#b6817a45fcc835d8b16d5962d0c026473ee3668a" + integrity sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/expect" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + co "^4.6.0" + dedent "^1.0.0" + is-generator-fn "^2.0.0" + jest-each "^29.7.0" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-runtime "^29.7.0" + jest-snapshot "^29.7.0" + jest-util "^29.7.0" + p-limit "^3.1.0" + pretty-format "^29.7.0" + pure-rand "^6.0.0" + slash "^3.0.0" + stack-utils "^2.0.3" + +jest-cli@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.7.0.tgz#5592c940798e0cae677eec169264f2d839a37995" + integrity sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg== + dependencies: + "@jest/core" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/types" "^29.6.3" + chalk "^4.0.0" + create-jest "^29.7.0" + exit "^0.1.2" + import-local "^3.0.2" + jest-config "^29.7.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" + yargs "^17.3.1" + +jest-config@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.7.0.tgz#bcbda8806dbcc01b1e316a46bb74085a84b0245f" + integrity sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ== + dependencies: + "@babel/core" "^7.11.6" + "@jest/test-sequencer" "^29.7.0" + "@jest/types" "^29.6.3" + babel-jest "^29.7.0" + chalk "^4.0.0" + ci-info "^3.2.0" + deepmerge "^4.2.2" + glob "^7.1.3" + graceful-fs "^4.2.9" + jest-circus "^29.7.0" + jest-environment-node "^29.7.0" + jest-get-type "^29.6.3" + jest-regex-util "^29.6.3" + jest-resolve "^29.7.0" + jest-runner "^29.7.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" + micromatch "^4.0.4" + parse-json "^5.2.0" + pretty-format "^29.7.0" + slash "^3.0.0" + strip-json-comments "^3.1.1" + +jest-diff@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.7.0.tgz#017934a66ebb7ecf6f205e84699be10afd70458a" + integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== + dependencies: + chalk "^4.0.0" + diff-sequences "^29.6.3" + jest-get-type "^29.6.3" + pretty-format "^29.7.0" + +jest-docblock@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.7.0.tgz#8fddb6adc3cdc955c93e2a87f61cfd350d5d119a" + integrity sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g== + dependencies: + detect-newline "^3.0.0" + +jest-each@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.7.0.tgz#162a9b3f2328bdd991beaabffbb74745e56577d1" + integrity sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ== + dependencies: + "@jest/types" "^29.6.3" + chalk "^4.0.0" + jest-get-type "^29.6.3" + jest-util "^29.7.0" + pretty-format "^29.7.0" + +jest-environment-node@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.7.0.tgz#0b93e111dda8ec120bc8300e6d1fb9576e164376" + integrity sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/fake-timers" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + jest-mock "^29.7.0" + jest-util "^29.7.0" + +jest-get-type@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1" + integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== + +jest-haste-map@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.7.0.tgz#3c2396524482f5a0506376e6c858c3bbcc17b104" + integrity sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA== + dependencies: + "@jest/types" "^29.6.3" + "@types/graceful-fs" "^4.1.3" + "@types/node" "*" + anymatch "^3.0.3" + fb-watchman "^2.0.0" + graceful-fs "^4.2.9" + jest-regex-util "^29.6.3" + jest-util "^29.7.0" + jest-worker "^29.7.0" + micromatch "^4.0.4" + walker "^1.0.8" + optionalDependencies: + fsevents "^2.3.2" + +jest-leak-detector@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz#5b7ec0dadfdfec0ca383dc9aa016d36b5ea4c728" + integrity sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw== + dependencies: + jest-get-type "^29.6.3" + pretty-format "^29.7.0" + +jest-matcher-utils@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz#ae8fec79ff249fd592ce80e3ee474e83a6c44f12" + integrity sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g== + dependencies: + chalk "^4.0.0" + jest-diff "^29.7.0" + jest-get-type "^29.6.3" + pretty-format "^29.7.0" + +jest-message-util@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.7.0.tgz#8bc392e204e95dfe7564abbe72a404e28e51f7f3" + integrity sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w== + dependencies: + "@babel/code-frame" "^7.12.13" + "@jest/types" "^29.6.3" + "@types/stack-utils" "^2.0.0" + chalk "^4.0.0" + graceful-fs "^4.2.9" + micromatch "^4.0.4" + pretty-format "^29.7.0" + slash "^3.0.0" + stack-utils "^2.0.3" + +jest-mock@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.7.0.tgz#4e836cf60e99c6fcfabe9f99d017f3fdd50a6347" + integrity sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw== + dependencies: + "@jest/types" "^29.6.3" + "@types/node" "*" + jest-util "^29.7.0" + +jest-pnp-resolver@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" + integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== + +jest-regex-util@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.6.3.tgz#4a556d9c776af68e1c5f48194f4d0327d24e8a52" + integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== + +jest-resolve-dependencies@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz#1b04f2c095f37fc776ff40803dc92921b1e88428" + integrity sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA== + dependencies: + jest-regex-util "^29.6.3" + jest-snapshot "^29.7.0" + +jest-resolve@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.7.0.tgz#64d6a8992dd26f635ab0c01e5eef4399c6bcbc30" + integrity sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA== + dependencies: + chalk "^4.0.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.7.0" + jest-pnp-resolver "^1.2.2" + jest-util "^29.7.0" + jest-validate "^29.7.0" + resolve "^1.20.0" + resolve.exports "^2.0.0" + slash "^3.0.0" + +jest-runner@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.7.0.tgz#809af072d408a53dcfd2e849a4c976d3132f718e" + integrity sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ== + dependencies: + "@jest/console" "^29.7.0" + "@jest/environment" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + emittery "^0.13.1" + graceful-fs "^4.2.9" + jest-docblock "^29.7.0" + jest-environment-node "^29.7.0" + jest-haste-map "^29.7.0" + jest-leak-detector "^29.7.0" + jest-message-util "^29.7.0" + jest-resolve "^29.7.0" + jest-runtime "^29.7.0" + jest-util "^29.7.0" + jest-watcher "^29.7.0" + jest-worker "^29.7.0" + p-limit "^3.1.0" + source-map-support "0.5.13" + +jest-runtime@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.7.0.tgz#efecb3141cf7d3767a3a0cc8f7c9990587d3d817" + integrity sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/fake-timers" "^29.7.0" + "@jest/globals" "^29.7.0" + "@jest/source-map" "^29.6.3" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + cjs-module-lexer "^1.0.0" + collect-v8-coverage "^1.0.0" + glob "^7.1.3" + graceful-fs "^4.2.9" + jest-haste-map "^29.7.0" + jest-message-util "^29.7.0" + jest-mock "^29.7.0" + jest-regex-util "^29.6.3" + jest-resolve "^29.7.0" + jest-snapshot "^29.7.0" + jest-util "^29.7.0" + slash "^3.0.0" + strip-bom "^4.0.0" + +jest-snapshot@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.7.0.tgz#c2c574c3f51865da1bb329036778a69bf88a6be5" + integrity sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw== + dependencies: + "@babel/core" "^7.11.6" + "@babel/generator" "^7.7.2" + "@babel/plugin-syntax-jsx" "^7.7.2" + "@babel/plugin-syntax-typescript" "^7.7.2" + "@babel/types" "^7.3.3" + "@jest/expect-utils" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + babel-preset-current-node-syntax "^1.0.0" + chalk "^4.0.0" + expect "^29.7.0" + graceful-fs "^4.2.9" + jest-diff "^29.7.0" + jest-get-type "^29.6.3" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" + natural-compare "^1.4.0" + pretty-format "^29.7.0" + semver "^7.5.3" + +jest-util@^29.0.0, jest-util@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" + integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== + dependencies: + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + ci-info "^3.2.0" + graceful-fs "^4.2.9" + picomatch "^2.2.3" + +jest-validate@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.7.0.tgz#7bf705511c64da591d46b15fce41400d52147d9c" + integrity sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw== + dependencies: + "@jest/types" "^29.6.3" + camelcase "^6.2.0" + chalk "^4.0.0" + jest-get-type "^29.6.3" + leven "^3.1.0" + pretty-format "^29.7.0" + +jest-watcher@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.7.0.tgz#7810d30d619c3a62093223ce6bb359ca1b28a2f2" + integrity sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g== + dependencies: + "@jest/test-result" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + ansi-escapes "^4.2.1" + chalk "^4.0.0" + emittery "^0.13.1" + jest-util "^29.7.0" + string-length "^4.0.1" + +jest-worker@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a" + integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== + dependencies: + "@types/node" "*" + jest-util "^29.7.0" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jest@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-29.7.0.tgz#994676fc24177f088f1c5e3737f5697204ff2613" + integrity sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw== + dependencies: + "@jest/core" "^29.7.0" + "@jest/types" "^29.6.3" + import-local "^3.0.2" + jest-cli "^29.7.0" + joi@^17.3.0: version "17.4.0" resolved "https://registry.yarnpkg.com/joi/-/joi-17.4.0.tgz#b5c2277c8519e016316e49ababd41a1908d9ef20" @@ -2740,6 +4172,19 @@ js-git@^0.7.8: git-sha1 "^0.1.2" pako "^0.2.5" +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + js-yaml@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" @@ -2747,6 +4192,16 @@ js-yaml@^4.1.0: dependencies: argparse "^2.0.1" +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" @@ -2762,6 +4217,11 @@ json-stringify-safe@^5.0.1: resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= +json5@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + jsonfile@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" @@ -2793,6 +4253,11 @@ kind-of@^6.0.0, kind-of@^6.0.2: resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + knex@0.21.1: version "0.21.1" resolved "https://registry.yarnpkg.com/knex/-/knex-0.21.1.tgz#4fba7e6c58c9f459846c3090be157a732fc75e41" @@ -2819,6 +4284,11 @@ lazy@~1.0.11: resolved "https://registry.yarnpkg.com/lazy/-/lazy-1.0.11.tgz#daa068206282542c088288e975c297c1ae77b690" integrity sha1-2qBoIGKCVCwIgojpdcKXwa53tpA= +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + levn@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" @@ -2859,6 +4329,11 @@ lilconfig@2.1.0: resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + lint-staged@^13.2.2: version "13.2.2" resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-13.2.2.tgz#5e711d3139c234f73402177be2f8dd312e6508ca" @@ -2892,6 +4367,13 @@ listr2@^5.0.7: through "^2.3.8" wrap-ansi "^7.0.0" +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + locate-path@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" @@ -2904,6 +4386,11 @@ lodash.get@^4.4.2: resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= +lodash.memoize@4.x: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== + lodash.merge@^4.6.2: version "4.6.2" resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" @@ -2963,7 +4450,14 @@ lru-cache@^6.0.0: dependencies: yallist "^4.0.0" -make-error@^1.1.1: +make-dir@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-4.0.0.tgz#c3c2307a771277cd9638305f915c29ae741b614e" + integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== + dependencies: + semver "^7.5.3" + +make-error@1.x, make-error@^1.1.1: version "1.3.6" resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== @@ -2975,6 +4469,13 @@ make-iterator@^1.0.0: dependencies: kind-of "^6.0.2" +makeerror@1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== + dependencies: + tmpl "1.0.5" + map-cache@^0.2.0, map-cache@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" @@ -3051,7 +4552,7 @@ mimic-fn@^4.0.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== -"minimatch@2 || 3", minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.2: +"minimatch@2 || 3", minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== @@ -3192,11 +4693,28 @@ node-fetch@^2.6.7: dependencies: whatwg-url "^5.0.0" +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== + +node-releases@^2.0.13: + version "2.0.13" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" + integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== + normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + npm-run-path@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00" @@ -3258,6 +4776,11 @@ object.pick@^1.2.0, object.pick@^1.3.0: dependencies: isobject "^3.0.1" +obuf@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" + integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== + once@^1.3.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" @@ -3265,7 +4788,7 @@ once@^1.3.0: dependencies: wrappy "1" -onetime@^5.1.0: +onetime@^5.1.0, onetime@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== @@ -3303,13 +4826,27 @@ optionator@^0.9.3: prelude-ls "^1.2.1" type-check "^0.4.0" -p-limit@^3.0.2: +p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-limit@^3.0.2, p-limit@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== dependencies: yocto-queue "^0.1.0" +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + p-locate@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" @@ -3324,6 +4861,11 @@ p-map@^4.0.0: dependencies: aggregate-error "^3.0.0" +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + pac-proxy-agent@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/pac-proxy-agent/-/pac-proxy-agent-5.0.0.tgz#b718f76475a6a5415c2efbe256c1c971c84f635e" @@ -3374,6 +4916,16 @@ parse-filepath@^1.0.1: map-cache "^0.2.0" path-root "^0.1.1" +parse-json@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + parse-passwd@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" @@ -3394,7 +4946,7 @@ path-is-absolute@^1.0.0: resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= -path-key@^3.1.0: +path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== @@ -3404,7 +4956,7 @@ path-key@^4.0.0: resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== -path-parse@^1.0.6: +path-parse@^1.0.6, path-parse@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== @@ -3441,12 +4993,17 @@ pg-int8@1.0.1: resolved "https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz#943bd463bf5b71b4170115f80f8efc9a0c0eb78c" integrity sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw== +pg-numeric@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pg-numeric/-/pg-numeric-1.0.2.tgz#816d9a44026086ae8ae74839acd6a09b0636aa3a" + integrity sha512-BM/Thnrw5jm2kKLE5uJkXqqExRUY/toLHda65XgFTBTFYZyopbKjBe29Ii3RbkvlsMoFwD+tHeGaCjjv0gHlyw== + pg-pool@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/pg-pool/-/pg-pool-3.6.0.tgz#3190df3e4747a0d23e5e9e8045bcd99bda0a712e" integrity sha512-clFRf2ksqd+F497kWFyM21tMjeikn60oGDmqMT8UBrynEwVEX/5R5xd2sdvdo1cZCFlguORNpVuqxIj+aK4cfQ== -pg-protocol@^1.6.0: +pg-protocol@*, pg-protocol@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.6.0.tgz#4c91613c0315349363af2084608db843502f8833" integrity sha512-M+PDm637OY5WM307051+bsDia5Xej6d9IR4GwJse1qA1DIhiKlksvrneZOYQq42OM+spubpcNYEo2FcKQrDk+Q== @@ -3462,6 +5019,19 @@ pg-types@^2.1.0: postgres-date "~1.0.4" postgres-interval "^1.1.0" +pg-types@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pg-types/-/pg-types-4.0.1.tgz#31857e89d00a6c66b06a14e907c3deec03889542" + integrity sha512-hRCSDuLII9/LE3smys1hRHcu5QGcLs9ggT7I/TCs0IE+2Eesxi9+9RWAAwZ0yaGjxoWICF/YHLOEjydGujoJ+g== + dependencies: + pg-int8 "1.0.1" + pg-numeric "1.0.2" + postgres-array "~3.0.1" + postgres-bytea "~3.0.0" + postgres-date "~2.0.1" + postgres-interval "^3.0.0" + postgres-range "^1.1.1" + pg@^8.10.0: version "8.10.0" resolved "https://registry.yarnpkg.com/pg/-/pg-8.10.0.tgz#5b8379c9b4a36451d110fc8cd98fc325fe62ad24" @@ -3482,12 +5052,17 @@ pgpass@1.x: dependencies: split2 "^3.1.1" +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + picomatch@^2.0.4, picomatch@^2.2.1: version "2.2.3" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.3.tgz#465547f359ccc206d3c48e46a1bcb89bf7ee619d" integrity sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg== -picomatch@^2.3.1: +picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== @@ -3511,6 +5086,18 @@ pidusage@~3.0: dependencies: safe-buffer "^5.2.1" +pirates@^4.0.4: + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + +pkg-dir@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + pm2-axon-rpc@~0.7.0, pm2-axon-rpc@~0.7.1: version "0.7.1" resolved "https://registry.yarnpkg.com/pm2-axon-rpc/-/pm2-axon-rpc-0.7.1.tgz#2daec5383a63135b3f18babb70266dacdcbc429a" @@ -3601,16 +5188,33 @@ postgres-array@~2.0.0: resolved "https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz#48f8fce054fbc69671999329b8834b772652d82e" integrity sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA== +postgres-array@~3.0.1: + version "3.0.2" + resolved "https://registry.yarnpkg.com/postgres-array/-/postgres-array-3.0.2.tgz#68d6182cb0f7f152a7e60dc6a6889ed74b0a5f98" + integrity sha512-6faShkdFugNQCLwucjPcY5ARoW1SlbnrZjmGl0IrrqewpvxvhSLHimCVzqeuULCbG0fQv7Dtk1yDbG3xv7Veog== + postgres-bytea@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.0.tgz#027b533c0aa890e26d172d47cf9ccecc521acd35" integrity sha1-AntTPAqokOJtFy1Hz5zOzFIazTU= +postgres-bytea@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-3.0.0.tgz#9048dc461ac7ba70a6a42d109221619ecd1cb089" + integrity sha512-CNd4jim9RFPkObHSjVHlVrxoVQXz7quwNFpz7RY1okNNme49+sVyiTvTRobiLV548Hx/hb1BG+iE7h9493WzFw== + dependencies: + obuf "~1.1.2" + postgres-date@~1.0.4: version "1.0.7" resolved "https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.7.tgz#51bc086006005e5061c591cee727f2531bf641a8" integrity sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q== +postgres-date@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/postgres-date/-/postgres-date-2.0.1.tgz#638b62e5c33764c292d37b08f5257ecb09231457" + integrity sha512-YtMKdsDt5Ojv1wQRvUhnyDJNSr2dGIC96mQVKz7xufp07nfuFONzdaowrMHjlAzY6GDLd4f+LUHHAAM1h4MdUw== + postgres-interval@^1.1.0: version "1.2.0" resolved "https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-1.2.0.tgz#b460c82cb1587507788819a06aa0fffdb3544695" @@ -3618,6 +5222,16 @@ postgres-interval@^1.1.0: dependencies: xtend "^4.0.0" +postgres-interval@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-3.0.0.tgz#baf7a8b3ebab19b7f38f07566c7aab0962f0c86a" + integrity sha512-BSNDnbyZCXSxgA+1f5UU2GmwhoI0aU5yMxRGO8CdFEcY2BQF9xm/7MqKnYoM1nJDk8nONNWDk9WeSmePFhQdlw== + +postgres-range@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/postgres-range/-/postgres-range-1.1.3.tgz#9ccd7b01ca2789eb3c2e0888b3184225fa859f76" + integrity sha512-VdlZoocy5lCP0c/t66xAfclglEapXPCIVhqqJRncYpvbCgImF0w67aPKfbqUMr72tO2k5q0TdTZwCLjPTI6C9g== + prelude-ls@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" @@ -3633,6 +5247,15 @@ prettier@2.8.8: resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== +pretty-format@^29.0.0, pretty-format@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" + integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== + dependencies: + "@jest/schemas" "^29.6.3" + ansi-styles "^5.0.0" + react-is "^18.0.0" + promptly@^2: version "2.2.0" resolved "https://registry.yarnpkg.com/promptly/-/promptly-2.2.0.tgz#2a13fa063688a2a5983b161fff0108a07d26fc74" @@ -3640,6 +5263,14 @@ promptly@^2: dependencies: read "^1.0.4" +prompts@^2.0.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + proxy-agent@~5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/proxy-agent/-/proxy-agent-5.0.0.tgz#d31405c10d6e8431fde96cba7a0c027ce01d633b" @@ -3664,6 +5295,11 @@ punycode@^2.1.0: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== +pure-rand@^6.0.0: + version "6.0.3" + resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.3.tgz#3c9e6b53c09e52ac3cedffc85ab7c1c7094b38cb" + integrity sha512-KddyFewCsO0j3+np81IQ+SweXLDnDQTs5s67BOnrYmYe/yNmUhttQyGsYzy8yUnoljGAQ9sl38YB4vH8ur7Y+w== + queue-microtask@^1.2.2: version "1.2.3" resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" @@ -3679,6 +5315,11 @@ raw-body@^2.2.0: iconv-lite "0.4.24" unpipe "1.0.0" +react-is@^18.0.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" + integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== + read@^1.0.4: version "1.0.7" resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" @@ -3749,6 +5390,11 @@ repeat-string@^1.6.1: resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + require-in-the-middle@^5.0.0: version "5.1.0" resolved "https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-5.1.0.tgz#b768f800377b47526d026bbf5a7f727f16eb412f" @@ -3758,6 +5404,13 @@ require-in-the-middle@^5.0.0: module-details-from-path "^1.0.3" resolve "^1.12.0" +resolve-cwd@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== + dependencies: + resolve-from "^5.0.0" + resolve-dir@^1.0.0, resolve-dir@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" @@ -3771,11 +5424,21 @@ resolve-from@^4.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + resolve-url@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= +resolve.exports@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" + integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== + resolve@^1.0.0, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.12.0: version "1.20.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" @@ -3784,6 +5447,15 @@ resolve@^1.0.0, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.12.0: is-core-module "^2.2.0" path-parse "^1.0.6" +resolve@^1.20.0: + version "1.22.6" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.6.tgz#dd209739eca3aef739c626fea1b4f3c506195362" + integrity sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + restore-cursor@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" @@ -3889,7 +5561,12 @@ semver@^5.3.0, semver@^5.5.0: resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== -semver@^7.2, semver@^7.3.2, semver@^7.3.7: +semver@^6.3.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +semver@^7.2, semver@^7.3.2, semver@^7.3.7, semver@^7.5.3, semver@^7.5.4: version "7.5.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== @@ -3951,6 +5628,11 @@ signal-exit@^3.0.7: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + slash@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" @@ -4045,6 +5727,14 @@ source-map-resolve@^0.5.0: source-map-url "^0.4.0" urix "^0.1.0" +source-map-support@0.5.13: + version "0.5.13" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" + integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + source-map-support@0.5.21: version "0.5.21" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" @@ -4071,7 +5761,7 @@ source-map@^0.5.6: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= -source-map@^0.6.0, source-map@~0.6.1: +source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== @@ -4100,6 +5790,13 @@ sprintf-js@~1.0.2: resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= +stack-utils@^2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" + integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== + dependencies: + escape-string-regexp "^2.0.0" + static-extend@^0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" @@ -4118,6 +5815,14 @@ string-argv@^0.3.1: resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== +string-length@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" + integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== + dependencies: + char-regex "^1.0.2" + strip-ansi "^6.0.0" + string-width@^4.1.0, string-width@^4.2.0: version "4.2.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" @@ -4127,6 +5832,15 @@ string-width@^4.1.0, string-width@^4.2.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.0" +string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + string-width@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.0.1.tgz#0d8158335a6cfd8eb95da9b6b262ce314a036ffd" @@ -4167,6 +5881,16 @@ strip-bom@^3.0.0: resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= +strip-bom@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" + integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + strip-final-newline@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" @@ -4182,6 +5906,13 @@ strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + supports-color@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" @@ -4189,6 +5920,18 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" +supports-color@^8.0.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + systeminformation@^5.7: version "5.9.13" resolved "https://registry.yarnpkg.com/systeminformation/-/systeminformation-5.9.13.tgz#90aef7cc534027870d2d10fec63580a7a916aff9" @@ -4199,6 +5942,15 @@ tarn@^3.0.0: resolved "https://registry.yarnpkg.com/tarn/-/tarn-3.0.1.tgz#ebac2c6dbc6977d34d4526e0a7814200386a8aec" integrity sha512-6usSlV9KyHsspvwu2duKH+FMUhqJnAh6J5J/4MITl8s94iSUQTLkJggdiewKv4RyARQccnigV48Z+khiuVZDJw== +test-exclude@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" + integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== + dependencies: + "@istanbuljs/schema" "^0.1.2" + glob "^7.1.4" + minimatch "^3.0.4" + text-table@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" @@ -4214,6 +5966,16 @@ tildify@2.0.0: resolved "https://registry.yarnpkg.com/tildify/-/tildify-2.0.0.tgz#f205f3674d677ce698b7067a99e949ce03b4754a" integrity sha512-Cc+OraorugtXNfs50hU9KS369rFXCfgGLpfCfvlc+Ud5u6VWmUQsOAa9HbTvheQdYnrdJqqv1e5oIqXppMYnSw== +tmpl@1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" + integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + to-object-path@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" @@ -4261,6 +6023,20 @@ tree-kill@^1.2.2: resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc" integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A== +ts-jest@^29.1.1: + version "29.1.1" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.1.tgz#f58fe62c63caf7bfcc5cc6472082f79180f0815b" + integrity sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA== + dependencies: + bs-logger "0.x" + fast-json-stable-stringify "2.x" + jest-util "^29.0.0" + json5 "^2.2.3" + lodash.memoize "4.x" + make-error "1.x" + semver "^7.5.3" + yargs-parser "^21.0.1" + ts-node-dev@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ts-node-dev/-/ts-node-dev-2.0.0.tgz#bdd53e17ab3b5d822ef519928dc6b4a7e0f13065" @@ -4377,6 +6153,11 @@ type-check@~0.3.2: dependencies: prelude-ls "~1.1.2" +type-detect@4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + type-fest@^0.20.2: version "0.20.2" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" @@ -4444,6 +6225,14 @@ unset-value@^1.0.0: has-value "^0.3.1" isobject "^3.0.0" +update-browserslist-db@^1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" + integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -4486,6 +6275,15 @@ v8-compile-cache-lib@^3.0.1: resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== +v8-to-istanbul@^9.0.1: + version "9.1.0" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz#1b83ed4e397f58c85c266a570fc2558b5feb9265" + integrity sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA== + dependencies: + "@jridgewell/trace-mapping" "^0.3.12" + "@types/istanbul-lib-coverage" "^2.0.1" + convert-source-map "^1.6.0" + v8flags@^3.1.3: version "3.2.0" resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.2.0.tgz#b243e3b4dfd731fa774e7492128109a0fe66d656" @@ -4521,6 +6319,13 @@ vm2@^3.9.3: acorn "^8.7.0" acorn-walk "^8.2.0" +walker@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== + dependencies: + makeerror "1.0.12" + webidl-conversions@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" @@ -4581,6 +6386,14 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= +write-file-atomic@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" + integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== + dependencies: + imurmurhash "^0.1.4" + signal-exit "^3.0.7" + ws@^7.0.0: version "7.5.5" resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.5.tgz#8b4bc4af518cfabd0473ae4f99144287b33eb881" @@ -4609,6 +6422,11 @@ xtend@^4.0.0: resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + yallist@^3.0.2: version "3.1.1" resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" @@ -4632,6 +6450,24 @@ yamljs@0.3.0: argparse "^1.0.7" glob "^7.0.5" +yargs-parser@^21.0.1, yargs-parser@^21.1.1: + version "21.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + +yargs@^17.3.1: + version "17.7.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== + dependencies: + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.1.1" + yn@3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" From 0f80977bacaa1786b1697e69d65cf6b206dd37ee Mon Sep 17 00:00:00 2001 From: manelcecs Date: Thu, 26 Oct 2023 08:08:35 +0200 Subject: [PATCH 02/19] Add containers configuration and bash --- bin/test.sh | 83 ++ .../services/solr/confs/conf/accents_ar.txt | 0 .../services/solr/confs/conf/accents_en.txt | 164 ++++ .../services/solr/confs/conf/accents_es.txt | 164 ++++ .../services/solr/confs/conf/accents_fr.txt | 164 ++++ .../services/solr/confs/conf/accents_und.txt | 148 ++++ config/services/solr/confs/conf/elevate.xml | 27 + config/services/solr/confs/conf/nouns_ar.txt | 0 config/services/solr/confs/conf/nouns_es.txt | 0 config/services/solr/confs/conf/nouns_fr.txt | 0 .../services/solr/confs/conf/protwords_ar.txt | 0 .../services/solr/confs/conf/protwords_en.txt | 7 + .../services/solr/confs/conf/protwords_es.txt | 0 .../services/solr/confs/conf/protwords_fr.txt | 0 .../solr/confs/conf/protwords_und.txt | 0 config/services/solr/confs/conf/schema.xml | 499 +++++++++++ .../solr/confs/conf/schema_extra_fields.xml | 425 +++++++++ .../solr/confs/conf/schema_extra_types.xml | 481 +++++++++++ .../services/solr/confs/conf/solrconfig.xml | 810 ++++++++++++++++++ .../solr/confs/conf/solrconfig_extra.xml | 281 ++++++ .../solr/confs/conf/solrconfig_index.xml | 0 .../solr/confs/conf/solrconfig_query.xml | 47 + .../conf/solrconfig_requestdispatcher.xml | 6 + .../solr/confs/conf/solrcore.properties | 9 + .../services/solr/confs/conf/stopwords_ar.txt | 119 +++ .../services/solr/confs/conf/stopwords_en.txt | 35 + .../services/solr/confs/conf/stopwords_es.txt | 308 +++++++ .../services/solr/confs/conf/stopwords_fr.txt | 163 ++++ .../solr/confs/conf/stopwords_und.txt | 0 .../services/solr/confs/conf/synonyms_ar.txt | 1 + .../services/solr/confs/conf/synonyms_en.txt | 1 + .../services/solr/confs/conf/synonyms_es.txt | 1 + .../services/solr/confs/conf/synonyms_fr.txt | 1 + .../services/solr/confs/conf/synonyms_und.txt | 1 + config/services/solr/run/entrypoint | 9 + config/services/solr/run/solr | 20 + src/data-providers/postgres/index.ts | 4 +- tests/.env.example | 47 + tests/docker-compose.yml | 52 ++ 39 files changed, 4075 insertions(+), 2 deletions(-) create mode 100755 bin/test.sh create mode 100644 config/services/solr/confs/conf/accents_ar.txt create mode 100644 config/services/solr/confs/conf/accents_en.txt create mode 100644 config/services/solr/confs/conf/accents_es.txt create mode 100644 config/services/solr/confs/conf/accents_fr.txt create mode 100644 config/services/solr/confs/conf/accents_und.txt create mode 100644 config/services/solr/confs/conf/elevate.xml create mode 100644 config/services/solr/confs/conf/nouns_ar.txt create mode 100644 config/services/solr/confs/conf/nouns_es.txt create mode 100644 config/services/solr/confs/conf/nouns_fr.txt create mode 100644 config/services/solr/confs/conf/protwords_ar.txt create mode 100644 config/services/solr/confs/conf/protwords_en.txt create mode 100644 config/services/solr/confs/conf/protwords_es.txt create mode 100644 config/services/solr/confs/conf/protwords_fr.txt create mode 100644 config/services/solr/confs/conf/protwords_und.txt create mode 100644 config/services/solr/confs/conf/schema.xml create mode 100644 config/services/solr/confs/conf/schema_extra_fields.xml create mode 100644 config/services/solr/confs/conf/schema_extra_types.xml create mode 100644 config/services/solr/confs/conf/solrconfig.xml create mode 100644 config/services/solr/confs/conf/solrconfig_extra.xml create mode 100644 config/services/solr/confs/conf/solrconfig_index.xml create mode 100644 config/services/solr/confs/conf/solrconfig_query.xml create mode 100644 config/services/solr/confs/conf/solrconfig_requestdispatcher.xml create mode 100644 config/services/solr/confs/conf/solrcore.properties create mode 100644 config/services/solr/confs/conf/stopwords_ar.txt create mode 100644 config/services/solr/confs/conf/stopwords_en.txt create mode 100644 config/services/solr/confs/conf/stopwords_es.txt create mode 100644 config/services/solr/confs/conf/stopwords_fr.txt create mode 100644 config/services/solr/confs/conf/stopwords_und.txt create mode 100644 config/services/solr/confs/conf/synonyms_ar.txt create mode 100644 config/services/solr/confs/conf/synonyms_en.txt create mode 100644 config/services/solr/confs/conf/synonyms_es.txt create mode 100644 config/services/solr/confs/conf/synonyms_fr.txt create mode 100644 config/services/solr/confs/conf/synonyms_und.txt create mode 100755 config/services/solr/run/entrypoint create mode 100755 config/services/solr/run/solr create mode 100644 tests/.env.example create mode 100644 tests/docker-compose.yml diff --git a/bin/test.sh b/bin/test.sh new file mode 100755 index 00000000..b2dc31ac --- /dev/null +++ b/bin/test.sh @@ -0,0 +1,83 @@ +root=$(pwd) + +#Global variables +USAGE='this is the usage' +DEBUG_USAGE='this is the debug usage' +KEEP=0 +ONLY_CONTAINERS=0 +STOP_CONTAINERSq=0 +COMMAND_ARGS='--' + +function moveToTestDir { + echo 'Moving to tests dir' + cd ${root}/tests +} + +function moveToRootDir { + echo 'Moving to root dir' + cd ${root} +} + +## obtain options +while [ "$1" != "" ]; do + case $1 in + -d | --debug ) echo "Debug usage" + echo "$DEBUG_USAGE" + exit 0 + ;; + -oc | --only-containers ) ONLY_CONTAINERS=1 + ;; + -sc | --stop-containers ) STOP_CONTAINERS=1 + ;; + -k | --keep ) KEEP=1 + ;; + -h | --help ) echo "$USAGE" + exit + ;; + --) shift + while [ "$1" != "" ]; do + COMMAND_ARGS="${COMMAND_ARGS} $1" + shift + done + ;; + * ) echo "$USAGE" + exit 1 + esac + shift +done + +## STOP_CONTAINERS is a final option +if [ $STOP_CONTAINERS -eq 1 ]; then + echo 'Stopping docker containers' + moveToTestDir + docker-compose down + exit 0 +fi + +## ONLY_CONTAINERS must be 1 and STOP must be 0 +if [ $ONLY_CONTAINERS -eq 1 ] && [ $STOP -eq 1 ]; then + echo 'Invalid options - when using option -oc, option -ns must be used as well' + echo "$usage" + exit 1 +fi + +## should we check if docker is running? +echo 'Starting docker containers' +moveToTestDir +docker-compose up -d + +if [ $ONLY_CONTAINERS -eq 1 ]; then + exit 0 +fi + +## run tests +echo 'Running tests' +moveToRootDir +yarn jest + +if [ $KEEP -eq 0 ]; then + ## stop docker containers + echo 'Stopping docker containers' + moveToTestDir + docker-compose down +fi \ No newline at end of file diff --git a/config/services/solr/confs/conf/accents_ar.txt b/config/services/solr/confs/conf/accents_ar.txt new file mode 100644 index 00000000..e69de29b diff --git a/config/services/solr/confs/conf/accents_en.txt b/config/services/solr/confs/conf/accents_en.txt new file mode 100644 index 00000000..bed05147 --- /dev/null +++ b/config/services/solr/confs/conf/accents_en.txt @@ -0,0 +1,164 @@ +# À => A +"\u00C0" => "A" +# Á => A +"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Ą => A +"\u0104" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# Ć => C +"\U0106" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ę => E +"\u0118" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ł => L +"\u0141" => "L" +# Ñ => N +"\u00D1" => "N" +# Ń => N +"\u0143" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# Ś => S +"\u015a" => "S" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# Ź => Z +"\u0179" => "Z" +# Ż => Z +"\u017b" => "Z" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/config/services/solr/confs/conf/accents_es.txt b/config/services/solr/confs/conf/accents_es.txt new file mode 100644 index 00000000..265e5e3d --- /dev/null +++ b/config/services/solr/confs/conf/accents_es.txt @@ -0,0 +1,164 @@ +# À => A +"\u00C0" => "A" +# Á => A +#"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Ą => A +"\u0104" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# Ć => C +"\U0106" => "C" +# È => E +"\u00C8" => "E" +# É => E +#"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ę => E +"\u0118" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +#"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ł => L +"\u0141" => "L" +# Ñ => N +#"\u00D1" => "N" +# Ń => N +"\u0143" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +#"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +#"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +#"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +#"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +#"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +#"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +#"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# Ś => S +"\u015a" => "S" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +#"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# Ź => Z +"\u0179" => "Z" +# Ż => Z +"\u017b" => "Z" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/config/services/solr/confs/conf/accents_fr.txt b/config/services/solr/confs/conf/accents_fr.txt new file mode 100644 index 00000000..7f66a29c --- /dev/null +++ b/config/services/solr/confs/conf/accents_fr.txt @@ -0,0 +1,164 @@ +# À => A +"\u00C0" => "A" +# Á => A +#"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +#"\u00C3" => "A" +# Ä => A +#"\u00C4" => "A" +# Å => A +#"\u00C5" => "A" +# Ą => A +#"\u0104" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# Ć => C +#"\U0106" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +#"\u00CB" => "E" +# Ę => E +#"\u0118" => "E" +# Ì => I +#"\u00CC" => "I" +# Í => I +#"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +#"\u00CF" => "I" +# IJ => IJ +#"\u0132" => "IJ" +# Ð => D +#"\u00D0" => "D" +# Ł => L +#"\u0141" => "L" +# Ñ => N +#"\u00D1" => "N" +# Ń => N +#"\u0143" => "N" +# Ò => O +#"\u00D2" => "O" +# Ó => O +#"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +#"\u00D5" => "O" +# Ö => O +#"\u00D6" => "O" +# Ø => O +#"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +#"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +#"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +#"\u00DC" => "U" +# Ý => Y +#"\u00DD" => "Y" +# Ÿ => Y +#"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +#"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +#"\u00E3" => "a" +# ä => a +#"\u00E4" => "a" +# å => a +#"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +#"\u00EB" => "e" +# ì => i +#"\u00EC" => "i" +# í => i +#"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +#"\u00EF" => "i" +# ij => ij +#"\u0133" => "ij" +# ð => d +#"\u00F0" => "d" +# ñ => n +#"\u00F1" => "n" +# ò => o +#"\u00F2" => "o" +# ó => o +#"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +#"\u00F5" => "o" +# ö => o +#"\u00F6" => "o" +# ø => o +#"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +#"\u00DF" => "ss" +# Ś => S +#"\u015a" => "S" +# þ => th +#"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +#"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +#"\u00FD" => "y" +# ÿ => y +#"\u00FF" => "y" +# Ź => Z +#"\u0179" => "Z" +# Ż => Z +#"\u017b" => "Z" +# ff => ff +#"\uFB00" => "ff" +# fi => fi +#"\uFB01" => "fi" +# fl => fl +#"\uFB02" => "fl" +# ffi => ffi +#"\uFB03" => "ffi" +# ffl => ffl +#"\uFB04" => "ffl" +# ſt => st +#"\uFB05" => "st" +# st => st +#"\uFB06" => "st" diff --git a/config/services/solr/confs/conf/accents_und.txt b/config/services/solr/confs/conf/accents_und.txt new file mode 100644 index 00000000..7c883f87 --- /dev/null +++ b/config/services/solr/confs/conf/accents_und.txt @@ -0,0 +1,148 @@ +# À => A +"\u00C0" => "A" +# Á => A +"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ñ => N +"\u00D1" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/config/services/solr/confs/conf/elevate.xml b/config/services/solr/confs/conf/elevate.xml new file mode 100644 index 00000000..193a0e72 --- /dev/null +++ b/config/services/solr/confs/conf/elevate.xml @@ -0,0 +1,27 @@ + + + + + + + + + + diff --git a/config/services/solr/confs/conf/nouns_ar.txt b/config/services/solr/confs/conf/nouns_ar.txt new file mode 100644 index 00000000..e69de29b diff --git a/config/services/solr/confs/conf/nouns_es.txt b/config/services/solr/confs/conf/nouns_es.txt new file mode 100644 index 00000000..e69de29b diff --git a/config/services/solr/confs/conf/nouns_fr.txt b/config/services/solr/confs/conf/nouns_fr.txt new file mode 100644 index 00000000..e69de29b diff --git a/config/services/solr/confs/conf/protwords_ar.txt b/config/services/solr/confs/conf/protwords_ar.txt new file mode 100644 index 00000000..e69de29b diff --git a/config/services/solr/confs/conf/protwords_en.txt b/config/services/solr/confs/conf/protwords_en.txt new file mode 100644 index 00000000..cda85814 --- /dev/null +++ b/config/services/solr/confs/conf/protwords_en.txt @@ -0,0 +1,7 @@ +#----------------------------------------------------------------------- +# This file blocks words from being operated on by the stemmer and word delimiter. +& +< +> +' +" diff --git a/config/services/solr/confs/conf/protwords_es.txt b/config/services/solr/confs/conf/protwords_es.txt new file mode 100644 index 00000000..e69de29b diff --git a/config/services/solr/confs/conf/protwords_fr.txt b/config/services/solr/confs/conf/protwords_fr.txt new file mode 100644 index 00000000..e69de29b diff --git a/config/services/solr/confs/conf/protwords_und.txt b/config/services/solr/confs/conf/protwords_und.txt new file mode 100644 index 00000000..e69de29b diff --git a/config/services/solr/confs/conf/schema.xml b/config/services/solr/confs/conf/schema.xml new file mode 100644 index 00000000..179f5886 --- /dev/null +++ b/config/services/solr/confs/conf/schema.xml @@ -0,0 +1,499 @@ + + + + +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + &extrafields; + + + &extratypes; + + + id + + + + + diff --git a/config/services/solr/confs/conf/schema_extra_fields.xml b/config/services/solr/confs/conf/schema_extra_fields.xml new file mode 100644 index 00000000..c8eb41b4 --- /dev/null +++ b/config/services/solr/confs/conf/schema_extra_fields.xml @@ -0,0 +1,425 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/config/services/solr/confs/conf/schema_extra_types.xml b/config/services/solr/confs/conf/schema_extra_types.xml new file mode 100644 index 00000000..69ee225e --- /dev/null +++ b/config/services/solr/confs/conf/schema_extra_types.xml @@ -0,0 +1,481 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/config/services/solr/confs/conf/solrconfig.xml b/config/services/solr/confs/conf/solrconfig.xml new file mode 100644 index 00000000..e225b691 --- /dev/null +++ b/config/services/solr/confs/conf/solrconfig.xml @@ -0,0 +1,810 @@ + + + + + + +]> + + + + + + + ${solr.abortOnConfigurationError:true} + + + ${solr.luceneMatchVersion:8.11} + + + + + + + + + + + + + + + + + + + + + ${solr.data.dir:} + + + + + + + + + ${solr.hdfs.home:} + + ${solr.hdfs.confdir:} + + ${solr.hdfs.blockcache.enabled:true} + + ${solr.hdfs.blockcache.global:true} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${solr.lock.type:native} + + + + + + + + + + + + + true + + + &index; + + + + + + + + + ${solr.ulog.dir:} + + + + + ${solr.autoCommit.MaxDocs:-1} + ${solr.autoCommit.MaxTime:15000} + + + + + + ${solr.autoSoftCommit.MaxDocs:-1} + ${solr.autoSoftCommit.MaxTime:5000} + + + + + + + + + + + + + + + + &query; + + + + + + + + + + + + static firstSearcher warming in solrconfig.xml + + + + + + false + + + + + + + + + &requestdispatcher; + + + + + + + &extra; + + + + + + + + + 100 + + + + + + + + 70 + + 0.5 + + [-\w ,/\n\"']{20,200} + + + + + + + ]]> + ]]> + + + + + + + + + + + + + + + + + + + + + + + + ,, + ,, + ,, + ,, + ,]]> + ]]> + + + + + + 10 + .,!? + + + + + + + WORD + + + en + US + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5 + + + + + + + + + + + + + + + diff --git a/config/services/solr/confs/conf/solrconfig_extra.xml b/config/services/solr/confs/conf/solrconfig_extra.xml new file mode 100644 index 00000000..78e5d31f --- /dev/null +++ b/config/services/solr/confs/conf/solrconfig_extra.xml @@ -0,0 +1,281 @@ + + + ar + spellcheck_ar + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + en + spellcheck_en + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + fr + spellcheck_fr + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + und + spellcheck_und + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + zh_hans + spellcheck_zh_hans + solr.DirectSolrSpellChecker + internal + 0.5 + 1 + 1 + 5 + 1 + 0.01 + true + + + + es + spellcheck_es + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + + ar + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_ar + sm_context_tags + true + false + + + + en + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_en + sm_context_tags + true + false + + + + fr + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_fr + sm_context_tags + true + false + + + + und + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_und + sm_context_tags + true + false + + + + es + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_es + sm_context_tags + true + false + + + + + + false + false + false + true + false + 1 + false + 10 + + + terms + spellcheck + suggest + + + + + + + true + ignored_ + true + links + ignored_ + + + + + + + 1 + 1 + false + ${solr.mlt.timeAllowed:2000} + + + + + + + lucene + id + explicit + true + ${solr.selectSearchHandler.timeAllowed:-1} + false + + + spellcheck + elevator + + + + + + + id + und + on + false + false + 1 + 5 + 5 + true + true + 10 + 5 + + + spellcheck + + + + + + + true + und + 10 + + + suggest + + + + + + + id + true + + + tvComponent + + + + + + string + elevate.xml + + + + diff --git a/config/services/solr/confs/conf/solrconfig_index.xml b/config/services/solr/confs/conf/solrconfig_index.xml new file mode 100644 index 00000000..e69de29b diff --git a/config/services/solr/confs/conf/solrconfig_query.xml b/config/services/solr/confs/conf/solrconfig_query.xml new file mode 100644 index 00000000..5bdd6969 --- /dev/null +++ b/config/services/solr/confs/conf/solrconfig_query.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + true + + false + + 20 + 200 + 1024 diff --git a/config/services/solr/confs/conf/solrconfig_requestdispatcher.xml b/config/services/solr/confs/conf/solrconfig_requestdispatcher.xml new file mode 100644 index 00000000..3a3f17d1 --- /dev/null +++ b/config/services/solr/confs/conf/solrconfig_requestdispatcher.xml @@ -0,0 +1,6 @@ + + + diff --git a/config/services/solr/confs/conf/solrcore.properties b/config/services/solr/confs/conf/solrcore.properties new file mode 100644 index 00000000..af505a62 --- /dev/null +++ b/config/services/solr/confs/conf/solrcore.properties @@ -0,0 +1,9 @@ +#conf/solrcore.properties +solr.mlt.timeAllowed=2000 +solr.luceneMatchVersion=8.11.2 +solr.selectSearchHandler.timeAllowed=-1 +solr.autoCommit.MaxDocs=10000 +solr.autoCommit.MaxTime=15000 +solr.autoSoftCommit.MaxDocs=-1 +solr.autoSoftCommit.MaxTime=-1 +solr.install.dir=/opt/solr \ No newline at end of file diff --git a/config/services/solr/confs/conf/stopwords_ar.txt b/config/services/solr/confs/conf/stopwords_ar.txt new file mode 100644 index 00000000..e5ba3908 --- /dev/null +++ b/config/services/solr/confs/conf/stopwords_ar.txt @@ -0,0 +1,119 @@ +من +ومن +منها +منه +في +وفي +فيها +فيه +و +ف +ثم +او +أو +ب +بها +به +ا +أ +اى +اي +أي +أى +لا +ولا +الا +ألا +إلا +لكن +ما +وما +كما +فما +عن +مع +اذا +إذا +ان +أن +إن +انها +أنها +إنها +انه +أنه +إنه +بان +بأن +فان +فأن +وان +وأن +وإن +التى +التي +الذى +الذي +الذين +الى +الي +إلى +إلي +على +عليها +عليه +اما +أما +إما +ايضا +أيضا +كل +وكل +لم +ولم +لن +ولن +هى +هي +هو +وهى +وهي +وهو +فهى +فهي +فهو +انت +أنت +لك +لها +له +هذه +هذا +تلك +ذلك +هناك +كانت +كان +يكون +تكون +وكانت +وكان +غير +بعض +قد +نحو +بين +بينما +منذ +ضمن +حيث +الان +الآن +خلال +بعد +قبل +حتى +عند +عندما +لدى +جميع diff --git a/config/services/solr/confs/conf/stopwords_en.txt b/config/services/solr/confs/conf/stopwords_en.txt new file mode 100644 index 00000000..69810507 --- /dev/null +++ b/config/services/solr/confs/conf/stopwords_en.txt @@ -0,0 +1,35 @@ +a +an +and +are +as +at +be +but +by +for +if +in +into +is +it +no +not +of +on +or +s +such +t +that +the +their +then +there +these +they +this +to +was +will +with diff --git a/config/services/solr/confs/conf/stopwords_es.txt b/config/services/solr/confs/conf/stopwords_es.txt new file mode 100644 index 00000000..c59d9b20 --- /dev/null +++ b/config/services/solr/confs/conf/stopwords_es.txt @@ -0,0 +1,308 @@ +de +la +que +el +en +y +a +los +del +se +las +por +un +para +con +no +una +su +al +lo +como +más +pero +sus +le +ya +o +este +sí +porque +esta +entre +cuando +muy +sin +sobre +también +me +hasta +hay +donde +quien +desde +todo +nos +durante +todos +uno +les +ni +contra +otros +ese +eso +ante +ellos +e +esto +mí +antes +algunos +qué +unos +yo +otro +otras +otra +él +tanto +esa +estos +mucho +quienes +nada +muchos +cual +poco +ella +estar +estas +algunas +algo +nosotros +mi +mis +tú +te +ti +tu +tus +ellas +nosotras +vosotros +vosotras +os +mío +mía +míos +mías +tuyo +tuya +tuyos +tuyas +suyo +suya +suyos +suyas +nuestro +nuestra +nuestros +nuestras +vuestro +vuestra +vuestros +vuestras +esos +esas +estoy +estás +está +estamos +estáis +están +esté +estés +estemos +estéis +estén +estaré +estarás +estará +estaremos +estaréis +estarán +estaría +estarías +estaríamos +estaríais +estarían +estaba +estabas +estábamos +estabais +estaban +estuve +estuviste +estuvo +estuvimos +estuvisteis +estuvieron +estuviera +estuvieras +estuviéramos +estuvierais +estuvieran +estuviese +estuvieses +estuviésemos +estuvieseis +estuviesen +estando +estado +estada +estados +estadas +estad +he +has +ha +hemos +habéis +han +haya +hayas +hayamos +hayáis +hayan +habré +habrás +habrá +habremos +habréis +habrán +habría +habrías +habríamos +habríais +habrían +había +habías +habíamos +habíais +habían +hube +hubiste +hubo +hubimos +hubisteis +hubieron +hubiera +hubieras +hubiéramos +hubierais +hubieran +hubiese +hubieses +hubiésemos +hubieseis +hubiesen +habiendo +habido +habida +habidos +habidas +soy +eres +es +somos +sois +son +sea +seas +seamos +seáis +sean +seré +serás +será +seremos +seréis +serán +sería +serías +seríamos +seríais +serían +era +eras +éramos +erais +eran +fui +fuiste +fue +fuimos +fuisteis +fueron +fuera +fueras +fuéramos +fuerais +fueran +fuese +fueses +fuésemos +fueseis +fuesen +siendo +sido +tengo +tienes +tiene +tenemos +tenéis +tienen +tenga +tengas +tengamos +tengáis +tengan +tendré +tendrás +tendrá +tendremos +tendréis +tendrán +tendría +tendrías +tendríamos +tendríais +tendrían +tenía +tenías +teníamos +teníais +tenían +tuve +tuviste +tuvo +tuvimos +tuvisteis +tuvieron +tuviera +tuvieras +tuviéramos +tuvierais +tuvieran +tuviese +tuvieses +tuviésemos +tuvieseis +tuviesen +teniendo +tenido +tenida +tenidos +tenidas +tened diff --git a/config/services/solr/confs/conf/stopwords_fr.txt b/config/services/solr/confs/conf/stopwords_fr.txt new file mode 100644 index 00000000..c78ec5aa --- /dev/null +++ b/config/services/solr/confs/conf/stopwords_fr.txt @@ -0,0 +1,163 @@ +au +aux +avec +ce +ces +dans +de +des +du +elle +en +et +eux +il +je +la +le +leur +lui +ma +mais +me +même +mes +moi +mon +ne +nos +notre +nous +on +ou +par +pas +pour +qu +que +qui +sa +se +ses +son +sur +ta +te +tes +toi +ton +tu +un +une +vos +votre +vous +c +d +j +l +à +m +n +s +t +y +été +étée +étées +étés +étant +suis +es +est +sommes +êtes +sont +serai +seras +sera +serons +serez +seront +serais +serait +serions +seriez +seraient +étais +était +étions +étiez +étaient +fus +fut +fûmes +fûtes +furent +sois +soit +soyons +soyez +soient +fusse +fusses +fût +fussions +fussiez +fussent +ayant +eu +eue +eues +eus +ai +as +avons +avez +ont +aurai +auras +aura +aurons +aurez +auront +aurais +aurait +aurions +auriez +auraient +avais +avait +avions +aviez +avaient +eut +eûmes +eûtes +eurent +aie +aies +ait +ayons +ayez +aient +eusse +eusses +eût +eussions +eussiez +eussent +ceci +celà +cet +cette +ici +ils +les +leurs +quel +quels +quelle +quelles +sans +soi diff --git a/config/services/solr/confs/conf/stopwords_und.txt b/config/services/solr/confs/conf/stopwords_und.txt new file mode 100644 index 00000000..e69de29b diff --git a/config/services/solr/confs/conf/synonyms_ar.txt b/config/services/solr/confs/conf/synonyms_ar.txt new file mode 100644 index 00000000..91689ff9 --- /dev/null +++ b/config/services/solr/confs/conf/synonyms_ar.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/config/services/solr/confs/conf/synonyms_en.txt b/config/services/solr/confs/conf/synonyms_en.txt new file mode 100644 index 00000000..91689ff9 --- /dev/null +++ b/config/services/solr/confs/conf/synonyms_en.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/config/services/solr/confs/conf/synonyms_es.txt b/config/services/solr/confs/conf/synonyms_es.txt new file mode 100644 index 00000000..91689ff9 --- /dev/null +++ b/config/services/solr/confs/conf/synonyms_es.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/config/services/solr/confs/conf/synonyms_fr.txt b/config/services/solr/confs/conf/synonyms_fr.txt new file mode 100644 index 00000000..91689ff9 --- /dev/null +++ b/config/services/solr/confs/conf/synonyms_fr.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/config/services/solr/confs/conf/synonyms_und.txt b/config/services/solr/confs/conf/synonyms_und.txt new file mode 100644 index 00000000..91689ff9 --- /dev/null +++ b/config/services/solr/confs/conf/synonyms_und.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/config/services/solr/run/entrypoint b/config/services/solr/run/entrypoint new file mode 100755 index 00000000..8a4ed49b --- /dev/null +++ b/config/services/solr/run/entrypoint @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +echo "Changing permissions of solr directories" +chown -R solr:solr /var/solr/data/ +chown -R solr:solr /var/solr/logs/ + +exec su solr -c "export PATH=$PATH; /opt/hpc-solr/run/solr" diff --git a/config/services/solr/run/solr b/config/services/solr/run/solr new file mode 100755 index 00000000..d94b7ea3 --- /dev/null +++ b/config/services/solr/run/solr @@ -0,0 +1,20 @@ +#!/bin/bash + +set -e + +SOLR_HOME=/var/solr/data + +CONFDIR=/opt/hpc-solr/confs +SOLR_CORE=${SOLR_CORE:-fts} + +cd ${SOLR_HOME} + +if [ -d ${SOLR_HOME}/${SOLR_CORE} ]; then + echo "HPC-specific SOLR initialization seems completed. Skipping it." + solr-foreground +else + echo "Performing a one time HPC-specific SOLR initialization..." + echo "Creating a new solr core..." + VERBOSE=yes solr-precreate ${SOLR_CORE} ${CONFDIR} + echo "HPC init done!" +fi diff --git a/src/data-providers/postgres/index.ts b/src/data-providers/postgres/index.ts index 3514399a..3daa3406 100644 --- a/src/data-providers/postgres/index.ts +++ b/src/data-providers/postgres/index.ts @@ -4,10 +4,10 @@ import { CONFIG } from '../../../config'; /** * Initialize a new Postgres provider */ -export async function createDbConnetion() { +export async function createDbConnetion(connection?: string) { const knex = Knex({ client: 'pg', - connection: CONFIG.db.connection, + connection: connection ?? CONFIG.db.connection, pool: { min: CONFIG.db.poolMin, max: CONFIG.db.poolMax, diff --git a/tests/.env.example b/tests/.env.example new file mode 100644 index 00000000..4728640f --- /dev/null +++ b/tests/.env.example @@ -0,0 +1,47 @@ +NAME=hpc_service-dockerdev + +APPBASE_URL=http://rpm.hpc.vm +AUTHBASE_URL=http://api.hid.vm +AUTHCLIENTID=rpm-local +AUTHCLIENTSECRET=Kk6a8bk@HZBs +DEBUG=1 +DOCS_DIRECTORY=/mnt/www/docs +DOCS_URL=http://service.hpc.vm/docs/v1 +EDRIS_DIRECTORY=/srv/fts/edris/ +EDRIS_ARCHIVE_DIRECTORY=/srv/fts/edris/archive/ +ENDPOINT_TRACE=0 +ENDPOINT_USAGE=0 +FILEHREF_PREFIX=/public/files +SFTP_HOST=ftp +SFTP_PORT=2222 +SFTP_USER=sftpuser +SFTP_PASSPHRASE=sftppassphrase +SFTP_PRIVATE_KEY=path/to/private/key +SFTP_FOLDER=./ +FTSBASE_URL=http://fts.hpc.vm +HRINFOBASE_URL=http://hrtest.568elmp02.blackmesh.com +HID_API_URL=https://api.hid.vm/api/v2/ +HPCTEST_PARTICIPANT_EMAIL=alex@example.com +HPCTEST_PARTICIPANT_PASS=test +IATI_DIRECTORY=/srv/fts/iati/ +POSTGRES_SERVER=postgres://postgres:@pgsql:5432/ +POSTGRES_NAME=hpc +POSTGRES_LOGGING=0 +PROJECTBASE_URL=http://props.hpc.vm:4200 +PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true +REQUIRE_SSL=0 +ROOT_URL=http://service.hpc.vm +SNAP_URL=http://snap:8442/snap +AWS_ACCESS_KEY_ID=test +AWS_SECRET_ACCESS_KEY=foobarbazbat +AWS_S3_BUCKET=default +AWS_S3_ENDPOINT=minio +AWS_S3_PORT=9000 +AWS_REGION=somewhere +SOLR_HOST=solr +SOLR_PORT=8983 +SOLR_CORE=fts +SOLR_PATH=/solr +SOLR_VERSION=5.1 +TMP_DIRECTORY=/tmp/hpc +UPLOAD_DIRECTORY=/mnt/uploads \ No newline at end of file diff --git a/tests/docker-compose.yml b/tests/docker-compose.yml new file mode 100644 index 00000000..511f63d2 --- /dev/null +++ b/tests/docker-compose.yml @@ -0,0 +1,52 @@ +version: '3.8' +services: + db: + image: postgres:14-alpine3.18 + container_name: hpc_postgres_test + ports: + - 6432:5432 + environment: + - POSTGRES_USER=postgres + - POSTGRES_PASSWORD=test + - POSTGRES_DB=test + volumes: + - ./migration/migration.sql:/docker-entrypoint-initdb.d/init.sql + #command: -p 5432 + solr: + image: solr:8.11.2-slim + environment: + DNSDOCK_NAME: solr + DNSDOCK_IMAGE: hpc + SOLR_CORE: fts ## take it as env var SOLR_CORE: ${SOLR_CORE} + container_name: hpcservice_solr_1 + volumes: + - './config/services/solr:/opt/hpc-solr:rw' + - './data/test/hpc/solr_logs:/var/solr/logs:rw' + - './data/test/hpc/solr_backups:/var/solr/data/backups:rw' + - './data/test/hpc/solr:/var/solr/data:rw' + # networks: + # service: + # aliases: + # - solr + # - solr.hpc.vm + entrypoint: /opt/hpc-solr/run/entrypoint + user: root + ulimits: + nofile: + soft: 65000 + hard: 65000 + hid: + image: public.ecr.aws/unocha/nodejs:18-alpine + volumes: + - ../tools/hid_api_mock:/srv/www + env_file: + - .env.example + environment: + PORT: 80 + hostname: hidapi + container_name: test_hidservice + # networks: + # service: + # aliases: + # - hidapi + # - api.hid.vm \ No newline at end of file From 2930fc187fe8a6e07a5fde479d5682d50e04a330 Mon Sep 17 00:00:00 2001 From: manelcecs Date: Thu, 26 Oct 2023 08:41:58 +0200 Subject: [PATCH 03/19] Add solr data for container --- .../services/solr/confs/conf/accents_ar.txt | 0 .../services/solr/confs/conf/accents_en.txt | 164 + .../services/solr/confs/conf/accents_es.txt | 164 + .../services/solr/confs/conf/accents_fr.txt | 164 + .../services/solr/confs/conf/accents_und.txt | 148 + .../services/solr/confs/conf/elevate.xml | 27 + .../services/solr/confs/conf/nouns_ar.txt | 0 .../services/solr/confs/conf/nouns_es.txt | 0 .../services/solr/confs/conf/nouns_fr.txt | 0 .../services/solr/confs/conf/protwords_ar.txt | 0 .../services/solr/confs/conf/protwords_en.txt | 7 + .../services/solr/confs/conf/protwords_es.txt | 0 .../services/solr/confs/conf/protwords_fr.txt | 0 .../solr/confs/conf/protwords_und.txt | 0 .../services/solr/confs/conf/schema.xml | 499 + .../solr/confs/conf/schema_extra_fields.xml | 425 + .../solr/confs/conf/schema_extra_types.xml | 481 + .../services/solr/confs/conf/solrconfig.xml | 810 ++ .../solr/confs/conf/solrconfig_extra.xml | 281 + .../solr/confs/conf/solrconfig_index.xml | 0 .../solr/confs/conf/solrconfig_query.xml | 47 + .../conf/solrconfig_requestdispatcher.xml | 6 + .../solr/confs/conf/solrcore.properties | 9 + .../services/solr/confs/conf/stopwords_ar.txt | 119 + .../services/solr/confs/conf/stopwords_en.txt | 35 + .../services/solr/confs/conf/stopwords_es.txt | 308 + .../services/solr/confs/conf/stopwords_fr.txt | 163 + .../solr/confs/conf/stopwords_und.txt | 0 .../services/solr/confs/conf/synonyms_ar.txt | 1 + .../services/solr/confs/conf/synonyms_en.txt | 1 + .../services/solr/confs/conf/synonyms_es.txt | 1 + .../services/solr/confs/conf/synonyms_fr.txt | 1 + .../services/solr/confs/conf/synonyms_und.txt | 1 + tests/config/services/solr/run/entrypoint | 9 + tests/config/services/solr/run/solr | 20 + .../test/hpc/solr/fts/conf/accents_ar.txt | 0 .../test/hpc/solr/fts/conf/accents_en.txt | 164 + .../test/hpc/solr/fts/conf/accents_es.txt | 164 + .../test/hpc/solr/fts/conf/accents_fr.txt | 164 + .../test/hpc/solr/fts/conf/accents_und.txt | 148 + tests/data/test/hpc/solr/fts/conf/elevate.xml | 27 + .../data/test/hpc/solr/fts/conf/nouns_ar.txt | 0 .../data/test/hpc/solr/fts/conf/nouns_es.txt | 0 .../data/test/hpc/solr/fts/conf/nouns_fr.txt | 0 .../test/hpc/solr/fts/conf/protwords_ar.txt | 0 .../test/hpc/solr/fts/conf/protwords_en.txt | 7 + .../test/hpc/solr/fts/conf/protwords_es.txt | 0 .../test/hpc/solr/fts/conf/protwords_fr.txt | 0 .../test/hpc/solr/fts/conf/protwords_und.txt | 0 tests/data/test/hpc/solr/fts/conf/schema.xml | 499 + .../hpc/solr/fts/conf/schema_extra_fields.xml | 425 + .../hpc/solr/fts/conf/schema_extra_types.xml | 481 + .../test/hpc/solr/fts/conf/solrconfig.xml | 810 ++ .../hpc/solr/fts/conf/solrconfig_extra.xml | 281 + .../hpc/solr/fts/conf/solrconfig_index.xml | 0 .../hpc/solr/fts/conf/solrconfig_query.xml | 47 + .../fts/conf/solrconfig_requestdispatcher.xml | 6 + .../hpc/solr/fts/conf/solrcore.properties | 9 + .../test/hpc/solr/fts/conf/stopwords_ar.txt | 119 + .../test/hpc/solr/fts/conf/stopwords_en.txt | 35 + .../test/hpc/solr/fts/conf/stopwords_es.txt | 308 + .../test/hpc/solr/fts/conf/stopwords_fr.txt | 163 + .../test/hpc/solr/fts/conf/stopwords_und.txt | 0 .../test/hpc/solr/fts/conf/synonyms_ar.txt | 1 + .../test/hpc/solr/fts/conf/synonyms_en.txt | 1 + .../test/hpc/solr/fts/conf/synonyms_es.txt | 1 + .../test/hpc/solr/fts/conf/synonyms_fr.txt | 1 + .../test/hpc/solr/fts/conf/synonyms_und.txt | 1 + tests/data/test/hpc/solr/fts/core.properties | 0 .../segments_ge | Bin 0 -> 70 bytes .../write.lock | 0 .../test/hpc/solr/fts/data/index/segments_3b | Bin 0 -> 118 bytes .../test/hpc/solr/fts/data/index/write.lock | 0 .../fts/data/tlog/tlog.0000000000000000207 | Bin 0 -> 92 bytes .../fts/data/tlog/tlog.0000000000000000208 | Bin 0 -> 75 bytes .../fts/data/tlog/tlog.0000000000000000209 | Bin 0 -> 75 bytes .../fts/data/tlog/tlog.0000000000000000210 | Bin 0 -> 1533 bytes .../fts/data/tlog/tlog.0000000000000000211 | Bin 0 -> 75 bytes .../fts/data/tlog/tlog.0000000000000000212 | Bin 0 -> 75 bytes .../fts/data/tlog/tlog.0000000000000000213 | Bin 0 -> 1094 bytes .../fts/data/tlog/tlog.0000000000000000214 | Bin 0 -> 558 bytes .../fts/data/tlog/tlog.0000000000000000215 | Bin 0 -> 611 bytes .../fts/data/tlog/tlog.0000000000000000216 | Bin 0 -> 120 bytes tests/data/test/hpc/solr/solr.xml | 60 + tests/data/test/hpc/solr/zoo.cfg | 34 + tests/data/test/hpc/solr_logs/solr.log.1 | 38 + tests/data/test/hpc/solr_logs/solr.log.2 | 82 + tests/data/test/hpc/solr_logs/solr.log.3 | 85 + tests/data/test/hpc/solr_logs/solr.log.4 | 2214 +++++ tests/data/test/hpc/solr_logs/solr.log.5 | 899 ++ tests/data/test/hpc/solr_logs/solr.log.6 | 79 + tests/data/test/hpc/solr_logs/solr.log.7 | 79 + tests/data/test/hpc/solr_logs/solr_gc.log.0 | 131 + tests/data/test/hpc/solr_logs/solr_gc.log.1 | 181 + tests/data/test/hpc/solr_logs/solr_gc.log.2 | 181 + tests/data/test/hpc/solr_logs/solr_gc.log.3 | 272 + tests/data/test/hpc/solr_logs/solr_gc.log.4 | 246 + tests/data/test/hpc/solr_logs/solr_gc.log.5 | 205 + tests/data/test/hpc/solr_logs/solr_gc.log.6 | 181 + tests/migration/migration.sql | 8392 +++++++++++++++++ 100 files changed, 21112 insertions(+) create mode 100644 tests/config/services/solr/confs/conf/accents_ar.txt create mode 100644 tests/config/services/solr/confs/conf/accents_en.txt create mode 100644 tests/config/services/solr/confs/conf/accents_es.txt create mode 100644 tests/config/services/solr/confs/conf/accents_fr.txt create mode 100644 tests/config/services/solr/confs/conf/accents_und.txt create mode 100644 tests/config/services/solr/confs/conf/elevate.xml create mode 100644 tests/config/services/solr/confs/conf/nouns_ar.txt create mode 100644 tests/config/services/solr/confs/conf/nouns_es.txt create mode 100644 tests/config/services/solr/confs/conf/nouns_fr.txt create mode 100644 tests/config/services/solr/confs/conf/protwords_ar.txt create mode 100644 tests/config/services/solr/confs/conf/protwords_en.txt create mode 100644 tests/config/services/solr/confs/conf/protwords_es.txt create mode 100644 tests/config/services/solr/confs/conf/protwords_fr.txt create mode 100644 tests/config/services/solr/confs/conf/protwords_und.txt create mode 100644 tests/config/services/solr/confs/conf/schema.xml create mode 100644 tests/config/services/solr/confs/conf/schema_extra_fields.xml create mode 100644 tests/config/services/solr/confs/conf/schema_extra_types.xml create mode 100644 tests/config/services/solr/confs/conf/solrconfig.xml create mode 100644 tests/config/services/solr/confs/conf/solrconfig_extra.xml create mode 100644 tests/config/services/solr/confs/conf/solrconfig_index.xml create mode 100644 tests/config/services/solr/confs/conf/solrconfig_query.xml create mode 100644 tests/config/services/solr/confs/conf/solrconfig_requestdispatcher.xml create mode 100644 tests/config/services/solr/confs/conf/solrcore.properties create mode 100644 tests/config/services/solr/confs/conf/stopwords_ar.txt create mode 100644 tests/config/services/solr/confs/conf/stopwords_en.txt create mode 100644 tests/config/services/solr/confs/conf/stopwords_es.txt create mode 100644 tests/config/services/solr/confs/conf/stopwords_fr.txt create mode 100644 tests/config/services/solr/confs/conf/stopwords_und.txt create mode 100644 tests/config/services/solr/confs/conf/synonyms_ar.txt create mode 100644 tests/config/services/solr/confs/conf/synonyms_en.txt create mode 100644 tests/config/services/solr/confs/conf/synonyms_es.txt create mode 100644 tests/config/services/solr/confs/conf/synonyms_fr.txt create mode 100644 tests/config/services/solr/confs/conf/synonyms_und.txt create mode 100755 tests/config/services/solr/run/entrypoint create mode 100755 tests/config/services/solr/run/solr create mode 100644 tests/data/test/hpc/solr/fts/conf/accents_ar.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/accents_en.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/accents_es.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/accents_fr.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/accents_und.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/elevate.xml create mode 100644 tests/data/test/hpc/solr/fts/conf/nouns_ar.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/nouns_es.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/nouns_fr.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/protwords_ar.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/protwords_en.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/protwords_es.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/protwords_fr.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/protwords_und.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/schema.xml create mode 100644 tests/data/test/hpc/solr/fts/conf/schema_extra_fields.xml create mode 100644 tests/data/test/hpc/solr/fts/conf/schema_extra_types.xml create mode 100644 tests/data/test/hpc/solr/fts/conf/solrconfig.xml create mode 100644 tests/data/test/hpc/solr/fts/conf/solrconfig_extra.xml create mode 100644 tests/data/test/hpc/solr/fts/conf/solrconfig_index.xml create mode 100644 tests/data/test/hpc/solr/fts/conf/solrconfig_query.xml create mode 100644 tests/data/test/hpc/solr/fts/conf/solrconfig_requestdispatcher.xml create mode 100644 tests/data/test/hpc/solr/fts/conf/solrcore.properties create mode 100644 tests/data/test/hpc/solr/fts/conf/stopwords_ar.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/stopwords_en.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/stopwords_es.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/stopwords_fr.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/stopwords_und.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/synonyms_ar.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/synonyms_en.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/synonyms_es.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/synonyms_fr.txt create mode 100644 tests/data/test/hpc/solr/fts/conf/synonyms_und.txt create mode 100644 tests/data/test/hpc/solr/fts/core.properties create mode 100644 tests/data/test/hpc/solr/fts/data/analyzingInfixSuggesterIndexDir/segments_ge create mode 100644 tests/data/test/hpc/solr/fts/data/analyzingInfixSuggesterIndexDir/write.lock create mode 100644 tests/data/test/hpc/solr/fts/data/index/segments_3b create mode 100644 tests/data/test/hpc/solr/fts/data/index/write.lock create mode 100644 tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000207 create mode 100644 tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000208 create mode 100644 tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000209 create mode 100644 tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000210 create mode 100644 tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000211 create mode 100644 tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000212 create mode 100644 tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000213 create mode 100644 tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000214 create mode 100644 tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000215 create mode 100644 tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000216 create mode 100644 tests/data/test/hpc/solr/solr.xml create mode 100644 tests/data/test/hpc/solr/zoo.cfg create mode 100644 tests/data/test/hpc/solr_logs/solr.log.1 create mode 100644 tests/data/test/hpc/solr_logs/solr.log.2 create mode 100644 tests/data/test/hpc/solr_logs/solr.log.3 create mode 100644 tests/data/test/hpc/solr_logs/solr.log.4 create mode 100644 tests/data/test/hpc/solr_logs/solr.log.5 create mode 100644 tests/data/test/hpc/solr_logs/solr.log.6 create mode 100644 tests/data/test/hpc/solr_logs/solr.log.7 create mode 100644 tests/data/test/hpc/solr_logs/solr_gc.log.0 create mode 100644 tests/data/test/hpc/solr_logs/solr_gc.log.1 create mode 100644 tests/data/test/hpc/solr_logs/solr_gc.log.2 create mode 100644 tests/data/test/hpc/solr_logs/solr_gc.log.3 create mode 100644 tests/data/test/hpc/solr_logs/solr_gc.log.4 create mode 100644 tests/data/test/hpc/solr_logs/solr_gc.log.5 create mode 100644 tests/data/test/hpc/solr_logs/solr_gc.log.6 create mode 100644 tests/migration/migration.sql diff --git a/tests/config/services/solr/confs/conf/accents_ar.txt b/tests/config/services/solr/confs/conf/accents_ar.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/config/services/solr/confs/conf/accents_en.txt b/tests/config/services/solr/confs/conf/accents_en.txt new file mode 100644 index 00000000..bed05147 --- /dev/null +++ b/tests/config/services/solr/confs/conf/accents_en.txt @@ -0,0 +1,164 @@ +# À => A +"\u00C0" => "A" +# Á => A +"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Ą => A +"\u0104" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# Ć => C +"\U0106" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ę => E +"\u0118" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ł => L +"\u0141" => "L" +# Ñ => N +"\u00D1" => "N" +# Ń => N +"\u0143" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# Ś => S +"\u015a" => "S" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# Ź => Z +"\u0179" => "Z" +# Ż => Z +"\u017b" => "Z" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/tests/config/services/solr/confs/conf/accents_es.txt b/tests/config/services/solr/confs/conf/accents_es.txt new file mode 100644 index 00000000..265e5e3d --- /dev/null +++ b/tests/config/services/solr/confs/conf/accents_es.txt @@ -0,0 +1,164 @@ +# À => A +"\u00C0" => "A" +# Á => A +#"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Ą => A +"\u0104" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# Ć => C +"\U0106" => "C" +# È => E +"\u00C8" => "E" +# É => E +#"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ę => E +"\u0118" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +#"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ł => L +"\u0141" => "L" +# Ñ => N +#"\u00D1" => "N" +# Ń => N +"\u0143" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +#"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +#"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +#"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +#"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +#"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +#"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +#"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# Ś => S +"\u015a" => "S" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +#"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# Ź => Z +"\u0179" => "Z" +# Ż => Z +"\u017b" => "Z" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/tests/config/services/solr/confs/conf/accents_fr.txt b/tests/config/services/solr/confs/conf/accents_fr.txt new file mode 100644 index 00000000..7f66a29c --- /dev/null +++ b/tests/config/services/solr/confs/conf/accents_fr.txt @@ -0,0 +1,164 @@ +# À => A +"\u00C0" => "A" +# Á => A +#"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +#"\u00C3" => "A" +# Ä => A +#"\u00C4" => "A" +# Å => A +#"\u00C5" => "A" +# Ą => A +#"\u0104" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# Ć => C +#"\U0106" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +#"\u00CB" => "E" +# Ę => E +#"\u0118" => "E" +# Ì => I +#"\u00CC" => "I" +# Í => I +#"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +#"\u00CF" => "I" +# IJ => IJ +#"\u0132" => "IJ" +# Ð => D +#"\u00D0" => "D" +# Ł => L +#"\u0141" => "L" +# Ñ => N +#"\u00D1" => "N" +# Ń => N +#"\u0143" => "N" +# Ò => O +#"\u00D2" => "O" +# Ó => O +#"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +#"\u00D5" => "O" +# Ö => O +#"\u00D6" => "O" +# Ø => O +#"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +#"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +#"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +#"\u00DC" => "U" +# Ý => Y +#"\u00DD" => "Y" +# Ÿ => Y +#"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +#"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +#"\u00E3" => "a" +# ä => a +#"\u00E4" => "a" +# å => a +#"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +#"\u00EB" => "e" +# ì => i +#"\u00EC" => "i" +# í => i +#"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +#"\u00EF" => "i" +# ij => ij +#"\u0133" => "ij" +# ð => d +#"\u00F0" => "d" +# ñ => n +#"\u00F1" => "n" +# ò => o +#"\u00F2" => "o" +# ó => o +#"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +#"\u00F5" => "o" +# ö => o +#"\u00F6" => "o" +# ø => o +#"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +#"\u00DF" => "ss" +# Ś => S +#"\u015a" => "S" +# þ => th +#"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +#"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +#"\u00FD" => "y" +# ÿ => y +#"\u00FF" => "y" +# Ź => Z +#"\u0179" => "Z" +# Ż => Z +#"\u017b" => "Z" +# ff => ff +#"\uFB00" => "ff" +# fi => fi +#"\uFB01" => "fi" +# fl => fl +#"\uFB02" => "fl" +# ffi => ffi +#"\uFB03" => "ffi" +# ffl => ffl +#"\uFB04" => "ffl" +# ſt => st +#"\uFB05" => "st" +# st => st +#"\uFB06" => "st" diff --git a/tests/config/services/solr/confs/conf/accents_und.txt b/tests/config/services/solr/confs/conf/accents_und.txt new file mode 100644 index 00000000..7c883f87 --- /dev/null +++ b/tests/config/services/solr/confs/conf/accents_und.txt @@ -0,0 +1,148 @@ +# À => A +"\u00C0" => "A" +# Á => A +"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ñ => N +"\u00D1" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/tests/config/services/solr/confs/conf/elevate.xml b/tests/config/services/solr/confs/conf/elevate.xml new file mode 100644 index 00000000..193a0e72 --- /dev/null +++ b/tests/config/services/solr/confs/conf/elevate.xml @@ -0,0 +1,27 @@ + + + + + + + + + + diff --git a/tests/config/services/solr/confs/conf/nouns_ar.txt b/tests/config/services/solr/confs/conf/nouns_ar.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/config/services/solr/confs/conf/nouns_es.txt b/tests/config/services/solr/confs/conf/nouns_es.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/config/services/solr/confs/conf/nouns_fr.txt b/tests/config/services/solr/confs/conf/nouns_fr.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/config/services/solr/confs/conf/protwords_ar.txt b/tests/config/services/solr/confs/conf/protwords_ar.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/config/services/solr/confs/conf/protwords_en.txt b/tests/config/services/solr/confs/conf/protwords_en.txt new file mode 100644 index 00000000..cda85814 --- /dev/null +++ b/tests/config/services/solr/confs/conf/protwords_en.txt @@ -0,0 +1,7 @@ +#----------------------------------------------------------------------- +# This file blocks words from being operated on by the stemmer and word delimiter. +& +< +> +' +" diff --git a/tests/config/services/solr/confs/conf/protwords_es.txt b/tests/config/services/solr/confs/conf/protwords_es.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/config/services/solr/confs/conf/protwords_fr.txt b/tests/config/services/solr/confs/conf/protwords_fr.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/config/services/solr/confs/conf/protwords_und.txt b/tests/config/services/solr/confs/conf/protwords_und.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/config/services/solr/confs/conf/schema.xml b/tests/config/services/solr/confs/conf/schema.xml new file mode 100644 index 00000000..179f5886 --- /dev/null +++ b/tests/config/services/solr/confs/conf/schema.xml @@ -0,0 +1,499 @@ + + + + +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + &extrafields; + + + &extratypes; + + + id + + + + + diff --git a/tests/config/services/solr/confs/conf/schema_extra_fields.xml b/tests/config/services/solr/confs/conf/schema_extra_fields.xml new file mode 100644 index 00000000..c8eb41b4 --- /dev/null +++ b/tests/config/services/solr/confs/conf/schema_extra_fields.xml @@ -0,0 +1,425 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/config/services/solr/confs/conf/schema_extra_types.xml b/tests/config/services/solr/confs/conf/schema_extra_types.xml new file mode 100644 index 00000000..69ee225e --- /dev/null +++ b/tests/config/services/solr/confs/conf/schema_extra_types.xml @@ -0,0 +1,481 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/config/services/solr/confs/conf/solrconfig.xml b/tests/config/services/solr/confs/conf/solrconfig.xml new file mode 100644 index 00000000..e225b691 --- /dev/null +++ b/tests/config/services/solr/confs/conf/solrconfig.xml @@ -0,0 +1,810 @@ + + + + + + +]> + + + + + + + ${solr.abortOnConfigurationError:true} + + + ${solr.luceneMatchVersion:8.11} + + + + + + + + + + + + + + + + + + + + + ${solr.data.dir:} + + + + + + + + + ${solr.hdfs.home:} + + ${solr.hdfs.confdir:} + + ${solr.hdfs.blockcache.enabled:true} + + ${solr.hdfs.blockcache.global:true} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${solr.lock.type:native} + + + + + + + + + + + + + true + + + &index; + + + + + + + + + ${solr.ulog.dir:} + + + + + ${solr.autoCommit.MaxDocs:-1} + ${solr.autoCommit.MaxTime:15000} + + + + + + ${solr.autoSoftCommit.MaxDocs:-1} + ${solr.autoSoftCommit.MaxTime:5000} + + + + + + + + + + + + + + + + &query; + + + + + + + + + + + + static firstSearcher warming in solrconfig.xml + + + + + + false + + + + + + + + + &requestdispatcher; + + + + + + + &extra; + + + + + + + + + 100 + + + + + + + + 70 + + 0.5 + + [-\w ,/\n\"']{20,200} + + + + + + + ]]> + ]]> + + + + + + + + + + + + + + + + + + + + + + + + ,, + ,, + ,, + ,, + ,]]> + ]]> + + + + + + 10 + .,!? + + + + + + + WORD + + + en + US + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5 + + + + + + + + + + + + + + + diff --git a/tests/config/services/solr/confs/conf/solrconfig_extra.xml b/tests/config/services/solr/confs/conf/solrconfig_extra.xml new file mode 100644 index 00000000..78e5d31f --- /dev/null +++ b/tests/config/services/solr/confs/conf/solrconfig_extra.xml @@ -0,0 +1,281 @@ + + + ar + spellcheck_ar + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + en + spellcheck_en + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + fr + spellcheck_fr + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + und + spellcheck_und + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + zh_hans + spellcheck_zh_hans + solr.DirectSolrSpellChecker + internal + 0.5 + 1 + 1 + 5 + 1 + 0.01 + true + + + + es + spellcheck_es + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + + ar + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_ar + sm_context_tags + true + false + + + + en + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_en + sm_context_tags + true + false + + + + fr + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_fr + sm_context_tags + true + false + + + + und + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_und + sm_context_tags + true + false + + + + es + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_es + sm_context_tags + true + false + + + + + + false + false + false + true + false + 1 + false + 10 + + + terms + spellcheck + suggest + + + + + + + true + ignored_ + true + links + ignored_ + + + + + + + 1 + 1 + false + ${solr.mlt.timeAllowed:2000} + + + + + + + lucene + id + explicit + true + ${solr.selectSearchHandler.timeAllowed:-1} + false + + + spellcheck + elevator + + + + + + + id + und + on + false + false + 1 + 5 + 5 + true + true + 10 + 5 + + + spellcheck + + + + + + + true + und + 10 + + + suggest + + + + + + + id + true + + + tvComponent + + + + + + string + elevate.xml + + + + diff --git a/tests/config/services/solr/confs/conf/solrconfig_index.xml b/tests/config/services/solr/confs/conf/solrconfig_index.xml new file mode 100644 index 00000000..e69de29b diff --git a/tests/config/services/solr/confs/conf/solrconfig_query.xml b/tests/config/services/solr/confs/conf/solrconfig_query.xml new file mode 100644 index 00000000..5bdd6969 --- /dev/null +++ b/tests/config/services/solr/confs/conf/solrconfig_query.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + true + + false + + 20 + 200 + 1024 diff --git a/tests/config/services/solr/confs/conf/solrconfig_requestdispatcher.xml b/tests/config/services/solr/confs/conf/solrconfig_requestdispatcher.xml new file mode 100644 index 00000000..3a3f17d1 --- /dev/null +++ b/tests/config/services/solr/confs/conf/solrconfig_requestdispatcher.xml @@ -0,0 +1,6 @@ + + + diff --git a/tests/config/services/solr/confs/conf/solrcore.properties b/tests/config/services/solr/confs/conf/solrcore.properties new file mode 100644 index 00000000..af505a62 --- /dev/null +++ b/tests/config/services/solr/confs/conf/solrcore.properties @@ -0,0 +1,9 @@ +#conf/solrcore.properties +solr.mlt.timeAllowed=2000 +solr.luceneMatchVersion=8.11.2 +solr.selectSearchHandler.timeAllowed=-1 +solr.autoCommit.MaxDocs=10000 +solr.autoCommit.MaxTime=15000 +solr.autoSoftCommit.MaxDocs=-1 +solr.autoSoftCommit.MaxTime=-1 +solr.install.dir=/opt/solr \ No newline at end of file diff --git a/tests/config/services/solr/confs/conf/stopwords_ar.txt b/tests/config/services/solr/confs/conf/stopwords_ar.txt new file mode 100644 index 00000000..e5ba3908 --- /dev/null +++ b/tests/config/services/solr/confs/conf/stopwords_ar.txt @@ -0,0 +1,119 @@ +من +ومن +منها +منه +في +وفي +فيها +فيه +و +ف +ثم +او +أو +ب +بها +به +ا +أ +اى +اي +أي +أى +لا +ولا +الا +ألا +إلا +لكن +ما +وما +كما +فما +عن +مع +اذا +إذا +ان +أن +إن +انها +أنها +إنها +انه +أنه +إنه +بان +بأن +فان +فأن +وان +وأن +وإن +التى +التي +الذى +الذي +الذين +الى +الي +إلى +إلي +على +عليها +عليه +اما +أما +إما +ايضا +أيضا +كل +وكل +لم +ولم +لن +ولن +هى +هي +هو +وهى +وهي +وهو +فهى +فهي +فهو +انت +أنت +لك +لها +له +هذه +هذا +تلك +ذلك +هناك +كانت +كان +يكون +تكون +وكانت +وكان +غير +بعض +قد +نحو +بين +بينما +منذ +ضمن +حيث +الان +الآن +خلال +بعد +قبل +حتى +عند +عندما +لدى +جميع diff --git a/tests/config/services/solr/confs/conf/stopwords_en.txt b/tests/config/services/solr/confs/conf/stopwords_en.txt new file mode 100644 index 00000000..69810507 --- /dev/null +++ b/tests/config/services/solr/confs/conf/stopwords_en.txt @@ -0,0 +1,35 @@ +a +an +and +are +as +at +be +but +by +for +if +in +into +is +it +no +not +of +on +or +s +such +t +that +the +their +then +there +these +they +this +to +was +will +with diff --git a/tests/config/services/solr/confs/conf/stopwords_es.txt b/tests/config/services/solr/confs/conf/stopwords_es.txt new file mode 100644 index 00000000..c59d9b20 --- /dev/null +++ b/tests/config/services/solr/confs/conf/stopwords_es.txt @@ -0,0 +1,308 @@ +de +la +que +el +en +y +a +los +del +se +las +por +un +para +con +no +una +su +al +lo +como +más +pero +sus +le +ya +o +este +sí +porque +esta +entre +cuando +muy +sin +sobre +también +me +hasta +hay +donde +quien +desde +todo +nos +durante +todos +uno +les +ni +contra +otros +ese +eso +ante +ellos +e +esto +mí +antes +algunos +qué +unos +yo +otro +otras +otra +él +tanto +esa +estos +mucho +quienes +nada +muchos +cual +poco +ella +estar +estas +algunas +algo +nosotros +mi +mis +tú +te +ti +tu +tus +ellas +nosotras +vosotros +vosotras +os +mío +mía +míos +mías +tuyo +tuya +tuyos +tuyas +suyo +suya +suyos +suyas +nuestro +nuestra +nuestros +nuestras +vuestro +vuestra +vuestros +vuestras +esos +esas +estoy +estás +está +estamos +estáis +están +esté +estés +estemos +estéis +estén +estaré +estarás +estará +estaremos +estaréis +estarán +estaría +estarías +estaríamos +estaríais +estarían +estaba +estabas +estábamos +estabais +estaban +estuve +estuviste +estuvo +estuvimos +estuvisteis +estuvieron +estuviera +estuvieras +estuviéramos +estuvierais +estuvieran +estuviese +estuvieses +estuviésemos +estuvieseis +estuviesen +estando +estado +estada +estados +estadas +estad +he +has +ha +hemos +habéis +han +haya +hayas +hayamos +hayáis +hayan +habré +habrás +habrá +habremos +habréis +habrán +habría +habrías +habríamos +habríais +habrían +había +habías +habíamos +habíais +habían +hube +hubiste +hubo +hubimos +hubisteis +hubieron +hubiera +hubieras +hubiéramos +hubierais +hubieran +hubiese +hubieses +hubiésemos +hubieseis +hubiesen +habiendo +habido +habida +habidos +habidas +soy +eres +es +somos +sois +son +sea +seas +seamos +seáis +sean +seré +serás +será +seremos +seréis +serán +sería +serías +seríamos +seríais +serían +era +eras +éramos +erais +eran +fui +fuiste +fue +fuimos +fuisteis +fueron +fuera +fueras +fuéramos +fuerais +fueran +fuese +fueses +fuésemos +fueseis +fuesen +siendo +sido +tengo +tienes +tiene +tenemos +tenéis +tienen +tenga +tengas +tengamos +tengáis +tengan +tendré +tendrás +tendrá +tendremos +tendréis +tendrán +tendría +tendrías +tendríamos +tendríais +tendrían +tenía +tenías +teníamos +teníais +tenían +tuve +tuviste +tuvo +tuvimos +tuvisteis +tuvieron +tuviera +tuvieras +tuviéramos +tuvierais +tuvieran +tuviese +tuvieses +tuviésemos +tuvieseis +tuviesen +teniendo +tenido +tenida +tenidos +tenidas +tened diff --git a/tests/config/services/solr/confs/conf/stopwords_fr.txt b/tests/config/services/solr/confs/conf/stopwords_fr.txt new file mode 100644 index 00000000..c78ec5aa --- /dev/null +++ b/tests/config/services/solr/confs/conf/stopwords_fr.txt @@ -0,0 +1,163 @@ +au +aux +avec +ce +ces +dans +de +des +du +elle +en +et +eux +il +je +la +le +leur +lui +ma +mais +me +même +mes +moi +mon +ne +nos +notre +nous +on +ou +par +pas +pour +qu +que +qui +sa +se +ses +son +sur +ta +te +tes +toi +ton +tu +un +une +vos +votre +vous +c +d +j +l +à +m +n +s +t +y +été +étée +étées +étés +étant +suis +es +est +sommes +êtes +sont +serai +seras +sera +serons +serez +seront +serais +serait +serions +seriez +seraient +étais +était +étions +étiez +étaient +fus +fut +fûmes +fûtes +furent +sois +soit +soyons +soyez +soient +fusse +fusses +fût +fussions +fussiez +fussent +ayant +eu +eue +eues +eus +ai +as +avons +avez +ont +aurai +auras +aura +aurons +aurez +auront +aurais +aurait +aurions +auriez +auraient +avais +avait +avions +aviez +avaient +eut +eûmes +eûtes +eurent +aie +aies +ait +ayons +ayez +aient +eusse +eusses +eût +eussions +eussiez +eussent +ceci +celà +cet +cette +ici +ils +les +leurs +quel +quels +quelle +quelles +sans +soi diff --git a/tests/config/services/solr/confs/conf/stopwords_und.txt b/tests/config/services/solr/confs/conf/stopwords_und.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/config/services/solr/confs/conf/synonyms_ar.txt b/tests/config/services/solr/confs/conf/synonyms_ar.txt new file mode 100644 index 00000000..91689ff9 --- /dev/null +++ b/tests/config/services/solr/confs/conf/synonyms_ar.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/tests/config/services/solr/confs/conf/synonyms_en.txt b/tests/config/services/solr/confs/conf/synonyms_en.txt new file mode 100644 index 00000000..91689ff9 --- /dev/null +++ b/tests/config/services/solr/confs/conf/synonyms_en.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/tests/config/services/solr/confs/conf/synonyms_es.txt b/tests/config/services/solr/confs/conf/synonyms_es.txt new file mode 100644 index 00000000..91689ff9 --- /dev/null +++ b/tests/config/services/solr/confs/conf/synonyms_es.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/tests/config/services/solr/confs/conf/synonyms_fr.txt b/tests/config/services/solr/confs/conf/synonyms_fr.txt new file mode 100644 index 00000000..91689ff9 --- /dev/null +++ b/tests/config/services/solr/confs/conf/synonyms_fr.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/tests/config/services/solr/confs/conf/synonyms_und.txt b/tests/config/services/solr/confs/conf/synonyms_und.txt new file mode 100644 index 00000000..91689ff9 --- /dev/null +++ b/tests/config/services/solr/confs/conf/synonyms_und.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/tests/config/services/solr/run/entrypoint b/tests/config/services/solr/run/entrypoint new file mode 100755 index 00000000..8a4ed49b --- /dev/null +++ b/tests/config/services/solr/run/entrypoint @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +echo "Changing permissions of solr directories" +chown -R solr:solr /var/solr/data/ +chown -R solr:solr /var/solr/logs/ + +exec su solr -c "export PATH=$PATH; /opt/hpc-solr/run/solr" diff --git a/tests/config/services/solr/run/solr b/tests/config/services/solr/run/solr new file mode 100755 index 00000000..d94b7ea3 --- /dev/null +++ b/tests/config/services/solr/run/solr @@ -0,0 +1,20 @@ +#!/bin/bash + +set -e + +SOLR_HOME=/var/solr/data + +CONFDIR=/opt/hpc-solr/confs +SOLR_CORE=${SOLR_CORE:-fts} + +cd ${SOLR_HOME} + +if [ -d ${SOLR_HOME}/${SOLR_CORE} ]; then + echo "HPC-specific SOLR initialization seems completed. Skipping it." + solr-foreground +else + echo "Performing a one time HPC-specific SOLR initialization..." + echo "Creating a new solr core..." + VERBOSE=yes solr-precreate ${SOLR_CORE} ${CONFDIR} + echo "HPC init done!" +fi diff --git a/tests/data/test/hpc/solr/fts/conf/accents_ar.txt b/tests/data/test/hpc/solr/fts/conf/accents_ar.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/test/hpc/solr/fts/conf/accents_en.txt b/tests/data/test/hpc/solr/fts/conf/accents_en.txt new file mode 100644 index 00000000..bed05147 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/accents_en.txt @@ -0,0 +1,164 @@ +# À => A +"\u00C0" => "A" +# Á => A +"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Ą => A +"\u0104" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# Ć => C +"\U0106" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ę => E +"\u0118" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ł => L +"\u0141" => "L" +# Ñ => N +"\u00D1" => "N" +# Ń => N +"\u0143" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# Ś => S +"\u015a" => "S" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# Ź => Z +"\u0179" => "Z" +# Ż => Z +"\u017b" => "Z" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/tests/data/test/hpc/solr/fts/conf/accents_es.txt b/tests/data/test/hpc/solr/fts/conf/accents_es.txt new file mode 100644 index 00000000..265e5e3d --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/accents_es.txt @@ -0,0 +1,164 @@ +# À => A +"\u00C0" => "A" +# Á => A +#"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Ą => A +"\u0104" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# Ć => C +"\U0106" => "C" +# È => E +"\u00C8" => "E" +# É => E +#"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ę => E +"\u0118" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +#"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ł => L +"\u0141" => "L" +# Ñ => N +#"\u00D1" => "N" +# Ń => N +"\u0143" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +#"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +#"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +#"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +#"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +#"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +#"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +#"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# Ś => S +"\u015a" => "S" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +#"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# Ź => Z +"\u0179" => "Z" +# Ż => Z +"\u017b" => "Z" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/tests/data/test/hpc/solr/fts/conf/accents_fr.txt b/tests/data/test/hpc/solr/fts/conf/accents_fr.txt new file mode 100644 index 00000000..7f66a29c --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/accents_fr.txt @@ -0,0 +1,164 @@ +# À => A +"\u00C0" => "A" +# Á => A +#"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +#"\u00C3" => "A" +# Ä => A +#"\u00C4" => "A" +# Å => A +#"\u00C5" => "A" +# Ą => A +#"\u0104" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# Ć => C +#"\U0106" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +#"\u00CB" => "E" +# Ę => E +#"\u0118" => "E" +# Ì => I +#"\u00CC" => "I" +# Í => I +#"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +#"\u00CF" => "I" +# IJ => IJ +#"\u0132" => "IJ" +# Ð => D +#"\u00D0" => "D" +# Ł => L +#"\u0141" => "L" +# Ñ => N +#"\u00D1" => "N" +# Ń => N +#"\u0143" => "N" +# Ò => O +#"\u00D2" => "O" +# Ó => O +#"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +#"\u00D5" => "O" +# Ö => O +#"\u00D6" => "O" +# Ø => O +#"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +#"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +#"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +#"\u00DC" => "U" +# Ý => Y +#"\u00DD" => "Y" +# Ÿ => Y +#"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +#"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +#"\u00E3" => "a" +# ä => a +#"\u00E4" => "a" +# å => a +#"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +#"\u00EB" => "e" +# ì => i +#"\u00EC" => "i" +# í => i +#"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +#"\u00EF" => "i" +# ij => ij +#"\u0133" => "ij" +# ð => d +#"\u00F0" => "d" +# ñ => n +#"\u00F1" => "n" +# ò => o +#"\u00F2" => "o" +# ó => o +#"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +#"\u00F5" => "o" +# ö => o +#"\u00F6" => "o" +# ø => o +#"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +#"\u00DF" => "ss" +# Ś => S +#"\u015a" => "S" +# þ => th +#"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +#"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +#"\u00FD" => "y" +# ÿ => y +#"\u00FF" => "y" +# Ź => Z +#"\u0179" => "Z" +# Ż => Z +#"\u017b" => "Z" +# ff => ff +#"\uFB00" => "ff" +# fi => fi +#"\uFB01" => "fi" +# fl => fl +#"\uFB02" => "fl" +# ffi => ffi +#"\uFB03" => "ffi" +# ffl => ffl +#"\uFB04" => "ffl" +# ſt => st +#"\uFB05" => "st" +# st => st +#"\uFB06" => "st" diff --git a/tests/data/test/hpc/solr/fts/conf/accents_und.txt b/tests/data/test/hpc/solr/fts/conf/accents_und.txt new file mode 100644 index 00000000..7c883f87 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/accents_und.txt @@ -0,0 +1,148 @@ +# À => A +"\u00C0" => "A" +# Á => A +"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ñ => N +"\u00D1" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/tests/data/test/hpc/solr/fts/conf/elevate.xml b/tests/data/test/hpc/solr/fts/conf/elevate.xml new file mode 100644 index 00000000..193a0e72 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/elevate.xml @@ -0,0 +1,27 @@ + + + + + + + + + + diff --git a/tests/data/test/hpc/solr/fts/conf/nouns_ar.txt b/tests/data/test/hpc/solr/fts/conf/nouns_ar.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/test/hpc/solr/fts/conf/nouns_es.txt b/tests/data/test/hpc/solr/fts/conf/nouns_es.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/test/hpc/solr/fts/conf/nouns_fr.txt b/tests/data/test/hpc/solr/fts/conf/nouns_fr.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/test/hpc/solr/fts/conf/protwords_ar.txt b/tests/data/test/hpc/solr/fts/conf/protwords_ar.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/test/hpc/solr/fts/conf/protwords_en.txt b/tests/data/test/hpc/solr/fts/conf/protwords_en.txt new file mode 100644 index 00000000..cda85814 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/protwords_en.txt @@ -0,0 +1,7 @@ +#----------------------------------------------------------------------- +# This file blocks words from being operated on by the stemmer and word delimiter. +& +< +> +' +" diff --git a/tests/data/test/hpc/solr/fts/conf/protwords_es.txt b/tests/data/test/hpc/solr/fts/conf/protwords_es.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/test/hpc/solr/fts/conf/protwords_fr.txt b/tests/data/test/hpc/solr/fts/conf/protwords_fr.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/test/hpc/solr/fts/conf/protwords_und.txt b/tests/data/test/hpc/solr/fts/conf/protwords_und.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/test/hpc/solr/fts/conf/schema.xml b/tests/data/test/hpc/solr/fts/conf/schema.xml new file mode 100644 index 00000000..179f5886 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/schema.xml @@ -0,0 +1,499 @@ + + + + +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + &extrafields; + + + &extratypes; + + + id + + + + + diff --git a/tests/data/test/hpc/solr/fts/conf/schema_extra_fields.xml b/tests/data/test/hpc/solr/fts/conf/schema_extra_fields.xml new file mode 100644 index 00000000..c8eb41b4 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/schema_extra_fields.xml @@ -0,0 +1,425 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/data/test/hpc/solr/fts/conf/schema_extra_types.xml b/tests/data/test/hpc/solr/fts/conf/schema_extra_types.xml new file mode 100644 index 00000000..69ee225e --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/schema_extra_types.xml @@ -0,0 +1,481 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/data/test/hpc/solr/fts/conf/solrconfig.xml b/tests/data/test/hpc/solr/fts/conf/solrconfig.xml new file mode 100644 index 00000000..e225b691 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/solrconfig.xml @@ -0,0 +1,810 @@ + + + + + + +]> + + + + + + + ${solr.abortOnConfigurationError:true} + + + ${solr.luceneMatchVersion:8.11} + + + + + + + + + + + + + + + + + + + + + ${solr.data.dir:} + + + + + + + + + ${solr.hdfs.home:} + + ${solr.hdfs.confdir:} + + ${solr.hdfs.blockcache.enabled:true} + + ${solr.hdfs.blockcache.global:true} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${solr.lock.type:native} + + + + + + + + + + + + + true + + + &index; + + + + + + + + + ${solr.ulog.dir:} + + + + + ${solr.autoCommit.MaxDocs:-1} + ${solr.autoCommit.MaxTime:15000} + + + + + + ${solr.autoSoftCommit.MaxDocs:-1} + ${solr.autoSoftCommit.MaxTime:5000} + + + + + + + + + + + + + + + + &query; + + + + + + + + + + + + static firstSearcher warming in solrconfig.xml + + + + + + false + + + + + + + + + &requestdispatcher; + + + + + + + &extra; + + + + + + + + + 100 + + + + + + + + 70 + + 0.5 + + [-\w ,/\n\"']{20,200} + + + + + + + ]]> + ]]> + + + + + + + + + + + + + + + + + + + + + + + + ,, + ,, + ,, + ,, + ,]]> + ]]> + + + + + + 10 + .,!? + + + + + + + WORD + + + en + US + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5 + + + + + + + + + + + + + + + diff --git a/tests/data/test/hpc/solr/fts/conf/solrconfig_extra.xml b/tests/data/test/hpc/solr/fts/conf/solrconfig_extra.xml new file mode 100644 index 00000000..78e5d31f --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/solrconfig_extra.xml @@ -0,0 +1,281 @@ + + + ar + spellcheck_ar + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + en + spellcheck_en + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + fr + spellcheck_fr + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + und + spellcheck_und + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + zh_hans + spellcheck_zh_hans + solr.DirectSolrSpellChecker + internal + 0.5 + 1 + 1 + 5 + 1 + 0.01 + true + + + + es + spellcheck_es + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + + ar + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_ar + sm_context_tags + true + false + + + + en + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_en + sm_context_tags + true + false + + + + fr + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_fr + sm_context_tags + true + false + + + + und + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_und + sm_context_tags + true + false + + + + es + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_es + sm_context_tags + true + false + + + + + + false + false + false + true + false + 1 + false + 10 + + + terms + spellcheck + suggest + + + + + + + true + ignored_ + true + links + ignored_ + + + + + + + 1 + 1 + false + ${solr.mlt.timeAllowed:2000} + + + + + + + lucene + id + explicit + true + ${solr.selectSearchHandler.timeAllowed:-1} + false + + + spellcheck + elevator + + + + + + + id + und + on + false + false + 1 + 5 + 5 + true + true + 10 + 5 + + + spellcheck + + + + + + + true + und + 10 + + + suggest + + + + + + + id + true + + + tvComponent + + + + + + string + elevate.xml + + + + diff --git a/tests/data/test/hpc/solr/fts/conf/solrconfig_index.xml b/tests/data/test/hpc/solr/fts/conf/solrconfig_index.xml new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/test/hpc/solr/fts/conf/solrconfig_query.xml b/tests/data/test/hpc/solr/fts/conf/solrconfig_query.xml new file mode 100644 index 00000000..5bdd6969 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/solrconfig_query.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + true + + false + + 20 + 200 + 1024 diff --git a/tests/data/test/hpc/solr/fts/conf/solrconfig_requestdispatcher.xml b/tests/data/test/hpc/solr/fts/conf/solrconfig_requestdispatcher.xml new file mode 100644 index 00000000..3a3f17d1 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/solrconfig_requestdispatcher.xml @@ -0,0 +1,6 @@ + + + diff --git a/tests/data/test/hpc/solr/fts/conf/solrcore.properties b/tests/data/test/hpc/solr/fts/conf/solrcore.properties new file mode 100644 index 00000000..af505a62 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/solrcore.properties @@ -0,0 +1,9 @@ +#conf/solrcore.properties +solr.mlt.timeAllowed=2000 +solr.luceneMatchVersion=8.11.2 +solr.selectSearchHandler.timeAllowed=-1 +solr.autoCommit.MaxDocs=10000 +solr.autoCommit.MaxTime=15000 +solr.autoSoftCommit.MaxDocs=-1 +solr.autoSoftCommit.MaxTime=-1 +solr.install.dir=/opt/solr \ No newline at end of file diff --git a/tests/data/test/hpc/solr/fts/conf/stopwords_ar.txt b/tests/data/test/hpc/solr/fts/conf/stopwords_ar.txt new file mode 100644 index 00000000..e5ba3908 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/stopwords_ar.txt @@ -0,0 +1,119 @@ +من +ومن +منها +منه +في +وفي +فيها +فيه +و +ف +ثم +او +أو +ب +بها +به +ا +أ +اى +اي +أي +أى +لا +ولا +الا +ألا +إلا +لكن +ما +وما +كما +فما +عن +مع +اذا +إذا +ان +أن +إن +انها +أنها +إنها +انه +أنه +إنه +بان +بأن +فان +فأن +وان +وأن +وإن +التى +التي +الذى +الذي +الذين +الى +الي +إلى +إلي +على +عليها +عليه +اما +أما +إما +ايضا +أيضا +كل +وكل +لم +ولم +لن +ولن +هى +هي +هو +وهى +وهي +وهو +فهى +فهي +فهو +انت +أنت +لك +لها +له +هذه +هذا +تلك +ذلك +هناك +كانت +كان +يكون +تكون +وكانت +وكان +غير +بعض +قد +نحو +بين +بينما +منذ +ضمن +حيث +الان +الآن +خلال +بعد +قبل +حتى +عند +عندما +لدى +جميع diff --git a/tests/data/test/hpc/solr/fts/conf/stopwords_en.txt b/tests/data/test/hpc/solr/fts/conf/stopwords_en.txt new file mode 100644 index 00000000..69810507 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/stopwords_en.txt @@ -0,0 +1,35 @@ +a +an +and +are +as +at +be +but +by +for +if +in +into +is +it +no +not +of +on +or +s +such +t +that +the +their +then +there +these +they +this +to +was +will +with diff --git a/tests/data/test/hpc/solr/fts/conf/stopwords_es.txt b/tests/data/test/hpc/solr/fts/conf/stopwords_es.txt new file mode 100644 index 00000000..c59d9b20 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/stopwords_es.txt @@ -0,0 +1,308 @@ +de +la +que +el +en +y +a +los +del +se +las +por +un +para +con +no +una +su +al +lo +como +más +pero +sus +le +ya +o +este +sí +porque +esta +entre +cuando +muy +sin +sobre +también +me +hasta +hay +donde +quien +desde +todo +nos +durante +todos +uno +les +ni +contra +otros +ese +eso +ante +ellos +e +esto +mí +antes +algunos +qué +unos +yo +otro +otras +otra +él +tanto +esa +estos +mucho +quienes +nada +muchos +cual +poco +ella +estar +estas +algunas +algo +nosotros +mi +mis +tú +te +ti +tu +tus +ellas +nosotras +vosotros +vosotras +os +mío +mía +míos +mías +tuyo +tuya +tuyos +tuyas +suyo +suya +suyos +suyas +nuestro +nuestra +nuestros +nuestras +vuestro +vuestra +vuestros +vuestras +esos +esas +estoy +estás +está +estamos +estáis +están +esté +estés +estemos +estéis +estén +estaré +estarás +estará +estaremos +estaréis +estarán +estaría +estarías +estaríamos +estaríais +estarían +estaba +estabas +estábamos +estabais +estaban +estuve +estuviste +estuvo +estuvimos +estuvisteis +estuvieron +estuviera +estuvieras +estuviéramos +estuvierais +estuvieran +estuviese +estuvieses +estuviésemos +estuvieseis +estuviesen +estando +estado +estada +estados +estadas +estad +he +has +ha +hemos +habéis +han +haya +hayas +hayamos +hayáis +hayan +habré +habrás +habrá +habremos +habréis +habrán +habría +habrías +habríamos +habríais +habrían +había +habías +habíamos +habíais +habían +hube +hubiste +hubo +hubimos +hubisteis +hubieron +hubiera +hubieras +hubiéramos +hubierais +hubieran +hubiese +hubieses +hubiésemos +hubieseis +hubiesen +habiendo +habido +habida +habidos +habidas +soy +eres +es +somos +sois +son +sea +seas +seamos +seáis +sean +seré +serás +será +seremos +seréis +serán +sería +serías +seríamos +seríais +serían +era +eras +éramos +erais +eran +fui +fuiste +fue +fuimos +fuisteis +fueron +fuera +fueras +fuéramos +fuerais +fueran +fuese +fueses +fuésemos +fueseis +fuesen +siendo +sido +tengo +tienes +tiene +tenemos +tenéis +tienen +tenga +tengas +tengamos +tengáis +tengan +tendré +tendrás +tendrá +tendremos +tendréis +tendrán +tendría +tendrías +tendríamos +tendríais +tendrían +tenía +tenías +teníamos +teníais +tenían +tuve +tuviste +tuvo +tuvimos +tuvisteis +tuvieron +tuviera +tuvieras +tuviéramos +tuvierais +tuvieran +tuviese +tuvieses +tuviésemos +tuvieseis +tuviesen +teniendo +tenido +tenida +tenidos +tenidas +tened diff --git a/tests/data/test/hpc/solr/fts/conf/stopwords_fr.txt b/tests/data/test/hpc/solr/fts/conf/stopwords_fr.txt new file mode 100644 index 00000000..c78ec5aa --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/stopwords_fr.txt @@ -0,0 +1,163 @@ +au +aux +avec +ce +ces +dans +de +des +du +elle +en +et +eux +il +je +la +le +leur +lui +ma +mais +me +même +mes +moi +mon +ne +nos +notre +nous +on +ou +par +pas +pour +qu +que +qui +sa +se +ses +son +sur +ta +te +tes +toi +ton +tu +un +une +vos +votre +vous +c +d +j +l +à +m +n +s +t +y +été +étée +étées +étés +étant +suis +es +est +sommes +êtes +sont +serai +seras +sera +serons +serez +seront +serais +serait +serions +seriez +seraient +étais +était +étions +étiez +étaient +fus +fut +fûmes +fûtes +furent +sois +soit +soyons +soyez +soient +fusse +fusses +fût +fussions +fussiez +fussent +ayant +eu +eue +eues +eus +ai +as +avons +avez +ont +aurai +auras +aura +aurons +aurez +auront +aurais +aurait +aurions +auriez +auraient +avais +avait +avions +aviez +avaient +eut +eûmes +eûtes +eurent +aie +aies +ait +ayons +ayez +aient +eusse +eusses +eût +eussions +eussiez +eussent +ceci +celà +cet +cette +ici +ils +les +leurs +quel +quels +quelle +quelles +sans +soi diff --git a/tests/data/test/hpc/solr/fts/conf/stopwords_und.txt b/tests/data/test/hpc/solr/fts/conf/stopwords_und.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/test/hpc/solr/fts/conf/synonyms_ar.txt b/tests/data/test/hpc/solr/fts/conf/synonyms_ar.txt new file mode 100644 index 00000000..91689ff9 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/synonyms_ar.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/tests/data/test/hpc/solr/fts/conf/synonyms_en.txt b/tests/data/test/hpc/solr/fts/conf/synonyms_en.txt new file mode 100644 index 00000000..91689ff9 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/synonyms_en.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/tests/data/test/hpc/solr/fts/conf/synonyms_es.txt b/tests/data/test/hpc/solr/fts/conf/synonyms_es.txt new file mode 100644 index 00000000..91689ff9 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/synonyms_es.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/tests/data/test/hpc/solr/fts/conf/synonyms_fr.txt b/tests/data/test/hpc/solr/fts/conf/synonyms_fr.txt new file mode 100644 index 00000000..91689ff9 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/synonyms_fr.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/tests/data/test/hpc/solr/fts/conf/synonyms_und.txt b/tests/data/test/hpc/solr/fts/conf/synonyms_und.txt new file mode 100644 index 00000000..91689ff9 --- /dev/null +++ b/tests/data/test/hpc/solr/fts/conf/synonyms_und.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/tests/data/test/hpc/solr/fts/core.properties b/tests/data/test/hpc/solr/fts/core.properties new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/test/hpc/solr/fts/data/analyzingInfixSuggesterIndexDir/segments_ge b/tests/data/test/hpc/solr/fts/data/analyzingInfixSuggesterIndexDir/segments_ge new file mode 100644 index 0000000000000000000000000000000000000000..32e88ac5b19ce2207cafc44b8ac537d62ebde54a GIT binary patch literal 70 zcmcD&o+HjtoSL4SnpaZHz`(#|I(vO+v*aSFxP)n@F^4psFr}w*a5HfLrGS8C4un3S PG5H0A#lT?KDQE-$%>xkW literal 0 HcmV?d00001 diff --git a/tests/data/test/hpc/solr/fts/data/analyzingInfixSuggesterIndexDir/write.lock b/tests/data/test/hpc/solr/fts/data/analyzingInfixSuggesterIndexDir/write.lock new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/test/hpc/solr/fts/data/index/segments_3b b/tests/data/test/hpc/solr/fts/data/index/segments_3b new file mode 100644 index 0000000000000000000000000000000000000000..1bc7161dddeea8aacecfa540dfe888a9607358db GIT binary patch literal 118 zcmcD&o+HjtoSL4SnpaZHz`(#|I(vO+v*aSFxP)n@F^4qnGZ`mwa5HfLrGS9(l|6`J z;!DoY&CM(c$;?gl4NgtwH8is{HL^4_Gc>d?HxYnHIs=s?=B0$C7BLze(3t!Jq!9$J I9QFpF literal 0 HcmV?d00001 diff --git a/tests/data/test/hpc/solr/fts/data/index/write.lock b/tests/data/test/hpc/solr/fts/data/index/write.lock new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000207 b/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000207 new file mode 100644 index 0000000000000000000000000000000000000000..dd6a3666ed779552d7d019c6a951f932492f3a18 GIT binary patch literal 92 zcmZSLV$uxu_X&y*@$q+eR4*u@YUDzd7R~)=sz`&pjHzwZI&jlzc2>^(Y7=Zu) literal 0 HcmV?d00001 diff --git a/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000208 b/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000208 new file mode 100644 index 0000000000000000000000000000000000000000..96a642f696cdd4b6c4ff92657631ea3349dc8975 GIT binary patch literal 75 zcmZSLV$uxu_X&y*@$q+eR4*sNdN*#6deEn literal 0 HcmV?d00001 diff --git a/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000209 b/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000209 new file mode 100644 index 0000000000000000000000000000000000000000..b22bd35a13fa0a557ee0cf2e68de491312375249 GIT binary patch literal 75 zcmZSLV$uxu_X&y*@$q+eR4*npTwKHAdu6*_iy)15Sg+ka;^>-pKrt~_2TeQ4Bn-Bzvfu2PJX$PYfn zhea>!w7zxaOW!MXqwurrB=5aK(EcI|ozRn_(~lwhp8(DeB5B}9@4;CI)hXI`Xhh^mjCuQZu&&WINLCO6pqZp=j*WD-#6PJ(& zPYx=p&yEJahrb9}d-~|j9w8@1^$JcmR47wQ(;pAd$}JGTP*!_b`dDvftuh@IsAXB> z{cN>4t4{7VoZrQZeb_`d(NUN9VRn7>GHBBaFZpfiVJO#1xYaY+|^HIbMztX*`EJcIPlmV{C-66$Yvr15slj<`^4c7{)M+VHm@vm~3DZV;h(W zY3zV<^T@g@J)hjFn@m`Q;M1& literal 0 HcmV?d00001 diff --git a/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000211 b/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000211 new file mode 100644 index 0000000000000000000000000000000000000000..f2ddf8e706e5451e97e321719962a9172e126cfe GIT binary patch literal 75 zcmZSLV$uxu_X&y*@$q+eR4*-QN=K literal 0 HcmV?d00001 diff --git a/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000212 b/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000212 new file mode 100644 index 0000000000000000000000000000000000000000..b543f7b45963a2b7ef95dc63ea924c9f7d2c263c GIT binary patch literal 75 zcmZSLV$uxu_X&y*@$q+eR4*-MJF( literal 0 HcmV?d00001 diff --git a/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000213 b/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000213 new file mode 100644 index 0000000000000000000000000000000000000000..fb3406ef33fe16d534e66dab58e98b0f7fb01ce4 GIT binary patch literal 1094 zcmd^4fWpI7b4=wuvCPe#YVZlVW4y(p#ATsqv~%&*~&H5yyETZ}#13WlM@B%Nk4__I&)CU0`@g3VXU z+izdLBeeDA+2I1A-7@mlM7BB0D)u#~giA4Cb}3Dx`>CYtCpsW=MEEoq*t)&$&qkOH!* zO%>#evOst7KK2^>y#{utuIo2F-}UyIJ@3p;WA=xLBNd+q#gS3n)csT`5Hv$|xTTjw z%wcSfjxRvKj8jfjcC2I?57?r)t_{f*EZXbpfE9Y@N4;-e>b(0iLr|hEf88+)^=085 ztb0$}l&&3>c%l`_caf4(N87lCQ02Zvyv%X`0`cd+LEP(h{uSc(UJJK=kN7F_e;_s_ ZSBTpM;;>-9JV&Up`Y@uSVVEahKLXfMb0+`* literal 0 HcmV?d00001 diff --git a/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000214 b/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000214 new file mode 100644 index 0000000000000000000000000000000000000000..c3009711f9f7d4b6549900fbc96577eb670e6586 GIT binary patch literal 558 zcmaiyyG{Z@6ov;HjE#0)DuYJY6%4!FiHRX#2nj+2EVNmNnZr7X%xq?7xmb}<_%Igw zD8?7CwDl3(T?qx6*q!V% z@JM)EUH9sTt9yHjTbvRC3vhQ8>+;`CH9%=sy-+NM={V zl~F3FYo3(A$qc1nO71bYp&P7j4uHdu5r*ZgA%*8O={&d2+IR%>!a8lzkQaaRTJTbL zrN0DDusW!$D?y{02(`0y?PttV)vRSa)+)(kOA4W^xLH6b^0BCg!mFQcdi61^i+0`5 GfA1RvL%u8k literal 0 HcmV?d00001 diff --git a/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000215 b/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000215 new file mode 100644 index 0000000000000000000000000000000000000000..fa0fd254dff0eb765251aabb20126de44dc9dbca GIT binary patch literal 611 zcmaiy&raho5XPsK5Qxk6#=(J=30)2aiHkMM#M_Is;$jlb0AOR@UVR{zaqpdbHH1)#OUnOk(~Mt@*9jcje2hS&2ACh2GzqC38pcS({x_f~&C-akJT z018`ct)%we!tyJ%Y;*RIGjCBvT#61OzZphU@lYpQFv*RKg+3knJIzMD#E|mT<`a!j zOtZ7d9&;7x0ftg(WErw9V>Us3hD1S$P|a^~sELlFoTV_mB~6_9qQJX9Qs6XiQiVxT z=IMr0aSqCrX4$bvw(TAsxOQ#7>Qv9oIAq^gEUEa!%UXs~8n1IWG1{dXY*D1ZE>;JD`}^WS^}Kr_k; literal 0 HcmV?d00001 diff --git a/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000216 b/tests/data/test/hpc/solr/fts/data/tlog/tlog.0000000000000000216 new file mode 100644 index 0000000000000000000000000000000000000000..dfe0f9ef30445e84a3c7b85aed31b35ab21bf6a1 GIT binary patch literal 120 zcmZSLV$uxu_X&y*@$q+eR4*pp>jL0QX63n;`76Ea|6 zuxHIovC=RySMU!~FtPxXmYNEVel7|r`N<)b1*ukPIr-&4O@_@b3A%7A;$8h*fP#Vm DP>~+C literal 0 HcmV?d00001 diff --git a/tests/data/test/hpc/solr/solr.xml b/tests/data/test/hpc/solr/solr.xml new file mode 100644 index 00000000..e34d0a23 --- /dev/null +++ b/tests/data/test/hpc/solr/solr.xml @@ -0,0 +1,60 @@ + + + + + + + + ${solr.max.booleanClauses:1024} + ${solr.sharedLib:} + ${solr.allowPaths:} + + + + ${host:} + ${solr.port.advertise:0} + ${hostContext:solr} + + ${genericCoreNodeNames:true} + + ${zkClientTimeout:30000} + ${distribUpdateSoTimeout:600000} + ${distribUpdateConnTimeout:60000} + ${zkCredentialsProvider:org.apache.solr.common.cloud.DefaultZkCredentialsProvider} + ${zkACLProvider:org.apache.solr.common.cloud.DefaultZkACLProvider} + + + + + ${socketTimeout:600000} + ${connTimeout:60000} + ${solr.shardsWhitelist:} + + + + + diff --git a/tests/data/test/hpc/solr/zoo.cfg b/tests/data/test/hpc/solr/zoo.cfg new file mode 100644 index 00000000..7c32425e --- /dev/null +++ b/tests/data/test/hpc/solr/zoo.cfg @@ -0,0 +1,34 @@ +# The number of milliseconds of each tick +tickTime=2000 +# The number of ticks that the initial +# synchronization phase can take +initLimit=10 +# The number of ticks that can pass between +# sending a request and getting an acknowledgement +syncLimit=5 + +# the directory where the snapshot is stored. +# dataDir=/opt/zookeeper/data +# NOTE: Solr defaults the dataDir to /zoo_data + +# the port at which the clients will connect +# clientPort=2181 +# NOTE: Solr sets this based on zkRun / zkHost params + +# the maximum number of client connections. +# increase this if you need to handle more clients +#maxClientCnxns=60 +# +# Be sure to read the maintenance section of the +# administrator guide before turning on autopurge. +# +# http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance +# +# The number of snapshots to retain in dataDir +#autopurge.snapRetainCount=3 +# Purge task interval in hours +# Set to "0" to disable auto purge feature +#autopurge.purgeInterval=1 + +# Disable ZK AdminServer since we do not use it +admin.enableServer=false \ No newline at end of file diff --git a/tests/data/test/hpc/solr_logs/solr.log.1 b/tests/data/test/hpc/solr_logs/solr.log.1 new file mode 100644 index 00000000..6a6d34db --- /dev/null +++ b/tests/data/test/hpc/solr_logs/solr.log.1 @@ -0,0 +1,38 @@ +2023-09-11 10:54:00.182 INFO (main) [ ] o.e.j.u.log Logging initialized @612ms to org.eclipse.jetty.util.log.Slf4jLog +2023-09-11 10:54:00.263 INFO (main) [ ] o.e.j.s.Server jetty-9.4.44.v20210927; built: 2021-09-27T23:02:44.612Z; git: 8da83308eeca865e495e53ef315a249d63ba9332; jvm 11.0.20.1+1 +2023-09-11 10:54:00.272 INFO (main) [ ] o.e.j.d.p.ScanningAppProvider Deployment monitor [file:///opt/solr-8.11.2/server/contexts/] at interval 0 +2023-09-11 10:54:00.413 INFO (main) [ ] o.e.j.w.StandardDescriptorProcessor NO JSP Support for /solr, did not find org.apache.jasper.servlet.JspServlet +2023-09-11 10:54:00.417 INFO (main) [ ] o.e.j.s.session DefaultSessionIdManager workerName=node0 +2023-09-11 10:54:00.417 INFO (main) [ ] o.e.j.s.session No SessionScavenger set, using defaults +2023-09-11 10:54:00.418 INFO (main) [ ] o.e.j.s.session node0 Scavenging every 600000ms +2023-09-11 10:54:00.445 INFO (main) [ ] o.a.s.s.SolrDispatchFilter Using logger factory org.apache.logging.slf4j.Log4jLoggerFactory +2023-09-11 10:54:00.448 INFO (main) [ ] o.a.s.s.SolrDispatchFilter ___ _ Welcome to Apache Solr™ version 8.11.2 +2023-09-11 10:54:00.448 INFO (main) [ ] o.a.s.s.SolrDispatchFilter / __| ___| |_ _ Starting in standalone mode on port 8983 +2023-09-11 10:54:00.448 INFO (main) [ ] o.a.s.s.SolrDispatchFilter \__ \/ _ \ | '_| Install dir: /opt/solr +2023-09-11 10:54:00.448 INFO (main) [ ] o.a.s.s.SolrDispatchFilter |___/\___/_|_| Start time: 2023-09-11T10:54:00.448554Z +2023-09-11 10:54:00.459 INFO (main) [ ] o.a.s.c.SolrPaths Using system property solr.solr.home: /var/solr/data +2023-09-11 10:54:00.459 INFO (main) [ ] o.a.s.c.SolrXmlConfig Loading container configuration from /var/solr/data/solr.xml +2023-09-11 10:54:00.518 INFO (main) [ ] o.a.s.c.SolrXmlConfig MBean server found: com.sun.jmx.mbeanserver.JmxMBeanServer@7ce69770, but no JMX reporters were configured - adding default JMX reporter. +2023-09-11 10:54:00.785 INFO (main) [ ] o.a.s.h.c.HttpShardHandlerFactory Host whitelist initialized: WhitelistHostChecker [whitelistHosts=null, whitelistHostCheckingEnabled=true] +2023-09-11 10:54:00.865 WARN (main) [ ] o.e.j.u.s.S.config Trusting all certificates configured for Client@fca387[provider=null,keyStore=null,trustStore=null] +2023-09-11 10:54:00.865 WARN (main) [ ] o.e.j.u.s.S.config No Client EndPointIdentificationAlgorithm configured for Client@fca387[provider=null,keyStore=null,trustStore=null] +2023-09-11 10:54:00.960 WARN (main) [ ] o.e.j.u.s.S.config Trusting all certificates configured for Client@6629ad09[provider=null,keyStore=null,trustStore=null] +2023-09-11 10:54:00.960 WARN (main) [ ] o.e.j.u.s.S.config No Client EndPointIdentificationAlgorithm configured for Client@6629ad09[provider=null,keyStore=null,trustStore=null] +2023-09-11 10:54:00.979 WARN (main) [ ] o.a.s.c.CoreContainer Not all security plugins configured! authentication=disabled authorization=disabled. Solr is only as secure as you make it. Consider configuring authentication/authorization before exposing Solr to users internal or external. See https://s.apache.org/solrsecurity for more info +2023-09-11 10:54:01.041 INFO (main) [ ] o.a.s.c.TransientSolrCoreCacheDefault Allocating transient core cache for max 2147483647 cores with initial capacity of 1024 +2023-09-11 10:54:01.045 INFO (main) [ ] o.a.s.h.a.MetricsHistoryHandler No .system collection, keeping metrics history in memory. +2023-09-11 10:54:01.068 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.node' (registry 'solr.node') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@7ce69770 +2023-09-11 10:54:01.068 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.jvm' (registry 'solr.jvm') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@7ce69770 +2023-09-11 10:54:01.068 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.jetty' (registry 'solr.jetty') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@7ce69770 +2023-09-11 10:54:01.085 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Found 1 core definitions underneath /var/solr/data +2023-09-11 10:54:01.085 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Cores are: [fts] +2023-09-11 10:54:01.111 INFO (main) [ ] o.e.j.s.h.ContextHandler Started o.e.j.w.WebAppContext@346939bf{/solr,file:///opt/solr-8.11.2/server/solr-webapp/webapp/,AVAILABLE}{/opt/solr-8.11.2/server/solr-webapp/webapp} +2023-09-11 10:54:01.119 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrResourceLoader Added 64 libs to classloader, from paths: [/opt/solr/contrib/analysis-extras/lib, /opt/solr/contrib/analysis-extras/lucene-libs, /opt/solr/contrib/extraction/lib, /opt/solr/contrib/langid/lib, /opt/solr/dist] +2023-09-11 10:54:01.119 INFO (main) [ ] o.e.j.s.AbstractConnector Started ServerConnector@aafcffa{HTTP/1.1, (http/1.1, h2c)}{0.0.0.0:8983} +2023-09-11 10:54:01.119 INFO (main) [ ] o.e.j.s.Server Started @1550ms +2023-09-11 10:54:01.233 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrConfig Using Lucene MatchVersion: 8.11.2 +2023-09-11 10:54:01.235 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.SolrIndexConfig IndexWriter infoStream solr logging is enabled +2023-09-11 10:54:01.281 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.IndexSchema Schema name=drupal-4.2.9-solr-8.x-0 +2023-09-11 10:54:01.521 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.IndexSchema Loaded schema drupal-4.2.9-solr-8.x-0/1.6 with uniqueid field id +2023-09-11 10:54:01.618 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.CoreContainer Creating SolrCore 'fts' using configuration from instancedir /var/solr/data/fts, trusted=true +2023-09-11 10:54:01.642 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.core.fts' (registry 'solr.core.fts') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@7ce69770 diff --git a/tests/data/test/hpc/solr_logs/solr.log.2 b/tests/data/test/hpc/solr_logs/solr.log.2 new file mode 100644 index 00000000..3791f3a8 --- /dev/null +++ b/tests/data/test/hpc/solr_logs/solr.log.2 @@ -0,0 +1,82 @@ +2023-09-13 10:46:59.765 INFO (main) [ ] o.e.j.u.log Logging initialized @572ms to org.eclipse.jetty.util.log.Slf4jLog +2023-09-13 10:46:59.860 INFO (main) [ ] o.e.j.s.Server jetty-9.4.44.v20210927; built: 2021-09-27T23:02:44.612Z; git: 8da83308eeca865e495e53ef315a249d63ba9332; jvm 11.0.20.1+1 +2023-09-13 10:46:59.866 INFO (main) [ ] o.e.j.d.p.ScanningAppProvider Deployment monitor [file:///opt/solr-8.11.2/server/contexts/] at interval 0 +2023-09-13 10:46:59.990 INFO (main) [ ] o.e.j.w.StandardDescriptorProcessor NO JSP Support for /solr, did not find org.apache.jasper.servlet.JspServlet +2023-09-13 10:46:59.995 INFO (main) [ ] o.e.j.s.session DefaultSessionIdManager workerName=node0 +2023-09-13 10:46:59.995 INFO (main) [ ] o.e.j.s.session No SessionScavenger set, using defaults +2023-09-13 10:46:59.996 INFO (main) [ ] o.e.j.s.session node0 Scavenging every 600000ms +2023-09-13 10:47:00.023 INFO (main) [ ] o.a.s.s.SolrDispatchFilter Using logger factory org.apache.logging.slf4j.Log4jLoggerFactory +2023-09-13 10:47:00.026 INFO (main) [ ] o.a.s.s.SolrDispatchFilter ___ _ Welcome to Apache Solr™ version 8.11.2 +2023-09-13 10:47:00.026 INFO (main) [ ] o.a.s.s.SolrDispatchFilter / __| ___| |_ _ Starting in standalone mode on port 8983 +2023-09-13 10:47:00.026 INFO (main) [ ] o.a.s.s.SolrDispatchFilter \__ \/ _ \ | '_| Install dir: /opt/solr +2023-09-13 10:47:00.026 INFO (main) [ ] o.a.s.s.SolrDispatchFilter |___/\___/_|_| Start time: 2023-09-13T10:47:00.026389Z +2023-09-13 10:47:00.040 INFO (main) [ ] o.a.s.c.SolrPaths Using system property solr.solr.home: /var/solr/data +2023-09-13 10:47:00.040 INFO (main) [ ] o.a.s.c.SolrXmlConfig Loading container configuration from /var/solr/data/solr.xml +2023-09-13 10:47:00.088 INFO (main) [ ] o.a.s.c.SolrXmlConfig MBean server found: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3, but no JMX reporters were configured - adding default JMX reporter. +2023-09-13 10:47:00.471 INFO (main) [ ] o.a.s.h.c.HttpShardHandlerFactory Host whitelist initialized: WhitelistHostChecker [whitelistHosts=null, whitelistHostCheckingEnabled=true] +2023-09-13 10:47:00.525 WARN (main) [ ] o.e.j.u.s.S.config Trusting all certificates configured for Client@15f8701f[provider=null,keyStore=null,trustStore=null] +2023-09-13 10:47:00.525 WARN (main) [ ] o.e.j.u.s.S.config No Client EndPointIdentificationAlgorithm configured for Client@15f8701f[provider=null,keyStore=null,trustStore=null] +2023-09-13 10:47:00.631 WARN (main) [ ] o.e.j.u.s.S.config Trusting all certificates configured for Client@4f5f6e45[provider=null,keyStore=null,trustStore=null] +2023-09-13 10:47:00.631 WARN (main) [ ] o.e.j.u.s.S.config No Client EndPointIdentificationAlgorithm configured for Client@4f5f6e45[provider=null,keyStore=null,trustStore=null] +2023-09-13 10:47:00.650 WARN (main) [ ] o.a.s.c.CoreContainer Not all security plugins configured! authentication=disabled authorization=disabled. Solr is only as secure as you make it. Consider configuring authentication/authorization before exposing Solr to users internal or external. See https://s.apache.org/solrsecurity for more info +2023-09-13 10:47:00.702 INFO (main) [ ] o.a.s.c.TransientSolrCoreCacheDefault Allocating transient core cache for max 2147483647 cores with initial capacity of 1024 +2023-09-13 10:47:00.706 INFO (main) [ ] o.a.s.h.a.MetricsHistoryHandler No .system collection, keeping metrics history in memory. +2023-09-13 10:47:00.730 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.node' (registry 'solr.node') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-13 10:47:00.731 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.jvm' (registry 'solr.jvm') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-13 10:47:00.731 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.jetty' (registry 'solr.jetty') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-13 10:47:00.747 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Found 1 core definitions underneath /var/solr/data +2023-09-13 10:47:00.747 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Cores are: [fts] +2023-09-13 10:47:00.774 INFO (main) [ ] o.e.j.s.h.ContextHandler Started o.e.j.w.WebAppContext@1cd201a8{/solr,file:///opt/solr-8.11.2/server/solr-webapp/webapp/,AVAILABLE}{/opt/solr-8.11.2/server/solr-webapp/webapp} +2023-09-13 10:47:00.778 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrResourceLoader Added 64 libs to classloader, from paths: [/opt/solr/contrib/analysis-extras/lib, /opt/solr/contrib/analysis-extras/lucene-libs, /opt/solr/contrib/extraction/lib, /opt/solr/contrib/langid/lib, /opt/solr/dist] +2023-09-13 10:47:00.781 INFO (main) [ ] o.e.j.s.AbstractConnector Started ServerConnector@64a8c844{HTTP/1.1, (http/1.1, h2c)}{0.0.0.0:8983} +2023-09-13 10:47:00.781 INFO (main) [ ] o.e.j.s.Server Started @1588ms +2023-09-13 10:47:00.892 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrConfig Using Lucene MatchVersion: 8.11.2 +2023-09-13 10:47:00.895 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.SolrIndexConfig IndexWriter infoStream solr logging is enabled +2023-09-13 10:47:00.947 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.IndexSchema Schema name=drupal-4.2.9-solr-8.x-0 +2023-09-13 10:47:01.106 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.IndexSchema Loaded schema drupal-4.2.9-solr-8.x-0/1.6 with uniqueid field id +2023-09-13 10:47:01.187 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.CoreContainer Creating SolrCore 'fts' using configuration from instancedir /var/solr/data/fts, trusted=true +2023-09-13 10:47:01.200 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.core.fts' (registry 'solr.core.fts') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-13 10:47:01.207 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrCore [[fts] ] Opening new SolrCore at [/var/solr/data/fts], dataDir=[/var/solr/data/fts/data/] +2023-09-13 10:47:01.254 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.r.XSLTResponseWriter xsltCacheLifetimeSeconds=5 +2023-09-13 10:47:01.499 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.UpdateHandler Using UpdateLog implementation: org.apache.solr.update.UpdateLog +2023-09-13 10:47:01.499 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.UpdateLog Initializing UpdateLog: dataDir= defaultSyncLevel=FLUSH numRecordsToKeep=100 maxNumLogsToKeep=10 numVersionBuckets=65536 +2023-09-13 10:47:01.506 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.CommitTracker Hard AutoCommit: if uncommitted for 15000ms; if 10000 uncommitted docs; +2023-09-13 10:47:01.506 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.CommitTracker Soft AutoCommit: disabled +2023-09-13 10:47:01.526 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.r.ManagedResourceStorage File-based storage initialized to use dir: /var/solr/data/fts/conf +2023-09-13 10:47:01.534 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SpellCheckComponent Initializing spell checkers +2023-09-13 10:47:01.537 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=ar,field=spellcheck_ar,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-13 10:47:01.538 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=en,field=spellcheck_en,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-13 10:47:01.538 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=fr,field=spellcheck_fr,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-13 10:47:01.538 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=und,field=spellcheck_und,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-13 10:47:01.538 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=zh_hans,field=spellcheck_zh_hans,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=1,minPrefix=1,maxInspections=5,minQueryLength=1,maxQueryFrequency=0.01,onlyMorePopular=true} +2023-09-13 10:47:01.538 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=es,field=spellcheck_es,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-13 10:47:01.538 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Initializing SuggestComponent +2023-09-13 10:47:01.540 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=ar,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_ar,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-13 10:47:01.548 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=ar,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_ar,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-13 10:47:01.548 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: ar = SuggesterListener [core=org.apache.solr.core.SolrCore@17102dc0, suggester=SolrSuggester [ name=ar, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-13 10:47:01.548 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=en,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_en,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-13 10:47:01.549 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=en,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_en,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-13 10:47:01.549 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: en = SuggesterListener [core=org.apache.solr.core.SolrCore@17102dc0, suggester=SolrSuggester [ name=en, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-13 10:47:01.549 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=fr,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_fr,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-13 10:47:01.550 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=fr,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_fr,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-13 10:47:01.550 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: fr = SuggesterListener [core=org.apache.solr.core.SolrCore@17102dc0, suggester=SolrSuggester [ name=fr, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-13 10:47:01.550 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=und,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_und,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-13 10:47:01.550 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=und,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_und,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-13 10:47:01.550 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: und = SuggesterListener [core=org.apache.solr.core.SolrCore@17102dc0, suggester=SolrSuggester [ name=und, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-13 10:47:01.550 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=es,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_es,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-13 10:47:01.551 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=es,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_es,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-13 10:47:01.551 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: es = SuggesterListener [core=org.apache.solr.core.SolrCore@17102dc0, suggester=SolrSuggester [ name=es, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-13 10:47:01.552 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.QueryElevationComponent Loading QueryElevation from: /var/solr/data/fts/conf/elevate.xml +2023-09-13 10:47:01.558 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.ReplicationHandler Commits will be reserved for 10000 ms +2023-09-13 10:47:01.561 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.UpdateLog Could not find max version in index or recent updates, using new clock 1776919009360347136 +2023-09-13 10:47:01.585 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.S.Request [fts] webapp=null path=null params={q=static+firstSearcher+warming+in+solrconfig.xml&distrib=false&event=firstSearcher} hits=0 status=0 QTime=20 +2023-09-13 10:47:01.585 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-13 10:47:01.585 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: ar +2023-09-13 10:47:01.585 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: en +2023-09-13 10:47:01.585 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: fr +2023-09-13 10:47:01.585 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: und +2023-09-13 10:47:01.585 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: zh_hans +2023-09-13 10:47:01.585 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: es +2023-09-13 10:47:01.589 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-13 11:19:08.711 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=6 +2023-09-13 11:19:51.016 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=4 diff --git a/tests/data/test/hpc/solr_logs/solr.log.3 b/tests/data/test/hpc/solr_logs/solr.log.3 new file mode 100644 index 00000000..6ce9beb4 --- /dev/null +++ b/tests/data/test/hpc/solr_logs/solr.log.3 @@ -0,0 +1,85 @@ +2023-09-14 08:30:08.648 INFO (main) [ ] o.e.j.u.log Logging initialized @678ms to org.eclipse.jetty.util.log.Slf4jLog +2023-09-14 08:30:08.772 INFO (main) [ ] o.e.j.s.Server jetty-9.4.44.v20210927; built: 2021-09-27T23:02:44.612Z; git: 8da83308eeca865e495e53ef315a249d63ba9332; jvm 11.0.20.1+1 +2023-09-14 08:30:08.780 INFO (main) [ ] o.e.j.d.p.ScanningAppProvider Deployment monitor [file:///opt/solr-8.11.2/server/contexts/] at interval 0 +2023-09-14 08:30:08.913 INFO (main) [ ] o.e.j.w.StandardDescriptorProcessor NO JSP Support for /solr, did not find org.apache.jasper.servlet.JspServlet +2023-09-14 08:30:08.918 INFO (main) [ ] o.e.j.s.session DefaultSessionIdManager workerName=node0 +2023-09-14 08:30:08.918 INFO (main) [ ] o.e.j.s.session No SessionScavenger set, using defaults +2023-09-14 08:30:08.919 INFO (main) [ ] o.e.j.s.session node0 Scavenging every 600000ms +2023-09-14 08:30:08.950 INFO (main) [ ] o.a.s.s.SolrDispatchFilter Using logger factory org.apache.logging.slf4j.Log4jLoggerFactory +2023-09-14 08:30:08.952 INFO (main) [ ] o.a.s.s.SolrDispatchFilter ___ _ Welcome to Apache Solr™ version 8.11.2 +2023-09-14 08:30:08.952 INFO (main) [ ] o.a.s.s.SolrDispatchFilter / __| ___| |_ _ Starting in standalone mode on port 8983 +2023-09-14 08:30:08.952 INFO (main) [ ] o.a.s.s.SolrDispatchFilter \__ \/ _ \ | '_| Install dir: /opt/solr +2023-09-14 08:30:08.952 INFO (main) [ ] o.a.s.s.SolrDispatchFilter |___/\___/_|_| Start time: 2023-09-14T08:30:08.952969Z +2023-09-14 08:30:08.963 INFO (main) [ ] o.a.s.c.SolrPaths Using system property solr.solr.home: /var/solr/data +2023-09-14 08:30:08.963 INFO (main) [ ] o.a.s.c.SolrXmlConfig Loading container configuration from /var/solr/data/solr.xml +2023-09-14 08:30:09.011 INFO (main) [ ] o.a.s.c.SolrXmlConfig MBean server found: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3, but no JMX reporters were configured - adding default JMX reporter. +2023-09-14 08:30:09.404 INFO (main) [ ] o.a.s.h.c.HttpShardHandlerFactory Host whitelist initialized: WhitelistHostChecker [whitelistHosts=null, whitelistHostCheckingEnabled=true] +2023-09-14 08:30:09.480 WARN (main) [ ] o.e.j.u.s.S.config Trusting all certificates configured for Client@55e3d6c3[provider=null,keyStore=null,trustStore=null] +2023-09-14 08:30:09.480 WARN (main) [ ] o.e.j.u.s.S.config No Client EndPointIdentificationAlgorithm configured for Client@55e3d6c3[provider=null,keyStore=null,trustStore=null] +2023-09-14 08:30:09.546 WARN (main) [ ] o.e.j.u.s.S.config Trusting all certificates configured for Client@27df0f3d[provider=null,keyStore=null,trustStore=null] +2023-09-14 08:30:09.546 WARN (main) [ ] o.e.j.u.s.S.config No Client EndPointIdentificationAlgorithm configured for Client@27df0f3d[provider=null,keyStore=null,trustStore=null] +2023-09-14 08:30:09.566 WARN (main) [ ] o.a.s.c.CoreContainer Not all security plugins configured! authentication=disabled authorization=disabled. Solr is only as secure as you make it. Consider configuring authentication/authorization before exposing Solr to users internal or external. See https://s.apache.org/solrsecurity for more info +2023-09-14 08:30:09.620 INFO (main) [ ] o.a.s.c.TransientSolrCoreCacheDefault Allocating transient core cache for max 2147483647 cores with initial capacity of 1024 +2023-09-14 08:30:09.624 INFO (main) [ ] o.a.s.h.a.MetricsHistoryHandler No .system collection, keeping metrics history in memory. +2023-09-14 08:30:09.650 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.node' (registry 'solr.node') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-14 08:30:09.650 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.jvm' (registry 'solr.jvm') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-14 08:30:09.651 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.jetty' (registry 'solr.jetty') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-14 08:30:09.668 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Found 1 core definitions underneath /var/solr/data +2023-09-14 08:30:09.669 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Cores are: [fts] +2023-09-14 08:30:09.708 INFO (main) [ ] o.e.j.s.h.ContextHandler Started o.e.j.w.WebAppContext@1cd201a8{/solr,file:///opt/solr-8.11.2/server/solr-webapp/webapp/,AVAILABLE}{/opt/solr-8.11.2/server/solr-webapp/webapp} +2023-09-14 08:30:09.712 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrResourceLoader Added 64 libs to classloader, from paths: [/opt/solr/contrib/analysis-extras/lib, /opt/solr/contrib/analysis-extras/lucene-libs, /opt/solr/contrib/extraction/lib, /opt/solr/contrib/langid/lib, /opt/solr/dist] +2023-09-14 08:30:09.716 INFO (main) [ ] o.e.j.s.AbstractConnector Started ServerConnector@64a8c844{HTTP/1.1, (http/1.1, h2c)}{0.0.0.0:8983} +2023-09-14 08:30:09.717 INFO (main) [ ] o.e.j.s.Server Started @1748ms +2023-09-14 08:30:09.958 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrConfig Using Lucene MatchVersion: 8.11.2 +2023-09-14 08:30:09.961 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.SolrIndexConfig IndexWriter infoStream solr logging is enabled +2023-09-14 08:30:10.022 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.IndexSchema Schema name=drupal-4.2.9-solr-8.x-0 +2023-09-14 08:30:10.190 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.IndexSchema Loaded schema drupal-4.2.9-solr-8.x-0/1.6 with uniqueid field id +2023-09-14 08:30:10.257 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.CoreContainer Creating SolrCore 'fts' using configuration from instancedir /var/solr/data/fts, trusted=true +2023-09-14 08:30:10.271 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.core.fts' (registry 'solr.core.fts') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-14 08:30:10.278 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrCore [[fts] ] Opening new SolrCore at [/var/solr/data/fts], dataDir=[/var/solr/data/fts/data/] +2023-09-14 08:30:10.296 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.r.XSLTResponseWriter xsltCacheLifetimeSeconds=5 +2023-09-14 08:30:10.478 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.UpdateHandler Using UpdateLog implementation: org.apache.solr.update.UpdateLog +2023-09-14 08:30:10.478 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.UpdateLog Initializing UpdateLog: dataDir= defaultSyncLevel=FLUSH numRecordsToKeep=100 maxNumLogsToKeep=10 numVersionBuckets=65536 +2023-09-14 08:30:10.483 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.CommitTracker Hard AutoCommit: if uncommitted for 15000ms; if 10000 uncommitted docs; +2023-09-14 08:30:10.483 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.CommitTracker Soft AutoCommit: disabled +2023-09-14 08:30:10.517 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.r.ManagedResourceStorage File-based storage initialized to use dir: /var/solr/data/fts/conf +2023-09-14 08:30:10.522 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SpellCheckComponent Initializing spell checkers +2023-09-14 08:30:10.524 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=ar,field=spellcheck_ar,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-14 08:30:10.525 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=en,field=spellcheck_en,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-14 08:30:10.525 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=fr,field=spellcheck_fr,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-14 08:30:10.525 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=und,field=spellcheck_und,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-14 08:30:10.525 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=zh_hans,field=spellcheck_zh_hans,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=1,minPrefix=1,maxInspections=5,minQueryLength=1,maxQueryFrequency=0.01,onlyMorePopular=true} +2023-09-14 08:30:10.525 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=es,field=spellcheck_es,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-14 08:30:10.525 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Initializing SuggestComponent +2023-09-14 08:30:10.526 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=ar,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_ar,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 08:30:10.533 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=ar,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_ar,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 08:30:10.533 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: ar = SuggesterListener [core=org.apache.solr.core.SolrCore@5fc9387d, suggester=SolrSuggester [ name=ar, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-14 08:30:10.533 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=en,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_en,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 08:30:10.534 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=en,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_en,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 08:30:10.534 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: en = SuggesterListener [core=org.apache.solr.core.SolrCore@5fc9387d, suggester=SolrSuggester [ name=en, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-14 08:30:10.534 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=fr,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_fr,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 08:30:10.534 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=fr,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_fr,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 08:30:10.534 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: fr = SuggesterListener [core=org.apache.solr.core.SolrCore@5fc9387d, suggester=SolrSuggester [ name=fr, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-14 08:30:10.534 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=und,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_und,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 08:30:10.535 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=und,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_und,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 08:30:10.535 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: und = SuggesterListener [core=org.apache.solr.core.SolrCore@5fc9387d, suggester=SolrSuggester [ name=und, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-14 08:30:10.535 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=es,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_es,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 08:30:10.535 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=es,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_es,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 08:30:10.535 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: es = SuggesterListener [core=org.apache.solr.core.SolrCore@5fc9387d, suggester=SolrSuggester [ name=es, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-14 08:30:10.536 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.QueryElevationComponent Loading QueryElevation from: /var/solr/data/fts/conf/elevate.xml +2023-09-14 08:30:10.543 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.ReplicationHandler Commits will be reserved for 10000 ms +2023-09-14 08:30:10.546 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.UpdateLog Could not find max version in index or recent updates, using new clock 1777000996453482496 +2023-09-14 08:30:10.574 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.S.Request [fts] webapp=null path=null params={q=static+firstSearcher+warming+in+solrconfig.xml&distrib=false&event=firstSearcher} hits=0 status=0 QTime=25 +2023-09-14 08:30:10.575 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 08:30:10.575 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: ar +2023-09-14 08:30:10.575 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: en +2023-09-14 08:30:10.575 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: fr +2023-09-14 08:30:10.575 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: und +2023-09-14 08:30:10.575 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: zh_hans +2023-09-14 08:30:10.575 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: es +2023-09-14 08:30:10.578 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 08:34:55.466 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=6 +2023-09-14 08:38:01.020 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=22 +2023-09-14 08:57:53.584 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=5 +2023-09-14 09:03:59.638 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=3 +2023-09-14 09:05:21.996 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=8 diff --git a/tests/data/test/hpc/solr_logs/solr.log.4 b/tests/data/test/hpc/solr_logs/solr.log.4 new file mode 100644 index 00000000..47ddd31b --- /dev/null +++ b/tests/data/test/hpc/solr_logs/solr.log.4 @@ -0,0 +1,2214 @@ +2023-09-14 11:36:19.498 INFO (main) [ ] o.e.j.u.log Logging initialized @1334ms to org.eclipse.jetty.util.log.Slf4jLog +2023-09-14 11:36:19.655 INFO (main) [ ] o.e.j.s.Server jetty-9.4.44.v20210927; built: 2021-09-27T23:02:44.612Z; git: 8da83308eeca865e495e53ef315a249d63ba9332; jvm 11.0.20.1+1 +2023-09-14 11:36:19.663 INFO (main) [ ] o.e.j.d.p.ScanningAppProvider Deployment monitor [file:///opt/solr-8.11.2/server/contexts/] at interval 0 +2023-09-14 11:36:19.918 INFO (main) [ ] o.e.j.w.StandardDescriptorProcessor NO JSP Support for /solr, did not find org.apache.jasper.servlet.JspServlet +2023-09-14 11:36:19.925 INFO (main) [ ] o.e.j.s.session DefaultSessionIdManager workerName=node0 +2023-09-14 11:36:19.925 INFO (main) [ ] o.e.j.s.session No SessionScavenger set, using defaults +2023-09-14 11:36:19.927 INFO (main) [ ] o.e.j.s.session node0 Scavenging every 600000ms +2023-09-14 11:36:19.976 INFO (main) [ ] o.a.s.s.SolrDispatchFilter Using logger factory org.apache.logging.slf4j.Log4jLoggerFactory +2023-09-14 11:36:19.979 INFO (main) [ ] o.a.s.s.SolrDispatchFilter ___ _ Welcome to Apache Solr™ version 8.11.2 +2023-09-14 11:36:19.979 INFO (main) [ ] o.a.s.s.SolrDispatchFilter / __| ___| |_ _ Starting in standalone mode on port 8983 +2023-09-14 11:36:19.979 INFO (main) [ ] o.a.s.s.SolrDispatchFilter \__ \/ _ \ | '_| Install dir: /opt/solr +2023-09-14 11:36:19.979 INFO (main) [ ] o.a.s.s.SolrDispatchFilter |___/\___/_|_| Start time: 2023-09-14T11:36:19.979896Z +2023-09-14 11:36:20.001 INFO (main) [ ] o.a.s.c.SolrPaths Using system property solr.solr.home: /var/solr/data +2023-09-14 11:36:20.002 INFO (main) [ ] o.a.s.c.SolrXmlConfig Loading container configuration from /var/solr/data/solr.xml +2023-09-14 11:36:20.063 INFO (main) [ ] o.a.s.c.SolrXmlConfig MBean server found: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3, but no JMX reporters were configured - adding default JMX reporter. +2023-09-14 11:36:20.399 INFO (main) [ ] o.a.s.h.c.HttpShardHandlerFactory Host whitelist initialized: WhitelistHostChecker [whitelistHosts=null, whitelistHostCheckingEnabled=true] +2023-09-14 11:36:20.511 WARN (main) [ ] o.e.j.u.s.S.config Trusting all certificates configured for Client@38320e34[provider=null,keyStore=null,trustStore=null] +2023-09-14 11:36:20.511 WARN (main) [ ] o.e.j.u.s.S.config No Client EndPointIdentificationAlgorithm configured for Client@38320e34[provider=null,keyStore=null,trustStore=null] +2023-09-14 11:36:20.654 WARN (main) [ ] o.e.j.u.s.S.config Trusting all certificates configured for Client@474c9131[provider=null,keyStore=null,trustStore=null] +2023-09-14 11:36:20.654 WARN (main) [ ] o.e.j.u.s.S.config No Client EndPointIdentificationAlgorithm configured for Client@474c9131[provider=null,keyStore=null,trustStore=null] +2023-09-14 11:36:20.707 WARN (main) [ ] o.a.s.c.CoreContainer Not all security plugins configured! authentication=disabled authorization=disabled. Solr is only as secure as you make it. Consider configuring authentication/authorization before exposing Solr to users internal or external. See https://s.apache.org/solrsecurity for more info +2023-09-14 11:36:20.784 INFO (main) [ ] o.a.s.c.TransientSolrCoreCacheDefault Allocating transient core cache for max 2147483647 cores with initial capacity of 1024 +2023-09-14 11:36:20.791 INFO (main) [ ] o.a.s.h.a.MetricsHistoryHandler No .system collection, keeping metrics history in memory. +2023-09-14 11:36:20.983 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.node' (registry 'solr.node') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-14 11:36:20.984 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.jvm' (registry 'solr.jvm') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-14 11:36:20.986 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.jetty' (registry 'solr.jetty') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-14 11:36:21.039 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Found 1 core definitions underneath /var/solr/data +2023-09-14 11:36:21.040 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Cores are: [fts] +2023-09-14 11:36:21.119 INFO (main) [ ] o.e.j.s.h.ContextHandler Started o.e.j.w.WebAppContext@1cd201a8{/solr,file:///opt/solr-8.11.2/server/solr-webapp/webapp/,AVAILABLE}{/opt/solr-8.11.2/server/solr-webapp/webapp} +2023-09-14 11:36:21.137 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrResourceLoader Added 64 libs to classloader, from paths: [/opt/solr/contrib/analysis-extras/lib, /opt/solr/contrib/analysis-extras/lucene-libs, /opt/solr/contrib/extraction/lib, /opt/solr/contrib/langid/lib, /opt/solr/dist] +2023-09-14 11:36:21.140 INFO (main) [ ] o.e.j.s.AbstractConnector Started ServerConnector@64a8c844{HTTP/1.1, (http/1.1, h2c)}{0.0.0.0:8983} +2023-09-14 11:36:21.142 INFO (main) [ ] o.e.j.s.Server Started @2978ms +2023-09-14 11:36:21.430 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrConfig Using Lucene MatchVersion: 8.11.2 +2023-09-14 11:36:21.436 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.SolrIndexConfig IndexWriter infoStream solr logging is enabled +2023-09-14 11:36:21.524 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.IndexSchema Schema name=drupal-4.2.9-solr-8.x-0 +2023-09-14 11:36:21.833 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.IndexSchema Loaded schema drupal-4.2.9-solr-8.x-0/1.6 with uniqueid field id +2023-09-14 11:36:22.008 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.CoreContainer Creating SolrCore 'fts' using configuration from instancedir /var/solr/data/fts, trusted=true +2023-09-14 11:36:22.028 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.core.fts' (registry 'solr.core.fts') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-14 11:36:22.037 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrCore [[fts] ] Opening new SolrCore at [/var/solr/data/fts], dataDir=[/var/solr/data/fts/data/] +2023-09-14 11:36:22.058 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.r.XSLTResponseWriter xsltCacheLifetimeSeconds=5 +2023-09-14 11:36:22.419 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.UpdateHandler Using UpdateLog implementation: org.apache.solr.update.UpdateLog +2023-09-14 11:36:22.420 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.UpdateLog Initializing UpdateLog: dataDir= defaultSyncLevel=FLUSH numRecordsToKeep=100 maxNumLogsToKeep=10 numVersionBuckets=65536 +2023-09-14 11:36:22.432 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.CommitTracker Hard AutoCommit: if uncommitted for 15000ms; if 10000 uncommitted docs; +2023-09-14 11:36:22.432 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.CommitTracker Soft AutoCommit: disabled +2023-09-14 11:36:22.592 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.r.ManagedResourceStorage File-based storage initialized to use dir: /var/solr/data/fts/conf +2023-09-14 11:36:22.599 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SpellCheckComponent Initializing spell checkers +2023-09-14 11:36:22.603 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=ar,field=spellcheck_ar,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-14 11:36:22.603 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=en,field=spellcheck_en,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-14 11:36:22.603 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=fr,field=spellcheck_fr,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-14 11:36:22.603 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=und,field=spellcheck_und,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-14 11:36:22.603 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=zh_hans,field=spellcheck_zh_hans,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=1,minPrefix=1,maxInspections=5,minQueryLength=1,maxQueryFrequency=0.01,onlyMorePopular=true} +2023-09-14 11:36:22.603 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=es,field=spellcheck_es,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-14 11:36:22.604 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Initializing SuggestComponent +2023-09-14 11:36:22.608 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=ar,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_ar,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 11:36:22.619 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=ar,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_ar,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 11:36:22.619 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: ar = SuggesterListener [core=org.apache.solr.core.SolrCore@32fcf9f, suggester=SolrSuggester [ name=ar, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-14 11:36:22.620 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=en,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_en,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 11:36:22.620 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=en,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_en,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 11:36:22.620 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: en = SuggesterListener [core=org.apache.solr.core.SolrCore@32fcf9f, suggester=SolrSuggester [ name=en, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-14 11:36:22.621 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=fr,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_fr,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 11:36:22.622 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=fr,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_fr,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 11:36:22.622 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: fr = SuggesterListener [core=org.apache.solr.core.SolrCore@32fcf9f, suggester=SolrSuggester [ name=fr, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-14 11:36:22.622 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=und,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_und,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 11:36:22.623 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=und,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_und,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 11:36:22.623 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: und = SuggesterListener [core=org.apache.solr.core.SolrCore@32fcf9f, suggester=SolrSuggester [ name=und, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-14 11:36:22.623 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=es,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_es,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 11:36:22.624 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=es,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_es,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-14 11:36:22.624 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: es = SuggesterListener [core=org.apache.solr.core.SolrCore@32fcf9f, suggester=SolrSuggester [ name=es, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-14 11:36:22.626 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.QueryElevationComponent Loading QueryElevation from: /var/solr/data/fts/conf/elevate.xml +2023-09-14 11:36:22.632 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.ReplicationHandler Commits will be reserved for 10000 ms +2023-09-14 11:36:22.635 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.UpdateLog Could not find max version in index or recent updates, using new clock 1777012711237877760 +2023-09-14 11:36:22.676 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.S.Request [fts] webapp=null path=null params={q=static+firstSearcher+warming+in+solrconfig.xml&distrib=false&event=firstSearcher} hits=0 status=0 QTime=34 +2023-09-14 11:36:22.676 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:36:22.676 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: ar +2023-09-14 11:36:22.676 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: en +2023-09-14 11:36:22.676 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: fr +2023-09-14 11:36:22.676 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: und +2023-09-14 11:36:22.676 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: zh_hans +2023-09-14 11:36:22.676 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: es +2023-09-14 11:36:22.690 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:36:32.334 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=6 +2023-09-14 11:37:34.293 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777012786342133760)} 0 75 +2023-09-14 11:37:34.302 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 2 +2023-09-14 11:37:34.473 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777012786559188992)} 0 6 +2023-09-14 11:37:34.480 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:37:34.685 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-109 (1777012786747932672)]} 0 40 +2023-09-14 11:37:34.697 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-91 (1777012786799312896)]} 0 1 +2023-09-14 11:37:34.711 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-101 (1777012786813992960)]} 0 1 +2023-09-14 11:37:34.746 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-107 (1777012786850693120)]} 0 1 +2023-09-14 11:37:34.768 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-108 (1777012786874810368)]} 0 1 +2023-09-14 11:37:34.778 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-94 (1777012786884247552)]} 0 0 +2023-09-14 11:37:34.788 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-99 (1777012786894733312)]} 0 1 +2023-09-14 11:37:34.798 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-93 (1777012786905219072)]} 0 1 +2023-09-14 11:37:34.808 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-104 (1777012786915704832)]} 0 1 +2023-09-14 11:37:34.825 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-98 (1777012786933530624)]} 0 1 +2023-09-14 11:37:34.835 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-102 (1777012786944016384)]} 0 1 +2023-09-14 11:37:34.844 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-95 (1777012786954502144)]} 0 1 +2023-09-14 11:37:34.855 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-90 (1777012786964987904)]} 0 0 +2023-09-14 11:37:34.874 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-96 (1777012786985959424)]} 0 0 +2023-09-14 11:37:34.883 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-105 (1777012786995396608)]} 0 0 +2023-09-14 11:37:34.892 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-100 (1777012787004833792)]} 0 0 +2023-09-14 11:37:34.918 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-97 (1777012787031048192)]} 0 1 +2023-09-14 11:37:34.970 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-92 (1777012787085574144)]} 0 1 +2023-09-14 11:37:34.989 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-103 (1777012787106545664)]} 0 1 +2023-09-14 11:37:35.010 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-106 (1777012787127517184)]} 0 1 +2023-09-14 11:37:35.107 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:37:35.108 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:37:35.108 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:37:35.116 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:37:35.116 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:37:35.121 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:37:35.121 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:37:35.127 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:37:35.127 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:37:35.131 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:37:35.131 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:37:35.143 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:37:35.150 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 131 +2023-09-14 11:37:35.175 INFO (qtp1581078471-20) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=*&sort=id+asc&rows=100000&wt=json} hits=20 status=0 QTime=10 +2023-09-14 11:37:35.183 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=AoEqcHJvamVjdC05OQ%3D%3D&sort=id+asc&rows=100000&wt=json} hits=20 status=0 QTime=1 +2023-09-14 11:37:35.203 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={solrVersion=5.1&core=fts&path=/solr&port=8983&host=solr&wt=json}{deleteByQuery=projectId:(91 92 93 94 95) (-1777012787313115136)} 0 16 +2023-09-14 11:37:35.212 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:37:35.212 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:37:35.212 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:37:35.216 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:37:35.216 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:37:35.222 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:37:35.222 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:37:35.226 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:37:35.226 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:37:35.229 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:37:35.230 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:37:35.237 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:37:35.238 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 32 +2023-09-14 11:37:35.244 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={solrVersion=5.1&core=fts&path=/solr&port=8983&host=solr&wt=json}{deleteByQuery=projectId:(96 97 98) (-1777012787369738240)} 0 4 +2023-09-14 11:37:35.255 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:37:35.255 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:37:35.255 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:37:35.259 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:37:35.259 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:37:35.266 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:37:35.266 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:37:35.270 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:37:35.270 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:37:35.281 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:37:35.281 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:37:35.292 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:37:35.294 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 47 +2023-09-14 11:37:35.300 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&wt=json} hits=12 status=0 QTime=2 +2023-09-14 11:37:35.331 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777012787457818624)} 0 7 +2023-09-14 11:37:35.336 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:37:35.336 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:37:35.336 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:37:35.341 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:37:35.341 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:37:35.347 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:37:35.347 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:37:35.350 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:37:35.350 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:37:35.356 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:37:35.356 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:37:35.363 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:37:35.367 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 33 +2023-09-14 11:37:35.372 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777012787506053120)} 0 1 +2023-09-14 11:37:35.375 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 11:37:35.434 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-115 (1777012787570016256)]} 0 3 +2023-09-14 11:37:35.444 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-112 (1777012787582599168)]} 0 1 +2023-09-14 11:37:35.457 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-111 (1777012787596230656)]} 0 0 +2023-09-14 11:37:35.472 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-114 (1777012787611959296)]} 0 0 +2023-09-14 11:37:35.480 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-113 (1777012787621396480)]} 0 0 +2023-09-14 11:37:35.489 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-110 (1777012787629785088)]} 0 0 +2023-09-14 11:37:35.517 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:37:35.517 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:37:35.517 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:37:35.529 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:37:35.529 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:37:35.533 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:37:35.533 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:37:35.537 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:37:35.537 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:37:35.543 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:37:35.543 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:37:35.548 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:37:35.549 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 57 +2023-09-14 11:37:35.552 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=*&sort=id+asc&rows=100000&wt=json} hits=6 status=0 QTime=0 +2023-09-14 11:37:35.555 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=AoErcHJvamVjdC0xMTU%3D&sort=id+asc&rows=100000&wt=json} hits=6 status=0 QTime=0 +2023-09-14 11:37:35.558 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&rows=10&wt=json} hits=6 status=0 QTime=0 +2023-09-14 11:37:35.563 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777012787707379712)} 0 1 +2023-09-14 11:37:35.567 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:37:35.567 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:37:35.567 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:37:35.571 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:37:35.571 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:37:35.575 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:37:35.575 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:37:35.580 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:37:35.580 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:37:35.583 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:37:35.583 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:37:35.591 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:37:35.594 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 29 +2023-09-14 11:37:35.597 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777012787743031296)} 0 1 +2023-09-14 11:37:35.600 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:38:22.442 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=3 +2023-09-14 11:38:54.923 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=7 +2023-09-14 11:38:54.946 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777012870937051136)} 0 11 +2023-09-14 11:38:54.962 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=id:(27 OR 28 OR 29) AND docType:flow (-1777012870960119808)} 0 4 +2023-09-14 11:38:55.088 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[25 (1777012871069171712), 26 (1777012871095386112)]} 0 26 +2023-09-14 11:38:55.146 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:38:55.146 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:38:55.146 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:38:55.154 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:38:55.154 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:38:55.159 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:38:55.160 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:38:55.164 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:38:55.164 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:38:55.167 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:38:55.167 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:38:55.178 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:38:55.179 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 83 +2023-09-14 11:38:55.184 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=2 status=0 QTime=1 +2023-09-14 11:38:55.196 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777012871206535168)} 0 3 +2023-09-14 11:38:55.229 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[26 (1777012871241138176)]} 0 3 +2023-09-14 11:38:55.273 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:38:55.273 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:38:55.273 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:38:55.277 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:38:55.277 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:38:55.282 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:38:55.283 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:38:55.286 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:38:55.286 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:38:55.290 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:38:55.291 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:38:55.296 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:38:55.300 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 65 +2023-09-14 11:38:55.304 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=1 status=0 QTime=0 +2023-09-14 11:38:55.310 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777012871327121408)} 0 2 +2023-09-14 11:38:55.317 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=id:(27 OR 28 OR 29) AND docType:flow (-1777012871335510016)} 0 1 +2023-09-14 11:38:55.343 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[26 (1777012871360675840)]} 0 3 +2023-09-14 11:38:55.372 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:38:55.372 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:38:55.372 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:38:55.377 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:38:55.377 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:38:55.382 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:38:55.382 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:38:55.390 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:38:55.390 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:38:55.396 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:38:55.396 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:38:55.401 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:38:55.405 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 52 +2023-09-14 11:38:55.408 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=1 status=0 QTime=0 +2023-09-14 11:38:55.414 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777012871436173312)} 0 2 +2023-09-14 11:38:55.421 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=id:(27 OR 28 OR 29) AND docType:flow (-1777012871444561920)} 0 1 +2023-09-14 11:39:10.432 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:39:10.432 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:39:10.433 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:39:10.440 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:39:10.440 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:39:10.447 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:39:10.447 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:39:10.452 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:39:10.452 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:39:10.460 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:39:10.460 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:39:10.472 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:39:29.420 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=19 +2023-09-14 11:42:46.570 INFO (qtp1581078471-17) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=2 +2023-09-14 11:42:54.974 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013122627796992)} 0 8 +2023-09-14 11:42:54.984 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 4 +2023-09-14 11:42:55.180 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013122850095104)} 0 1 +2023-09-14 11:42:55.183 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:42:55.325 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-10 (1777013122997944320)]} 0 5 +2023-09-14 11:42:55.341 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-14 (1777013123017867264)]} 0 1 +2023-09-14 11:42:55.353 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-7 (1777013123031498752)]} 0 1 +2023-09-14 11:42:55.363 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-20 (1777013123041984512)]} 0 0 +2023-09-14 11:42:55.372 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-13 (1777013123051421696)]} 0 0 +2023-09-14 11:42:55.380 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-8 (1777013123060858880)]} 0 0 +2023-09-14 11:42:55.390 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-19 (1777013123070296064)]} 0 0 +2023-09-14 11:42:55.398 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-11 (1777013123079733248)]} 0 0 +2023-09-14 11:42:55.407 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-5 (1777013123088121856)]} 0 0 +2023-09-14 11:42:55.415 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-17 (1777013123096510464)]} 0 0 +2023-09-14 11:42:55.427 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-3 (1777013123110141952)]} 0 0 +2023-09-14 11:42:55.436 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-6 (1777013123119579136)]} 0 0 +2023-09-14 11:42:55.445 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-2 (1777013123127967744)]} 0 0 +2023-09-14 11:42:55.452 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-12 (1777013123136356352)]} 0 0 +2023-09-14 11:42:55.460 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-9 (1777013123144744960)]} 0 0 +2023-09-14 11:42:55.468 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-18 (1777013123153133568)]} 0 0 +2023-09-14 11:42:55.476 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-1 (1777013123161522176)]} 0 0 +2023-09-14 11:42:55.484 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-16 (1777013123169910784)]} 0 0 +2023-09-14 11:42:55.492 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-15 (1777013123178299392)]} 0 0 +2023-09-14 11:42:55.503 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-4 (1777013123188785152)]} 0 0 +2023-09-14 11:42:55.534 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:42:55.534 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:42:55.534 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:42:55.540 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:42:55.540 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:42:55.545 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:42:55.545 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:42:55.548 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:42:55.549 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:42:55.552 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:42:55.552 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:42:55.560 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:42:55.561 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 52 +2023-09-14 11:42:55.570 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=*&sort=id+asc&rows=100000&wt=json} hits=20 status=0 QTime=1 +2023-09-14 11:42:55.573 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=AoEpcHJvamVjdC05&sort=id+asc&rows=100000&wt=json} hits=20 status=0 QTime=0 +2023-09-14 11:42:55.579 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={solrVersion=5.1&core=fts&path=/solr&port=8983&host=solr&wt=json}{deleteByQuery=projectId:(2 3 4 5 6) (-1777013123267428352)} 0 3 +2023-09-14 11:42:55.585 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:42:55.585 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:42:55.585 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:42:55.589 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:42:55.589 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:42:55.595 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:42:55.595 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:42:55.598 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:42:55.598 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:42:55.605 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:42:55.605 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:42:55.613 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:42:55.614 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 33 +2023-09-14 11:42:55.623 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={solrVersion=5.1&core=fts&path=/solr&port=8983&host=solr&wt=json}{deleteByQuery=projectId:(7 8 9) (-1777013123309371392)} 0 6 +2023-09-14 11:42:55.632 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:42:55.632 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:42:55.633 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:42:55.637 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:42:55.637 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:42:55.641 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:42:55.641 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:42:55.647 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:42:55.647 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:42:55.653 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:42:55.653 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:42:55.659 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:42:55.659 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 34 +2023-09-14 11:42:55.662 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&wt=json} hits=12 status=0 QTime=0 +2023-09-14 11:42:55.678 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013123370188800)} 0 3 +2023-09-14 11:42:55.681 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:42:55.681 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:42:55.681 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:42:55.686 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:42:55.686 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:42:55.690 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:42:55.690 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:42:55.694 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:42:55.694 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:42:55.698 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:42:55.698 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:42:55.705 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:42:55.707 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 28 +2023-09-14 11:42:55.711 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013123406888960)} 0 1 +2023-09-14 11:42:55.714 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:42:55.767 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-23 (1777013123463512064)]} 0 2 +2023-09-14 11:42:55.775 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-22 (1777013123473997824)]} 0 1 +2023-09-14 11:42:55.783 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-24 (1777013123483435008)]} 0 0 +2023-09-14 11:42:55.793 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-26 (1777013123492872192)]} 0 0 +2023-09-14 11:42:55.811 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-25 (1777013123511746560)]} 0 0 +2023-09-14 11:42:55.819 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-21 (1777013123521183744)]} 0 0 +2023-09-14 11:42:55.841 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:42:55.841 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:42:55.841 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:42:55.845 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:42:55.845 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:42:55.849 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:42:55.849 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:42:55.855 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:42:55.855 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:42:55.860 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:42:55.860 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:42:55.872 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:42:55.873 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 50 +2023-09-14 11:42:55.876 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=*&sort=id+asc&rows=100000&wt=json} hits=6 status=0 QTime=0 +2023-09-14 11:42:55.878 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=AoEqcHJvamVjdC0yNg%3D%3D&sort=id+asc&rows=100000&wt=json} hits=6 status=0 QTime=0 +2023-09-14 11:42:55.882 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&rows=10&wt=json} hits=6 status=0 QTime=0 +2023-09-14 11:42:55.890 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013123594584064)} 0 1 +2023-09-14 11:42:55.894 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:42:55.894 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:42:55.894 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:42:55.898 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:42:55.898 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:42:55.903 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:42:55.904 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:42:55.908 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:42:55.908 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:42:55.911 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:42:55.911 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:42:55.917 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:42:55.920 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 28 +2023-09-14 11:42:55.924 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013123629187072)} 0 1 +2023-09-14 11:42:55.927 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:44:01.399 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=4 +2023-09-14 11:44:31.191 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=8 +2023-09-14 11:44:31.213 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013223542751232)} 0 8 +2023-09-14 11:44:31.224 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=id:(27 OR 28 OR 29) AND docType:flow (-1777013223558479872)} 0 2 +2023-09-14 11:44:31.290 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[25 (1777013223622443008), 26 (1777013223628734464)]} 0 7 +2023-09-14 11:44:31.325 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:44:31.325 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:44:31.325 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:44:31.334 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:44:31.334 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:44:31.339 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:44:31.339 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:44:31.348 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:44:31.348 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:44:31.354 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:44:31.354 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:44:31.362 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:44:31.363 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 65 +2023-09-14 11:44:31.367 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=2 status=0 QTime=0 +2023-09-14 11:44:31.379 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013223719960576)} 0 2 +2023-09-14 11:44:31.412 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[26 (1777013223754563584)]} 0 2 +2023-09-14 11:44:31.437 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:44:31.437 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:44:31.437 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:44:31.441 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:44:31.442 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:44:31.447 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:44:31.447 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:44:31.451 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:44:31.451 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:44:31.455 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:44:31.455 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:44:31.462 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:44:31.467 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 48 +2023-09-14 11:44:31.469 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=1 status=0 QTime=0 +2023-09-14 11:44:31.473 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013223820623872)} 0 1 +2023-09-14 11:44:31.480 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=id:(27 OR 28 OR 29) AND docType:flow (-1777013223827963904)} 0 1 +2023-09-14 11:44:31.502 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[26 (1777013223848935424)]} 0 2 +2023-09-14 11:44:31.569 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:44:31.569 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:44:31.569 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:44:31.574 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:44:31.574 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:44:31.578 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:44:31.578 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:44:31.581 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:44:31.581 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:44:31.587 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:44:31.587 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:44:31.592 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:44:31.597 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 90 +2023-09-14 11:44:31.599 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=1 status=0 QTime=0 +2023-09-14 11:44:31.604 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013223957987328)} 0 1 +2023-09-14 11:44:31.611 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=id:(27 OR 28 OR 29) AND docType:flow (-1777013223965327360)} 0 1 +2023-09-14 11:44:46.608 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:44:46.608 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:44:46.608 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:44:46.613 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:44:46.613 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:44:46.617 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:44:46.617 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:44:46.623 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:44:46.623 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:44:46.628 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:44:46.628 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:44:46.634 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:44:54.202 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=0 +2023-09-14 11:45:04.267 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(133))-(sourcePlanId:(133)))+OR+(((sourcePlanId:(133))+AND+(destinationPlanId:(133)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=49 +2023-09-14 11:45:04.267 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(133))-(sourcePlanId:(133)))+OR+(((sourcePlanId:(133))+AND+(destinationPlanId:(133)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=49 +2023-09-14 11:45:04.355 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(133))-(sourcePlanId:(133)))+OR+(((sourcePlanId:(133))+AND+(destinationPlanId:(133)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=5 +2023-09-14 11:45:04.356 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(133))-(sourcePlanId:(133)))+OR+(((sourcePlanId:(133))+AND+(destinationPlanId:(133)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=4 +2023-09-14 11:45:33.802 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[1 (1777013289154248704), 2 (1777013289168928768), 3 (1777013289171025920), 4 (1777013289172074496), 5 (1777013289174171648), 6 (1777013289175220224), 7 (1777013289177317376)]} 0 23 +2023-09-14 11:45:33.925 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:45:33.925 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:45:33.925 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:45:33.932 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:45:33.932 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:45:33.936 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:45:33.936 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:45:33.940 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:45:33.940 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:45:33.945 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:45:33.945 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:45:33.953 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:45:33.954 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 144 +2023-09-14 11:45:34.004 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(176))-(sourcePlanId:(176)))+OR+(((sourcePlanId:(176))+AND+(destinationPlanId:(176)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=8 +2023-09-14 11:45:34.019 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(177))-(sourcePlanId:(177)))+OR+(((sourcePlanId:(177))+AND+(destinationPlanId:(177)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=0 +2023-09-14 11:45:34.033 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(178))-(sourcePlanId:(178)))+OR+(((sourcePlanId:(178))+AND+(destinationPlanId:(178)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 11:45:34.066 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(179))-(sourcePlanId:(179)))+OR+(((sourcePlanId:(179))+AND+(destinationPlanId:(179)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 11:45:34.104 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(180))-(sourcePlanId:(180)))+OR+(((sourcePlanId:(180))+AND+(destinationPlanId:(180)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 11:45:34.128 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(181))-(sourcePlanId:(181)))+OR+(((sourcePlanId:(181))+AND+(destinationPlanId:(181)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 11:45:34.152 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(182))-(sourcePlanId:(182)))+OR+(((sourcePlanId:(182))+AND+(destinationPlanId:(182)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-14 11:45:34.202 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013289594650624)} 0 3 +2023-09-14 11:45:34.206 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:45:34.206 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:45:34.206 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:45:34.210 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:45:34.210 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:45:34.214 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:45:34.214 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:45:34.219 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:45:34.219 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:45:34.222 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:45:34.222 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:45:34.230 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:45:34.233 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 30 +2023-09-14 11:45:54.706 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013311088361472)} 0 12 +2023-09-14 11:45:54.715 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 3 +2023-09-14 11:45:54.858 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013311255085056)} 0 2 +2023-09-14 11:45:54.861 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 2 +2023-09-14 11:45:54.895 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013311294930944)} 0 1 +2023-09-14 11:45:54.899 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 2 +2023-09-14 11:45:54.916 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013311316951040)} 0 1 +2023-09-14 11:45:54.919 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:45:54.938 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013311340019712)} 0 2 +2023-09-14 11:45:54.941 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:45:55.299 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[19 (1777013311695486976), 20 (1777013311711215616), 21 (1777013311713312768), 22 (1777013311715409920), 23 (1777013311716458496), 24 (1777013311717507072), 25 (1777013311718555648)]} 0 24 +2023-09-14 11:45:55.403 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:45:55.403 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:45:55.403 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:45:55.410 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:45:55.410 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:45:55.414 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:45:55.414 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:45:55.417 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:45:55.417 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:45:55.420 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:45:55.420 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:45:55.428 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:45:55.429 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 123 +2023-09-14 11:45:55.472 INFO (qtp1581078471-22) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4456,tindexSize=44,time=2,phase1=2,nTerms=3,bigTerms=1,termInstances=3,uses=0} +2023-09-14 11:45:55.474 INFO (qtp1581078471-22) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4454,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=2,uses=0} +2023-09-14 11:45:55.475 INFO (qtp1581078471-22) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4358,tindexSize=42,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-14 11:45:55.475 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2020)+AND+destinationPlanId:(214)+AND+destinationGlobalClusterId:(48))-(sourceUsageYearName:(2020)+AND+sourcePlanId:(214)+AND+sourceGlobalClusterId:(48)))+OR+(((sourceUsageYearName:(2020)+AND+sourcePlanId:(214)+AND+sourceGlobalClusterId:(48))+AND+(destinationUsageYearName:(2020)+AND+destinationPlanId:(214)+AND+destinationGlobalClusterId:(48)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=33 +2023-09-14 11:45:55.481 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2020")+AND+destinationPlanId:("214")+AND+destinationGlobalClusterId:(49))-(sourceUsageYearName:("2020")+AND+sourcePlanId:("214")+AND+sourceGlobalClusterId:(49)))+OR+(((sourceUsageYearName:("2020")+AND+sourcePlanId:("214")+AND+sourceGlobalClusterId:(49))+AND+(destinationUsageYearName:("2020")+AND+destinationPlanId:("214")+AND+destinationGlobalClusterId:(49)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-14 11:45:55.504 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013311931416576)} 0 2 +2023-09-14 11:45:55.507 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:45:55.507 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:45:55.508 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:45:55.508 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:45:55.508 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:45:55.508 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:45:55.512 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:45:55.512 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:45:55.518 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:45:55.518 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:45:55.524 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:45:55.524 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:45:55.530 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:45:55.530 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:45:55.535 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:45:55.539 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 33 +2023-09-14 11:45:55.827 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[26 (1777013312261718016), 27 (1777013312268009472), 28 (1777013312269058048), 29 (1777013312270106624), 30 (1777013312270106625), 31 (1777013312271155200), 32 (1777013312272203776)]} 0 10 +2023-09-14 11:45:55.933 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4456,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=3,uses=0} +2023-09-14 11:45:55.933 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4454,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=2,uses=0} +2023-09-14 11:45:55.934 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4358,tindexSize=42,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-14 11:45:55.934 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:45:55.934 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:45:55.934 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:45:55.938 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:45:55.938 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:45:55.941 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:45:55.941 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:45:55.945 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:45:55.945 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:45:55.950 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:45:55.950 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:45:55.955 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:45:55.955 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 122 +2023-09-14 11:45:55.965 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2020)+AND+destinationPlanId:(217)+AND+destinationGlobalClusterId:(50))-(sourceUsageYearName:(2020)+AND+sourcePlanId:(217)+AND+sourceGlobalClusterId:(50)))+OR+(((sourceUsageYearName:(2020)+AND+sourcePlanId:(217)+AND+sourceGlobalClusterId:(50))+AND+(destinationUsageYearName:(2020)+AND+destinationPlanId:(217)+AND+destinationGlobalClusterId:(50)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=4 +2023-09-14 11:45:55.970 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2020")+AND+destinationPlanId:("217")+AND+destinationGlobalClusterId:(51))-(sourceUsageYearName:("2020")+AND+sourcePlanId:("217")+AND+sourceGlobalClusterId:(51)))+OR+(((sourceUsageYearName:("2020")+AND+sourcePlanId:("217")+AND+sourceGlobalClusterId:(51))+AND+(destinationUsageYearName:("2020")+AND+destinationPlanId:("217")+AND+destinationGlobalClusterId:(51)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-14 11:45:55.984 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013312435781632)} 0 2 +2023-09-14 11:45:55.987 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:45:55.987 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:45:55.987 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:45:55.987 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:45:55.987 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:45:55.987 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:45:55.990 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:45:55.990 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:45:55.993 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:45:55.993 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:45:55.998 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:45:55.998 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:45:56.001 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:45:56.001 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:45:56.006 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:45:56.011 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 25 +2023-09-14 11:45:56.277 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[33 (1777013312734625792), 34 (1777013312739868672), 35 (1777013312740917248), 36 (1777013312741965824), 37 (1777013312741965825), 38 (1777013312743014400), 39 (1777013312744062976)]} 0 10 +2023-09-14 11:45:56.384 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4456,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=3,uses=0} +2023-09-14 11:45:56.384 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4454,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=2,uses=0} +2023-09-14 11:45:56.384 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4358,tindexSize=42,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-14 11:45:56.385 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:45:56.385 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:45:56.385 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:45:56.389 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:45:56.389 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:45:56.393 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:45:56.393 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:45:56.399 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:45:56.399 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:45:56.402 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:45:56.402 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:45:56.407 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 1 ms +2023-09-14 11:45:56.408 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 127 +2023-09-14 11:45:56.422 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2020)+AND+destinationPlanId:(220)+AND+destinationGlobalClusterId:(52))-(sourceUsageYearName:(2020)+AND+sourcePlanId:(220)+AND+sourceGlobalClusterId:(52)))+OR+(((sourceUsageYearName:(2020)+AND+sourcePlanId:(220)+AND+sourceGlobalClusterId:(52))+AND+(destinationUsageYearName:(2020)+AND+destinationPlanId:(220)+AND+destinationGlobalClusterId:(52)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=3 +2023-09-14 11:45:56.424 INFO (qtp1581078471-21) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4456,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:45:56.425 INFO (qtp1581078471-21) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4426,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=1,termInstances=0,uses=0} +2023-09-14 11:45:56.425 INFO (qtp1581078471-21) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4358,tindexSize=42,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=1,uses=0} +2023-09-14 11:45:56.427 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"},"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2020")+AND+sourcePlanId:("220")+AND+sourceGlobalClusterId:("52"))+AND+(destinationUsageYearName:("2020")+AND+destinationPlanId:("220")+AND+destinationGlobalClusterId:("52")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=6 +2023-09-14 11:45:56.438 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"},"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2020")+AND+sourcePlanId:("220")+AND+sourceGlobalClusterId:("53"))+AND+(destinationUsageYearName:("2020")+AND+destinationPlanId:("220")+AND+destinationGlobalClusterId:("53")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=3 +2023-09-14 11:45:56.438 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2020")+AND+destinationPlanId:("220")+AND+destinationGlobalClusterId:(53))-(sourceUsageYearName:("2020")+AND+sourcePlanId:("220")+AND+sourceGlobalClusterId:(53)))+OR+(((sourceUsageYearName:("2020")+AND+sourcePlanId:("220")+AND+sourceGlobalClusterId:(53))+AND+(destinationUsageYearName:("2020")+AND+destinationPlanId:("220")+AND+destinationGlobalClusterId:(53)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=3 +2023-09-14 11:45:56.453 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013312927563776)} 0 2 +2023-09-14 11:45:56.456 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:45:56.457 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:45:56.457 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:45:56.457 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:45:56.457 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:45:56.457 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:45:56.457 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:45:56.457 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:45:56.457 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:45:56.462 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:45:56.462 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:45:56.467 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:45:56.467 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:45:56.470 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:45:56.470 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:45:56.473 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:45:56.473 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:45:56.480 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:45:56.483 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 28 +2023-09-14 11:46:15.016 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013332390182912)} 0 5 +2023-09-14 11:46:15.019 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:46:15.194 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013332578926592)} 0 1 +2023-09-14 11:46:15.197 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:46:15.420 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018")+AND+destinationPlanId:(225))-(sourceUsageYearName:("2018")+AND+sourcePlanId:(225)))+OR+(((sourceUsageYearName:("2018")+AND+sourcePlanId:(225))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:(225)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=3 +2023-09-14 11:46:15.420 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018")+AND+destinationPlanId:(227))-(sourceUsageYearName:("2018")+AND+sourcePlanId:(227)))+OR+(((sourceUsageYearName:("2018")+AND+sourcePlanId:(227))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:(227)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:15.421 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2018")+AND+sourcePlanId:("227"))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:("227")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 11:46:15.422 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2018")+AND+sourcePlanId:("225"))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:("225")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=5 +2023-09-14 11:46:15.458 INFO (qtp1581078471-23) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013332855750656)} 0 1 +2023-09-14 11:46:15.461 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:46:15.463 INFO (qtp1581078471-23) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013332862042112)} 0 1 +2023-09-14 11:46:15.466 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:46:15.629 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018")+AND+destinationPlanId:(228))-(sourceUsageYearName:("2018")+AND+sourcePlanId:(228)))+OR+(((sourceUsageYearName:("2018")+AND+sourcePlanId:(228))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:(228)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 11:46:15.629 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018")+AND+destinationPlanId:(230))-(sourceUsageYearName:("2018")+AND+sourcePlanId:(230)))+OR+(((sourceUsageYearName:("2018")+AND+sourcePlanId:(230))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:(230)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 11:46:15.629 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2018")+AND+sourcePlanId:("230"))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:("230")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 11:46:15.629 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2018")+AND+sourcePlanId:("228"))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:("228")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 11:46:15.651 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013333058125824)} 0 1 +2023-09-14 11:46:15.653 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:46:15.655 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013333063368704)} 0 0 +2023-09-14 11:46:15.657 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:46:15.884 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[50 (1777013333295104000), 51 (1777013333301395456), 52 (1777013333302444032), 53 (1777013333303492608), 54 (1777013333303492609)]} 0 9 +2023-09-14 11:46:15.925 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:46:15.925 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:15.925 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:15.925 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=2,uses=0} +2023-09-14 11:46:15.925 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4446,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:46:15.925 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:15.925 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:46:15.925 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:46:15.925 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:46:15.931 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:46:15.931 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:46:15.934 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:46:15.934 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:46:15.937 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:46:15.937 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:46:15.941 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:46:15.941 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:46:15.946 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:46:15.946 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 54 +2023-09-14 11:46:15.959 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2021")+AND+sourcePlanId:("232"))+AND+(destinationUsageYearName:("2021")+AND+destinationPlanId:("232")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 11:46:15.961 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2021")+AND+destinationPlanId:(232))-(sourceUsageYearName:("2021")+AND+sourcePlanId:(232)))+OR+(((sourceUsageYearName:("2021")+AND+sourcePlanId:(232))+AND+(destinationUsageYearName:("2021")+AND+destinationPlanId:(232)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=4 +2023-09-14 11:46:15.981 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2021")+AND+sourcePlanId:("232"))+AND+(destinationUsageYearName:("2021")+AND+destinationPlanId:("232")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:15.981 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2021")+AND+destinationPlanId:(232))-(sourceUsageYearName:("2021")+AND+sourcePlanId:(232)))+OR+(((sourceUsageYearName:("2021")+AND+sourcePlanId:(232))+AND+(destinationUsageYearName:("2021")+AND+destinationPlanId:(232)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 11:46:15.994 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013333417787392)} 0 1 +2023-09-14 11:46:15.997 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:15.997 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:15.997 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:15.997 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:15.997 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:15.997 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:15.997 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:46:15.997 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:46:15.997 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:46:16.001 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:46:16.001 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:46:16.004 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:46:16.004 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:46:16.009 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:46:16.009 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:46:16.012 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:46:16.012 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:46:16.017 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:46:16.022 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 27 +2023-09-14 11:46:16.025 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013333451341824)} 0 1 +2023-09-14 11:46:16.028 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:46:16.248 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[55 (1777013333680979968), 56 (1777013333684125696), 57 (1777013333685174272), 58 (1777013333685174273), 59 (1777013333686222848)]} 0 6 +2023-09-14 11:46:16.278 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:46:16.278 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.278 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.278 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.278 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=2,uses=0} +2023-09-14 11:46:16.278 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4446,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:46:16.278 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:46:16.278 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:46:16.278 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:46:16.283 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:46:16.283 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:46:16.286 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:46:16.286 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:46:16.289 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:46:16.289 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:46:16.292 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:46:16.292 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:46:16.299 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:46:16.299 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 44 +2023-09-14 11:46:16.309 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourceLocationBehavior:single+OR+(*:*+-sourceLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourceLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourceLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourceLocationIdNameConcat"},"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2018"))+AND+(destinationUsageYearName:("2018")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=3 +2023-09-14 11:46:16.311 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018"))-(sourceUsageYearName:("2018")))+OR+(((sourceUsageYearName:("2018"))+AND+(destinationUsageYearName:("2018")))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=5 +2023-09-14 11:46:16.327 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013333766963200)} 0 2 +2023-09-14 11:46:16.331 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.331 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.331 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.331 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.331 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.331 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.331 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:46:16.331 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:46:16.331 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:46:16.335 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:46:16.335 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:46:16.339 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:46:16.339 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:46:16.344 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:46:16.344 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:46:16.347 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:46:16.347 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:46:16.353 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:46:16.356 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 27 +2023-09-14 11:46:16.359 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013333801566208)} 0 1 +2023-09-14 11:46:16.364 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 3 +2023-09-14 11:46:16.578 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[60 (1777013334024912896), 61 (1777013334028058624), 62 (1777013334029107200), 63 (1777013334030155776), 64 (1777013334030155777)]} 0 7 +2023-09-14 11:46:16.631 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:46:16.631 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.631 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.631 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.631 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4446,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:46:16.631 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=2,uses=0} +2023-09-14 11:46:16.631 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:46:16.631 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:46:16.631 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:46:16.648 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:46:16.648 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:46:16.651 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:46:16.651 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:46:16.655 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:46:16.655 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:46:16.658 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:46:16.658 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:46:16.663 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:46:16.663 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 78 +2023-09-14 11:46:16.675 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018"))-(sourceUsageYearName:("2018")))+OR+(((sourceUsageYearName:("2018"))+AND+(destinationUsageYearName:("2018")))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=3 +2023-09-14 11:46:16.695 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013334152839168)} 0 2 +2023-09-14 11:46:16.699 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.699 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.699 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.699 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.699 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.699 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.699 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:46:16.699 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:46:16.699 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:46:16.704 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:46:16.704 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:46:16.709 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:46:16.710 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:46:16.713 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:46:16.714 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:46:16.717 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:46:16.717 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:46:16.723 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:46:16.726 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 29 +2023-09-14 11:46:16.729 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013334189539328)} 0 1 +2023-09-14 11:46:16.732 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:46:16.942 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[65 (1777013334408691712), 66 (1777013334411837440), 67 (1777013334412886016), 68 (1777013334412886017), 69 (1777013334413934592)]} 0 5 +2023-09-14 11:46:16.970 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:46:16.970 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.970 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.970 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:16.970 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4446,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:46:16.970 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=2,uses=0} +2023-09-14 11:46:16.970 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:46:16.970 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:46:16.970 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:46:16.975 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:46:16.975 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:46:16.978 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:46:16.978 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:46:16.981 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:46:16.982 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:46:16.985 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:46:16.985 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:46:16.991 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:46:16.992 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 46 +2023-09-14 11:46:17.013 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"},"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourcePlanId:("240"+OR+"242"))+AND+(destinationPlanId:("240"+OR+"242")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=3 +2023-09-14 11:46:17.017 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(240+OR+242))-(sourcePlanId:(240+OR+242)))+OR+(((sourcePlanId:(240+OR+242))+AND+(destinationPlanId:(240+OR+242)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=7 +2023-09-14 11:46:17.017 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:("240"+OR+"242"))-(sourcePlanId:("240"+OR+"242")))+OR+(((sourcePlanId:("240"+OR+"242"))+AND+(destinationPlanId:("240"+OR+"242")))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=4 +2023-09-14 11:46:17.017 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:("240"+OR+"242"))-(sourcePlanId:("240"+OR+"242")))+OR+(((sourcePlanId:("240"+OR+"242"))+AND+(destinationPlanId:("240"+OR+"242")))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=7 +2023-09-14 11:46:17.047 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013334521937920)} 0 2 +2023-09-14 11:46:17.050 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:17.050 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:17.050 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:17.050 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:17.050 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:17.050 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:17.050 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:46:17.050 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:46:17.050 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:46:17.054 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:46:17.054 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:46:17.057 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:46:17.057 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:46:17.062 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:46:17.062 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:46:17.066 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:46:17.066 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:46:17.072 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:46:17.075 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 27 +2023-09-14 11:46:17.078 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013334555492352)} 0 1 +2023-09-14 11:46:17.080 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:46:17.239 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(244))-(sourcePlanId:(244)))+OR+(((sourcePlanId:(244))+AND+(destinationPlanId:(244)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:17.239 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(244))-(sourcePlanId:(244)))+OR+(((sourcePlanId:(244))+AND+(destinationPlanId:(244)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:17.258 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013334744236032)} 0 1 +2023-09-14 11:46:17.260 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 11:46:17.262 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013334749478912)} 0 0 +2023-09-14 11:46:17.264 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:46:17.425 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(247))-(sourcePlanId:(247)))+OR+(((sourcePlanId:(247))+AND+(destinationPlanId:(247)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:17.425 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(247))-(sourcePlanId:(247)))+OR+(((sourcePlanId:(247))+AND+(destinationPlanId:(247)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:17.457 INFO (qtp1581078471-23) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013334952902656)} 0 1 +2023-09-14 11:46:17.459 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:46:17.461 INFO (qtp1581078471-23) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013334957096960)} 0 0 +2023-09-14 11:46:17.462 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 11:46:17.650 INFO (qtp1581078471-23) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013335155277824)} 0 1 +2023-09-14 11:46:17.652 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:46:17.655 INFO (qtp1581078471-23) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013335160520704)} 0 0 +2023-09-14 11:46:17.656 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 11:46:45.692 INFO (qtp1581078471-23) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013364556300288)} 0 5 +2023-09-14 11:46:45.696 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:46:45.812 INFO (qtp1581078471-23) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013364685275136)} 0 1 +2023-09-14 11:46:45.814 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 11:46:46.072 INFO (qtp1581078471-23) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[85 (1777013364951613440), 86 (1777013364956856320), 87 (1777013364956856321), 88 (1777013364957904896), 89 (1777013364957904897)]} 0 7 +2023-09-14 11:46:46.117 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:46:46.117 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4351,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=2,uses=0} +2023-09-14 11:46:46.117 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4350,tindexSize=42,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=1,uses=0} +2023-09-14 11:46:46.117 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4350,tindexSize=42,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-14 11:46:46.117 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:46:46.117 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4426,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=1,termInstances=0,uses=0} +2023-09-14 11:46:46.117 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:46:46.118 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:46:46.118 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:46:46.123 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:46:46.123 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:46:46.127 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:46:46.127 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:46:46.136 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:46:46.136 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:46:46.142 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:46:46.142 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:46:46.148 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:46:46.149 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 69 +2023-09-14 11:46:46.167 INFO (qtp1581078471-47) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2023))-(sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2023)))+OR+(((sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2023))+AND+(destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2023)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:46.168 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2022))-(sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2022)))+OR+(((sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2022))+AND+(destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2022)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=3 +2023-09-14 11:46:46.169 INFO (qtp1581078471-46) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("68")+AND+sourceUsageYearName:("2023"))+AND+(destinationGlobalClusterId:("68")+AND+destinationUsageYearName:("2023")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 11:46:46.169 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2020))-(sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2020)))+OR+(((sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2020))+AND+(destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2020)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=6 +2023-09-14 11:46:46.169 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("68")+AND+sourceUsageYearName:("2021"))+AND+(destinationGlobalClusterId:("68")+AND+destinationUsageYearName:("2021")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=6 +2023-09-14 11:46:46.169 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("68")+AND+sourceUsageYearName:("2022"))+AND+(destinationGlobalClusterId:("68")+AND+destinationUsageYearName:("2022")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=6 +2023-09-14 11:46:46.169 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2021))-(sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2021)))+OR+(((sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2021))+AND+(destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2021)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=7 +2023-09-14 11:46:46.172 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("68")+AND+sourceUsageYearName:("2020"))+AND+(destinationGlobalClusterId:("68")+AND+destinationUsageYearName:("2020")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=9 +2023-09-14 11:46:46.182 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"},"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2020))-(sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2020)))+OR+(((sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2020))+AND+(destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2020)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=4 +2023-09-14 11:46:46.183 INFO (qtp1581078471-45) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"},"sourceLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourceLocationBehavior:single+OR+(*:*+-sourceLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourceLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourceLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourceLocationIdNameConcat"},"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("68")+AND+sourceUsageYearName:("2020"))+AND+(destinationGlobalClusterId:("68")+AND+destinationUsageYearName:("2020")))+AND+newMoney:false))&rows=0&wt=json&s... +2023-09-14 11:46:46.188 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationPlanId:(300)+AND+destinationUsageYearName:(2020))-(sourceGlobalClusterId:(68)+AND+sourcePlanId:(300)+AND+sourceUsageYearName:(2020)))+OR+(((sourceGlobalClusterId:(68)+AND+sourcePlanId:(300)+AND+sourceUsageYearName:(2020))+AND+(destinationGlobalClusterId:(68)+AND+destinationPlanId:(300)+AND+destinationUsageYearName:(2020)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-14 11:46:46.192 INFO (qtp1581078471-45) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourceLocationBehavior:single+OR+(*:*+-sourceLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourceLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourceLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourceLocationIdNameConcat"},"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("68")+AND+sourcePlanId:("300")+AND+sourceUsageYearName:("2020"))+AND+(destinationGlobalClusterId:("68")+AND+destinationPlanId:("300")+AND+destinationUsageYearName:("2020")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=5 +2023-09-14 11:46:46.196 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2020))-(sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2020)))+OR+(((sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2020))+AND+(destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2020)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 11:46:46.200 INFO (qtp1581078471-45) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationPlanId:(300)+AND+destinationUsageYearName:(2020))-(sourceGlobalClusterId:(68)+AND+sourcePlanId:(300)+AND+sourceUsageYearName:(2020)))+OR+(((sourceGlobalClusterId:(68)+AND+sourcePlanId:(300)+AND+sourceUsageYearName:(2020))+AND+(destinationGlobalClusterId:(68)+AND+destinationPlanId:(300)+AND+destinationUsageYearName:(2020)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 11:46:46.228 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationGlobalCluster":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationGlobalClusterIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(300))-(sourcePlanId:(300)))+OR+(((sourcePlanId:(300))+AND+(destinationPlanId:(300)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=2 +2023-09-14 11:46:46.228 INFO (qtp1581078471-45) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceGlobalCluster":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourceGlobalClusterIdNameConcat"},"destinationGlobalCluster":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationGlobalClusterIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourcePlanId:("300"))+AND+(destinationPlanId:("300")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-14 11:46:46.249 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013365142454272)} 0 1 +2023-09-14 11:46:46.252 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:46.252 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:46.252 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:46.252 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:46.252 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:46.252 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:46.252 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:46:46.252 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:46:46.252 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:46:46.256 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:46:46.256 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:46:46.259 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:46:46.259 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:46:46.264 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:46:46.264 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:46:46.268 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:46:46.268 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:46:46.272 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:46:46.274 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 24 +2023-09-14 11:46:46.277 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013365173911552)} 0 0 +2023-09-14 11:46:46.279 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 11:46:46.490 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[90 (1777013365392015360), 91 (1777013365395161088), 92 (1777013365395161089), 93 (1777013365396209664), 94 (1777013365396209665)]} 0 5 +2023-09-14 11:46:46.561 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4350,tindexSize=42,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=1,uses=0} +2023-09-14 11:46:46.561 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:46:46.561 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4350,tindexSize=42,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-14 11:46:46.561 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:46:46.562 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4426,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=1,termInstances=0,uses=0} +2023-09-14 11:46:46.562 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4351,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=2,uses=0} +2023-09-14 11:46:46.562 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:46:46.562 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:46:46.562 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:46:46.567 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:46:46.567 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:46:46.571 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:46:46.571 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:46:46.574 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:46:46.574 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:46:46.578 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:46:46.578 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:46:46.586 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 1 ms +2023-09-14 11:46:46.586 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 90 +2023-09-14 11:46:46.606 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013365516795904)} 0 2 +2023-09-14 11:46:46.609 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:46.609 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:46.609 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:46.609 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:46.609 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:46.609 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:46.609 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:46:46.609 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:46:46.609 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:46:46.612 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:46:46.612 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:46:46.614 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:46:46.614 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:46:46.618 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:46:46.618 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:46:46.622 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:46:46.622 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:46:46.626 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:46:46.629 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 21 +2023-09-14 11:46:46.632 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013365545107456)} 0 1 +2023-09-14 11:46:46.634 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 11:46:51.620 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[95 (1777013370771210240), 96 (1777013370774355968), 97 (1777013370775404544), 98 (1777013370775404545), 99 (1777013370776453120)]} 0 5 +2023-09-14 11:46:51.693 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:51.693 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:46:51.693 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:51.693 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:46:51.693 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4351,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-14 11:46:51.694 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:51.694 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:46:51.694 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:46:51.694 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:46:51.699 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:46:51.699 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:46:51.702 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:46:51.702 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:46:51.706 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:46:51.706 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:46:51.710 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:46:51.710 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:46:51.714 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:46:51.714 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 88 +2023-09-14 11:46:51.753 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2016)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2016)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2016)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2016)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 11:46:51.754 INFO (qtp1581078471-46) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2018)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2018)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2018)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2018)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:51.754 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2019)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2019)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2019)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2019)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:51.754 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2022)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2022)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2022)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2022)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:51.754 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2014)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2014)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2014)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2014)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=4 +2023-09-14 11:46:51.755 INFO (qtp1581078471-47) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2017)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2017)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2017)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2017)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 11:46:51.756 INFO (qtp1581078471-17) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4446,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 11:46:51.756 INFO (qtp1581078471-17) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2021)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2021)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2021)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2021)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=5 +2023-09-14 11:46:51.757 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2020)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2020)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2020)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2020)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 11:46:51.757 INFO (qtp1581078471-46) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2012)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2012)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2012)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2012)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=3 +2023-09-14 11:46:51.758 INFO (qtp1581078471-45) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2013)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2013)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2013)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2013)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=7 +2023-09-14 11:46:51.758 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2015)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2015)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2015)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2015)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=7 +2023-09-14 11:46:51.763 INFO (qtp1581078471-47) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(303)+AND+destinationLocationId:(107))-(sourcePlanId:(303)+AND+sourceLocationId:(107)))+OR+(((sourcePlanId:(303)+AND+sourceLocationId:(107))+AND+(destinationPlanId:(303)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 11:46:51.783 INFO (qtp1581078471-47) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2016)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2016)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2016)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2016)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:51.783 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2012)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2012)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2012)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2012)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:51.783 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2015)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2015)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2015)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2015)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 11:46:51.783 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2020)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2020)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2020)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2020)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:51.784 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2022)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2022)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2022)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2022)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 11:46:51.810 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2018)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2018)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2018)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2018)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=25 +2023-09-14 11:46:51.811 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2017)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2017)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2017)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2017)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:51.811 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2019)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2019)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2019)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2019)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 11:46:51.812 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2014)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2014)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2014)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2014)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 11:46:51.812 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2021)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2021)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2021)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2021)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:51.813 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2013)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2013)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2013)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2013)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 11:46:51.813 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(304)+AND+destinationLocationId:(108))-(sourcePlanId:(304)+AND+sourceLocationId:(108)))+OR+(((sourcePlanId:(304)+AND+sourceLocationId:(108))+AND+(destinationPlanId:(304)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 11:46:51.845 INFO (qtp1581078471-44) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013371009236992)} 0 2 +2023-09-14 11:46:51.848 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:51.848 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:51.848 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:51.848 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:51.848 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:51.848 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:51.848 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:46:51.848 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:46:51.848 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:46:51.848 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:46:51.852 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:46:51.852 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:46:51.856 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:46:51.856 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:46:51.861 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:46:51.861 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:46:51.865 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:46:51.865 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:46:51.872 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:46:51.874 INFO (qtp1581078471-51) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 28 +2023-09-14 11:46:57.687 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=newMoney&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("pledge")&fq=((((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:false))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:57.687 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=(((sourcePlanId:(306))-(destinationPlanId:(306))))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:57.687 INFO (qtp1581078471-45) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("pledge")&fq=((((destinationPlanId:(306))-(sourcePlanId:(306)))+OR+(((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 11:46:57.687 INFO (qtp1581078471-47) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("pledge")&fq=((((destinationPlanId:(306))-(sourcePlanId:(306)))+OR+(((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 11:46:57.687 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=newMoney&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("pledge")&fq=((((destinationPlanId:(306))-(sourcePlanId:(306)))+OR+(((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 11:46:57.688 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(306))-(sourcePlanId:(306)))+OR+(((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=3 +2023-09-14 11:46:57.688 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=newMoney&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(306))-(sourcePlanId:(306)))+OR+(((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 11:46:57.688 INFO (qtp1581078471-51) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(306))-(sourcePlanId:(306)))+OR+(((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 11:46:57.688 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("pledge")&fq=(((sourcePlanId:(306))-(destinationPlanId:(306))))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 11:46:57.689 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=newMoney&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:false))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=4 +2023-09-14 11:55:30.980 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=3 +2023-09-14 11:55:39.626 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013924425629696)} 0 6 +2023-09-14 11:55:39.630 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:55:39.764 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013924574527488)} 0 1 +2023-09-14 11:55:39.767 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 11:55:39.905 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-64 (1777013924718182400)]} 0 5 +2023-09-14 11:55:39.916 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-60 (1777013924734959616)]} 0 0 +2023-09-14 11:55:39.928 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-54 (1777013924747542528)]} 0 0 +2023-09-14 11:55:39.937 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-65 (1777013924756979712)]} 0 0 +2023-09-14 11:55:39.946 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-61 (1777013924766416896)]} 0 0 +2023-09-14 11:55:39.955 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-55 (1777013924774805504)]} 0 0 +2023-09-14 11:55:39.964 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-67 (1777013924784242688)]} 0 0 +2023-09-14 11:55:39.971 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-72 (1777013924792631296)]} 0 0 +2023-09-14 11:55:39.979 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-57 (1777013924801019904)]} 0 0 +2023-09-14 11:55:39.987 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-71 (1777013924808359936)]} 0 0 +2023-09-14 11:55:39.996 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-59 (1777013924817797120)]} 0 0 +2023-09-14 11:55:40.004 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-68 (1777013924826185728)]} 0 0 +2023-09-14 11:55:40.018 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-66 (1777013924841914368)]} 0 0 +2023-09-14 11:55:40.027 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-63 (1777013924851351552)]} 0 0 +2023-09-14 11:55:40.035 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-62 (1777013924859740160)]} 0 0 +2023-09-14 11:55:40.043 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-70 (1777013924867080192)]} 0 0 +2023-09-14 11:55:40.051 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-58 (1777013924875468800)]} 0 0 +2023-09-14 11:55:40.059 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-69 (1777013924883857408)]} 0 0 +2023-09-14 11:55:40.067 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-73 (1777013924893294592)]} 0 0 +2023-09-14 11:55:40.076 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-56 (1777013924901683200)]} 0 0 +2023-09-14 11:55:40.115 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.115 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.115 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.115 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.115 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.115 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.115 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.115 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:55:40.115 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:55:40.115 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:55:40.123 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:55:40.123 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:55:40.126 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:55:40.126 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:55:40.131 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:55:40.131 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:55:40.134 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:55:40.134 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:55:40.142 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:55:40.142 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 61 +2023-09-14 11:55:40.152 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=*&sort=id+asc&rows=100000&wt=json} hits=20 status=0 QTime=1 +2023-09-14 11:55:40.155 INFO (qtp1581078471-47) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=AoEqcHJvamVjdC03Mw%3D%3D&sort=id+asc&rows=100000&wt=json} hits=20 status=0 QTime=0 +2023-09-14 11:55:40.160 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={solrVersion=5.1&core=fts&path=/solr&port=8983&host=solr&wt=json}{deleteByQuery=projectId:(55 56 57 58 59) (-1777013924987666432)} 0 3 +2023-09-14 11:55:40.167 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.167 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.167 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.167 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.167 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.167 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.167 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.167 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:55:40.167 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:55:40.167 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:55:40.171 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:55:40.171 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:55:40.175 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:55:40.175 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:55:40.178 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:55:40.178 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:55:40.182 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:55:40.182 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:55:40.187 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:55:40.187 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 25 +2023-09-14 11:55:40.193 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={solrVersion=5.1&core=fts&path=/solr&port=8983&host=solr&wt=json}{deleteByQuery=projectId:(60 61 62) (-1777013925021220864)} 0 4 +2023-09-14 11:55:40.200 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.200 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.200 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.200 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.200 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.200 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.200 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.200 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:55:40.200 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:55:40.200 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:55:40.204 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:55:40.204 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:55:40.207 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:55:40.208 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:55:40.213 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:55:40.213 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:55:40.217 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:55:40.217 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:55:40.222 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:55:40.223 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 28 +2023-09-14 11:55:40.228 INFO (qtp1581078471-47) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&wt=json} hits=12 status=0 QTime=1 +2023-09-14 11:55:40.246 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013925076795392)} 0 4 +2023-09-14 11:55:40.250 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.250 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.250 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.250 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.250 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.250 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.250 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.250 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:55:40.250 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:55:40.250 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:55:40.255 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:55:40.255 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:55:40.258 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:55:40.258 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:55:40.263 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:55:40.263 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:55:40.266 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:55:40.266 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:55:40.272 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:55:40.274 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 26 +2023-09-14 11:55:40.277 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013925112446976)} 0 1 +2023-09-14 11:55:40.279 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 11:55:40.332 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-76 (1777013925169070080)]} 0 2 +2023-09-14 11:55:40.340 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-75 (1777013925178507264)]} 0 0 +2023-09-14 11:55:40.350 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-77 (1777013925190041600)]} 0 0 +2023-09-14 11:55:40.358 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-78 (1777013925198430208)]} 0 0 +2023-09-14 11:55:40.366 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-79 (1777013925206818816)]} 0 0 +2023-09-14 11:55:40.374 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-74 (1777013925214158848)]} 0 0 +2023-09-14 11:55:40.395 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.395 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.395 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.395 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.395 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.395 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.395 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.395 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:55:40.395 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:55:40.395 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:55:40.399 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:55:40.399 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:55:40.403 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:55:40.403 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:55:40.407 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:55:40.407 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:55:40.412 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:55:40.412 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:55:40.416 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:55:40.417 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 39 +2023-09-14 11:55:40.420 INFO (qtp1581078471-47) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=*&sort=id+asc&rows=100000&wt=json} hits=6 status=0 QTime=0 +2023-09-14 11:55:40.423 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=AoEqcHJvamVjdC03OQ%3D%3D&sort=id+asc&rows=100000&wt=json} hits=6 status=0 QTime=0 +2023-09-14 11:55:40.426 INFO (qtp1581078471-47) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&rows=10&wt=json} hits=6 status=0 QTime=0 +2023-09-14 11:55:40.433 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013925276024832)} 0 1 +2023-09-14 11:55:40.438 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.438 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.438 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.438 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.438 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.438 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.438 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:55:40.438 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:55:40.438 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:55:40.438 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:55:40.447 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:55:40.447 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:55:40.453 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:55:40.453 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:55:40.458 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:55:40.458 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:55:40.462 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:55:40.462 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:55:40.467 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:55:40.475 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 40 +2023-09-14 11:55:40.478 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777013925323210752)} 0 1 +2023-09-14 11:55:40.481 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 11:57:10.662 INFO (qtp1581078471-47) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=6 +2023-09-14 11:57:19.211 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014028845973504)} 0 8 +2023-09-14 11:57:19.215 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 11:57:19.349 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014028995919872)} 0 1 +2023-09-14 11:57:19.351 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 11:57:19.491 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-73 (1777014029140623360)]} 0 6 +2023-09-14 11:57:19.502 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-67 (1777014029157400576)]} 0 0 +2023-09-14 11:57:19.521 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-56 (1777014029177323520)]} 0 1 +2023-09-14 11:57:19.534 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-59 (1777014029192003584)]} 0 0 +2023-09-14 11:57:19.544 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-71 (1777014029202489344)]} 0 0 +2023-09-14 11:57:19.553 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-60 (1777014029211926528)]} 0 0 +2023-09-14 11:57:19.562 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-68 (1777014029221363712)]} 0 0 +2023-09-14 11:57:19.571 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-64 (1777014029230800896)]} 0 0 +2023-09-14 11:57:19.581 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-58 (1777014029240238080)]} 0 0 +2023-09-14 11:57:19.589 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-72 (1777014029249675264)]} 0 0 +2023-09-14 11:57:19.597 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-54 (1777014029258063872)]} 0 0 +2023-09-14 11:57:19.605 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-63 (1777014029265403904)]} 0 0 +2023-09-14 11:57:19.613 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-70 (1777014029274841088)]} 0 0 +2023-09-14 11:57:19.624 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-57 (1777014029285326848)]} 0 0 +2023-09-14 11:57:19.631 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-66 (1777014029293715456)]} 0 0 +2023-09-14 11:57:19.639 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-55 (1777014029302104064)]} 0 0 +2023-09-14 11:57:19.646 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-61 (1777014029309444096)]} 0 0 +2023-09-14 11:57:19.654 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-69 (1777014029317832704)]} 0 0 +2023-09-14 11:57:19.661 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-62 (1777014029325172736)]} 0 0 +2023-09-14 11:57:19.669 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-65 (1777014029333561344)]} 0 0 +2023-09-14 11:57:19.700 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.700 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.700 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.701 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.701 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.701 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.701 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.701 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:57:19.701 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:57:19.701 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:57:19.710 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:57:19.710 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:57:19.714 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:57:19.714 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:57:19.717 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:57:19.717 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:57:19.720 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:57:19.720 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:57:19.726 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:57:19.727 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 52 +2023-09-14 11:57:19.737 INFO (qtp1581078471-47) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=*&sort=id+asc&rows=100000&wt=json} hits=20 status=0 QTime=1 +2023-09-14 11:57:19.739 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=AoEqcHJvamVjdC03Mw%3D%3D&sort=id+asc&rows=100000&wt=json} hits=20 status=0 QTime=0 +2023-09-14 11:57:19.744 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={solrVersion=5.1&core=fts&path=/solr&port=8983&host=solr&wt=json}{deleteByQuery=projectId:(55 56 57 58 59) (-1777014029410107392)} 0 2 +2023-09-14 11:57:19.749 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.749 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.749 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.749 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.750 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.750 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.750 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.750 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:57:19.750 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:57:19.750 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:57:19.755 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:57:19.755 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:57:19.759 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:57:19.759 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:57:19.762 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:57:19.762 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:57:19.767 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:57:19.767 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:57:19.771 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:57:19.771 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 25 +2023-09-14 11:57:19.775 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={solrVersion=5.1&core=fts&path=/solr&port=8983&host=solr&wt=json}{deleteByQuery=projectId:(60 61 62) (-1777014029442613248)} 0 2 +2023-09-14 11:57:19.785 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.785 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.785 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.785 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.785 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.785 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.785 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.786 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:57:19.786 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:57:19.786 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:57:19.791 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:57:19.791 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:57:19.798 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:57:19.798 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:57:19.802 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:57:19.802 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:57:19.806 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:57:19.806 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:57:19.812 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:57:19.813 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 34 +2023-09-14 11:57:19.817 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&wt=json} hits=12 status=0 QTime=1 +2023-09-14 11:57:19.831 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014029502382080)} 0 1 +2023-09-14 11:57:19.836 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.836 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.836 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.836 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.836 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.836 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.836 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.836 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:57:19.836 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:57:19.836 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:57:19.842 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:57:19.842 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:57:19.845 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:57:19.845 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:57:19.848 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:57:19.848 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:57:19.851 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:57:19.851 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:57:19.855 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:57:19.855 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 22 +2023-09-14 11:57:19.859 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014029530693632)} 0 2 +2023-09-14 11:57:19.862 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 11:57:19.912 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-78 (1777014029586268160)]} 0 2 +2023-09-14 11:57:19.919 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-74 (1777014029595705344)]} 0 0 +2023-09-14 11:57:19.927 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-77 (1777014029604093952)]} 0 0 +2023-09-14 11:57:19.934 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-75 (1777014029611433984)]} 0 0 +2023-09-14 11:57:19.941 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-79 (1777014029618774016)]} 0 0 +2023-09-14 11:57:19.948 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-76 (1777014029625065472)]} 0 0 +2023-09-14 11:57:19.967 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.967 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.967 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.967 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.967 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.967 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.967 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:19.967 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:57:19.967 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:57:19.967 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:57:19.972 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:57:19.972 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:57:19.975 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:57:19.975 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:57:19.979 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:57:19.979 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:57:19.982 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:57:19.982 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:57:19.988 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:57:19.988 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 37 +2023-09-14 11:57:19.990 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=*&sort=id+asc&rows=100000&wt=json} hits=6 status=0 QTime=0 +2023-09-14 11:57:19.992 INFO (qtp1581078471-47) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=AoEqcHJvamVjdC03OQ%3D%3D&sort=id+asc&rows=100000&wt=json} hits=6 status=0 QTime=0 +2023-09-14 11:57:19.997 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&rows=10&wt=json} hits=6 status=0 QTime=0 +2023-09-14 11:57:20.004 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014029681688576)} 0 2 +2023-09-14 11:57:20.007 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:20.007 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:20.007 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:20.007 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:20.007 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:20.007 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:20.007 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 11:57:20.007 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 11:57:20.007 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 11:57:20.007 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 11:57:20.011 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 11:57:20.011 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 11:57:20.014 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 11:57:20.014 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 11:57:20.019 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 11:57:20.019 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 11:57:20.022 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 11:57:20.022 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 11:57:20.029 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 11:57:20.032 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 27 +2023-09-14 11:57:20.035 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014029716291584)} 0 1 +2023-09-14 11:57:20.037 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 12:02:47.167 INFO (qtp1581078471-52) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=5 +2023-09-14 12:02:55.510 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014381482082304)} 0 6 +2023-09-14 12:02:55.513 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 12:02:55.649 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014381633077248)} 0 1 +2023-09-14 12:02:55.652 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:02:55.784 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-61 (1777014381771489280)]} 0 5 +2023-09-14 12:02:55.795 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-64 (1777014381786169344)]} 0 0 +2023-09-14 12:02:55.805 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-54 (1777014381796655104)]} 0 0 +2023-09-14 12:02:55.816 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-70 (1777014381808189440)]} 0 0 +2023-09-14 12:02:55.826 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-71 (1777014381819723776)]} 0 0 +2023-09-14 12:02:55.841 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-55 (1777014381834403840)]} 0 0 +2023-09-14 12:02:55.856 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-72 (1777014381851181056)]} 0 0 +2023-09-14 12:02:55.863 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-65 (1777014381858521088)]} 0 0 +2023-09-14 12:02:55.872 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-63 (1777014381866909696)]} 0 0 +2023-09-14 12:02:55.880 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-73 (1777014381875298304)]} 0 0 +2023-09-14 12:02:55.888 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-66 (1777014381883686912)]} 0 0 +2023-09-14 12:02:55.895 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-67 (1777014381892075520)]} 0 0 +2023-09-14 12:02:55.903 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-62 (1777014381900464128)]} 0 0 +2023-09-14 12:02:55.913 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-57 (1777014381910949888)]} 0 0 +2023-09-14 12:02:55.922 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-60 (1777014381920387072)]} 0 0 +2023-09-14 12:02:55.929 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-58 (1777014381927727104)]} 0 0 +2023-09-14 12:02:55.938 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-69 (1777014381936115712)]} 0 0 +2023-09-14 12:02:55.947 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-59 (1777014381945552896)]} 0 0 +2023-09-14 12:02:55.955 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-68 (1777014381953941504)]} 0 0 +2023-09-14 12:02:55.963 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-56 (1777014381963378688)]} 0 0 +2023-09-14 12:02:55.994 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:55.994 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:55.994 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:55.994 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:55.994 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:55.994 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:55.994 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:55.994 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:02:55.994 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:02:55.994 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:02:56.002 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:02:56.002 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:02:56.005 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:02:56.005 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:02:56.009 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:02:56.009 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:02:56.012 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:02:56.012 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:02:56.019 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:02:56.019 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 50 +2023-09-14 12:02:56.028 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=*&sort=id+asc&rows=100000&wt=json} hits=20 status=0 QTime=1 +2023-09-14 12:02:56.031 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=AoEqcHJvamVjdC03Mw%3D%3D&sort=id+asc&rows=100000&wt=json} hits=20 status=0 QTime=0 +2023-09-14 12:02:56.036 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={solrVersion=5.1&core=fts&path=/solr&port=8983&host=solr&wt=json}{deleteByQuery=projectId:(55 56 57 58 59) (-1777014382036779008)} 0 2 +2023-09-14 12:02:56.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:02:56.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:02:56.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:02:56.045 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:02:56.045 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:02:56.051 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:02:56.051 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:02:56.059 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:02:56.059 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:02:56.072 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:02:56.072 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:02:56.082 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:02:56.083 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 46 +2023-09-14 12:02:56.095 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={solrVersion=5.1&core=fts&path=/solr&port=8983&host=solr&wt=json}{deleteByQuery=projectId:(60 61 62) (-1777014382093402112)} 0 7 +2023-09-14 12:02:56.105 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.105 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.105 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.105 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.105 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.105 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.105 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.106 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:02:56.106 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:02:56.106 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:02:56.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:02:56.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:02:56.115 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:02:56.115 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:02:56.118 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:02:56.118 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:02:56.122 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:02:56.122 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:02:56.127 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:02:56.127 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 30 +2023-09-14 12:02:56.130 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&wt=json} hits=12 status=0 QTime=0 +2023-09-14 12:02:56.146 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014382151073792)} 0 3 +2023-09-14 12:02:56.149 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.149 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.149 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.149 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.149 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.149 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.149 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.149 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:02:56.149 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:02:56.149 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:02:56.153 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:02:56.153 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:02:56.156 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:02:56.156 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:02:56.161 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:02:56.161 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:02:56.164 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:02:56.164 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:02:56.168 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:02:56.170 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 22 +2023-09-14 12:02:56.173 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014382182531072)} 0 1 +2023-09-14 12:02:56.175 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:02:56.225 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-78 (1777014382236008448)]} 0 2 +2023-09-14 12:02:56.233 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-79 (1777014382245445632)]} 0 0 +2023-09-14 12:02:56.242 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-74 (1777014382255931392)]} 0 0 +2023-09-14 12:02:56.250 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-77 (1777014382263271424)]} 0 0 +2023-09-14 12:02:56.257 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-75 (1777014382271660032)]} 0 0 +2023-09-14 12:02:56.265 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-76 (1777014382280048640)]} 0 0 +2023-09-14 12:02:56.289 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.289 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.289 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.289 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.289 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.289 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.289 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.289 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:02:56.289 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:02:56.289 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:02:56.294 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:02:56.294 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:02:56.297 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:02:56.297 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:02:56.302 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:02:56.302 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:02:56.305 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:02:56.305 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:02:56.309 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:02:56.309 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 40 +2023-09-14 12:02:56.312 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=*&sort=id+asc&rows=100000&wt=json} hits=6 status=0 QTime=0 +2023-09-14 12:02:56.315 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=AoEqcHJvamVjdC03OQ%3D%3D&sort=id+asc&rows=100000&wt=json} hits=6 status=0 QTime=0 +2023-09-14 12:02:56.318 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&rows=10&wt=json} hits=6 status=0 QTime=0 +2023-09-14 12:02:56.326 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014382342963200)} 0 1 +2023-09-14 12:02:56.329 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.329 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.329 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.329 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.329 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.329 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.329 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:02:56.329 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:02:56.330 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:02:56.330 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:02:56.333 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:02:56.333 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:02:56.337 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:02:56.337 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:02:56.341 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:02:56.341 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:02:56.344 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:02:56.344 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:02:56.347 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:02:56.350 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 22 +2023-09-14 12:02:56.353 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014382371274752)} 0 1 +2023-09-14 12:02:56.354 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:05:38.623 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=4 +2023-09-14 12:06:06.177 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=2 +2023-09-14 12:06:06.198 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014581425602560)} 0 15 +2023-09-14 12:06:06.211 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=id:(27 OR 28 OR 29) AND docType:flow (-1777014581451816960)} 0 1 +2023-09-14 12:06:06.275 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[25 (1777014581512634368), 26 (1777014581519974400)]} 0 8 +2023-09-14 12:06:06.316 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.316 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.316 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.316 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.316 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.316 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.316 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.316 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:06:06.316 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:06:06.316 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:06:06.324 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:06:06.324 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:06:06.327 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:06:06.327 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:06:06.331 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:06:06.331 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:06:06.335 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:06:06.335 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:06:06.341 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:06:06.342 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 59 +2023-09-14 12:06:06.344 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=2 status=0 QTime=0 +2023-09-14 12:06:06.355 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014581601763328)} 0 2 +2023-09-14 12:06:06.388 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[26 (1777014581636366336)]} 0 2 +2023-09-14 12:06:06.411 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.411 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.411 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.411 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.412 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.412 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.412 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.412 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:06:06.412 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:06:06.412 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:06:06.415 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:06:06.415 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:06:06.418 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:06:06.418 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:06:06.423 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:06:06.423 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:06:06.426 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:06:06.426 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:06:06.430 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:06:06.433 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 40 +2023-09-14 12:06:06.436 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=1 status=0 QTime=0 +2023-09-14 12:06:06.439 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014581691940864)} 0 1 +2023-09-14 12:06:06.445 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=id:(27 OR 28 OR 29) AND docType:flow (-1777014581698232320)} 0 0 +2023-09-14 12:06:06.466 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[26 (1777014581719203840)]} 0 1 +2023-09-14 12:06:06.487 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.487 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.487 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.487 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.487 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.487 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.487 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:06.487 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:06:06.487 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:06:06.487 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:06:06.492 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:06:06.492 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:06:06.495 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:06:06.495 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:06:06.498 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:06:06.498 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:06:06.503 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:06:06.503 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:06:06.510 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:06:06.513 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 43 +2023-09-14 12:06:06.516 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=1 status=0 QTime=0 +2023-09-14 12:06:06.522 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777014581776875520)} 0 2 +2023-09-14 12:06:06.527 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=id:(27 OR 28 OR 29) AND docType:flow (-1777014581783166976)} 0 0 +2023-09-14 12:06:21.536 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:21.536 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:21.536 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:21.536 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:21.536 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:21.537 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:21.537 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:06:21.537 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:06:21.537 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:06:21.537 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:06:21.555 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:06:21.555 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:06:21.562 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:06:21.562 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:06:21.571 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:06:21.571 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:06:21.576 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:06:21.577 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:06:21.586 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 1 ms +2023-09-14 12:14:19.457 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=6 +2023-09-14 12:14:37.714 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015117797392384)} 0 6 +2023-09-14 12:14:37.717 INFO (qtp1581078471-44) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 12:14:37.880 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015117974601728)} 0 1 +2023-09-14 12:14:37.882 INFO (qtp1581078471-44) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:38.060 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2018")+AND+sourcePlanId:("148"))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:("148")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=3 +2023-09-14 12:14:38.060 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018")+AND+destinationPlanId:(146))-(sourceUsageYearName:("2018")+AND+sourcePlanId:(146)))+OR+(((sourceUsageYearName:("2018")+AND+sourcePlanId:(146))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:(146)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=5 +2023-09-14 12:14:38.060 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018")+AND+destinationPlanId:(148))-(sourceUsageYearName:("2018")+AND+sourcePlanId:(148)))+OR+(((sourceUsageYearName:("2018")+AND+sourcePlanId:(148))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:(148)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=5 +2023-09-14 12:14:38.060 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2018")+AND+sourcePlanId:("146"))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:("146")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=5 +2023-09-14 12:14:38.093 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015118198996992)} 0 1 +2023-09-14 12:14:38.095 INFO (qtp1581078471-23) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:38.097 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015118203191296)} 0 0 +2023-09-14 12:14:38.098 INFO (qtp1581078471-23) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:38.244 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018")+AND+destinationPlanId:(151))-(sourceUsageYearName:("2018")+AND+sourcePlanId:(151)))+OR+(((sourceUsageYearName:("2018")+AND+sourcePlanId:(151))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:(151)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 12:14:38.244 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018")+AND+destinationPlanId:(149))-(sourceUsageYearName:("2018")+AND+sourcePlanId:(149)))+OR+(((sourceUsageYearName:("2018")+AND+sourcePlanId:(149))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:(149)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 12:14:38.245 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2018")+AND+sourcePlanId:("151"))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:("151")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:14:38.245 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2018")+AND+sourcePlanId:("149"))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:("149")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:14:38.265 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015118378303488)} 0 1 +2023-09-14 12:14:38.267 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:38.269 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015118383546368)} 0 0 +2023-09-14 12:14:38.271 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:38.490 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[11 (1777015118605844480), 12 (1777015118613184512), 13 (1777015118614233088), 14 (1777015118615281664), 15 (1777015118615281665)]} 0 9 +2023-09-14 12:14:38.598 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:38.599 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:14:38.599 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:38.599 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:38.599 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=2,uses=0} +2023-09-14 12:14:38.599 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4446,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:14:38.599 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:38.599 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:38.599 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:38.599 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:38.607 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:38.607 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:38.611 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:38.611 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:38.615 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:38.615 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:38.620 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:38.620 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:38.633 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 1 ms +2023-09-14 12:14:38.634 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 136 +2023-09-14 12:14:38.659 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2021")+AND+sourcePlanId:("153"))+AND+(destinationUsageYearName:("2021")+AND+destinationPlanId:("153")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=4 +2023-09-14 12:14:38.662 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2021")+AND+destinationPlanId:(153))-(sourceUsageYearName:("2021")+AND+sourcePlanId:(153)))+OR+(((sourceUsageYearName:("2021")+AND+sourcePlanId:(153))+AND+(destinationUsageYearName:("2021")+AND+destinationPlanId:(153)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=6 +2023-09-14 12:14:38.675 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2021")+AND+sourcePlanId:("153"))+AND+(destinationUsageYearName:("2021")+AND+destinationPlanId:("153")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:14:38.676 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2021")+AND+destinationPlanId:(153))-(sourceUsageYearName:("2021")+AND+sourcePlanId:(153)))+OR+(((sourceUsageYearName:("2021")+AND+sourcePlanId:(153))+AND+(destinationUsageYearName:("2021")+AND+destinationPlanId:(153)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 12:14:38.689 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015118822899712)} 0 1 +2023-09-14 12:14:38.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:38.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:38.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:38.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:38.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:38.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:38.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:38.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:38.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:38.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:38.695 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:38.696 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:38.698 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:38.698 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:38.703 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:38.704 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:38.706 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:38.706 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:38.711 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:14:38.713 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 23 +2023-09-14 12:14:38.719 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015118852259840)} 0 4 +2023-09-14 12:14:38.721 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:38.918 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[16 (1777015119051489280), 17 (1777015119060926464), 18 (1777015119061975040), 19 (1777015119063023616), 20 (1777015119064072192)]} 0 13 +2023-09-14 12:14:38.974 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:38.974 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:14:38.974 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:38.974 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:38.974 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:38.975 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=2,uses=0} +2023-09-14 12:14:38.975 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4446,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:14:38.975 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:38.975 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:38.975 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:38.978 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:38.978 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:38.981 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:38.981 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:38.986 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:38.986 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:38.989 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:38.989 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:38.992 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:14:38.992 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 68 +2023-09-14 12:14:39.001 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourceLocationBehavior:single+OR+(*:*+-sourceLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourceLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourceLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourceLocationIdNameConcat"},"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2018"))+AND+(destinationUsageYearName:("2018")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 12:14:39.002 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018"))-(sourceUsageYearName:("2018")))+OR+(((sourceUsageYearName:("2018"))+AND+(destinationUsageYearName:("2018")))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=3 +2023-09-14 12:14:39.016 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015119165784064)} 0 1 +2023-09-14 12:14:39.019 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.019 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.019 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.019 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.019 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.019 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.019 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.019 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:39.019 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:39.019 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:39.023 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:39.023 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:39.026 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:39.026 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:39.029 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:39.029 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:39.034 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:39.034 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:39.038 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:14:39.040 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 22 +2023-09-14 12:14:39.043 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015119195144192)} 0 1 +2023-09-14 12:14:39.045 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:39.249 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[21 (1777015119406956544), 22 (1777015119410102272), 23 (1777015119411150848), 24 (1777015119411150849), 25 (1777015119411150850)]} 0 5 +2023-09-14 12:14:39.332 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.332 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:14:39.332 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.332 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.332 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.333 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4446,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:14:39.333 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=2,uses=0} +2023-09-14 12:14:39.333 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:39.333 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:39.333 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:39.336 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:39.336 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:39.339 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:39.339 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:39.344 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:39.344 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:39.347 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:39.348 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:39.352 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:14:39.352 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 97 +2023-09-14 12:14:39.361 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018"))-(sourceUsageYearName:("2018")))+OR+(((sourceUsageYearName:("2018"))+AND+(destinationUsageYearName:("2018")))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=2 +2023-09-14 12:14:39.382 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015119550611456)} 0 2 +2023-09-14 12:14:39.385 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.385 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.385 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.385 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.385 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.385 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.385 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.385 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:39.385 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:39.385 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:39.389 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:39.389 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:39.392 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:39.392 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:39.396 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:39.396 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:39.400 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:39.400 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:39.403 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:14:39.406 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 22 +2023-09-14 12:14:39.409 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015119578923008)} 0 1 +2023-09-14 12:14:39.410 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:39.657 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[26 (1777015119789686784), 27 (1777015119836872704), 28 (1777015119837921280), 29 (1777015119838969856), 30 (1777015119840018432)]} 0 48 +2023-09-14 12:14:39.743 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.743 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:14:39.743 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.743 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.743 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.743 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4446,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:14:39.743 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=2,uses=0} +2023-09-14 12:14:39.743 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:39.743 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:39.743 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:39.748 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:39.748 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:39.752 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:39.752 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:39.754 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:39.754 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:39.760 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:39.760 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:39.764 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:14:39.764 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 96 +2023-09-14 12:14:39.785 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"},"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourcePlanId:("161"+OR+"163"))+AND+(destinationPlanId:("161"+OR+"163")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 12:14:39.786 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(161+OR+163))-(sourcePlanId:(161+OR+163)))+OR+(((sourcePlanId:(161+OR+163))+AND+(destinationPlanId:(161+OR+163)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=3 +2023-09-14 12:14:39.788 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:("161"+OR+"163"))-(sourcePlanId:("161"+OR+"163")))+OR+(((sourcePlanId:("161"+OR+"163"))+AND+(destinationPlanId:("161"+OR+"163")))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=6 +2023-09-14 12:14:39.788 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:("161"+OR+"163"))-(sourcePlanId:("161"+OR+"163")))+OR+(((sourcePlanId:("161"+OR+"163"))+AND+(destinationPlanId:("161"+OR+"163")))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=6 +2023-09-14 12:14:39.809 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015119998353408)} 0 1 +2023-09-14 12:14:39.812 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.812 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.812 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.812 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.812 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.812 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.812 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:39.812 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:39.812 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:39.812 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:39.816 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:39.816 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:39.819 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:39.819 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:39.824 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:39.824 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:39.828 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:39.828 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:39.832 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:14:39.834 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 23 +2023-09-14 12:14:39.837 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015120027713536)} 0 1 +2023-09-14 12:14:39.838 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:39.972 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(165))-(sourcePlanId:(165)))+OR+(((sourcePlanId:(165))+AND+(destinationPlanId:(165)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:14:39.972 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(165))-(sourcePlanId:(165)))+OR+(((sourcePlanId:(165))+AND+(destinationPlanId:(165)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:14:39.992 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015120190242816)} 0 1 +2023-09-14 12:14:39.994 INFO (qtp1581078471-44) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:39.995 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015120193388544)} 0 0 +2023-09-14 12:14:39.997 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:40.146 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(168))-(sourcePlanId:(168)))+OR+(((sourcePlanId:(168))+AND+(destinationPlanId:(168)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:14:40.146 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(168))-(sourcePlanId:(168)))+OR+(((sourcePlanId:(168))+AND+(destinationPlanId:(168)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:14:40.178 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015120385277952)} 0 1 +2023-09-14 12:14:40.180 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:40.182 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015120389472256)} 0 1 +2023-09-14 12:14:40.184 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:40.328 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015120542564352)} 0 1 +2023-09-14 12:14:40.330 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:40.331 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015120545710080)} 0 0 +2023-09-14 12:14:40.332 INFO (qtp1581078471-44) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:49.114 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015129754304512)} 0 2 +2023-09-14 12:14:49.117 INFO (qtp1581078471-44) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:49.220 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015129866502144)} 0 1 +2023-09-14 12:14:49.221 INFO (qtp1581078471-44) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:49.249 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015129896910848)} 0 1 +2023-09-14 12:14:49.251 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:49.265 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015129913688064)} 0 1 +2023-09-14 12:14:49.267 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:49.281 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015129930465280)} 0 1 +2023-09-14 12:14:49.283 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:14:49.583 INFO (qtp1581078471-44) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[57 (1777015130238746624), 58 (1777015130245038080), 59 (1777015130245038081), 60 (1777015130246086656), 61 (1777015130246086657), 62 (1777015130247135232), 63 (1777015130247135233)]} 0 8 +2023-09-14 12:14:49.647 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4358,tindexSize=42,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=1,uses=0} +2023-09-14 12:14:49.647 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4456,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:14:49.647 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4358,tindexSize=42,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-14 12:14:49.647 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4426,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=1,termInstances=0,uses=0} +2023-09-14 12:14:49.647 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:49.647 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4456,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=3,uses=0} +2023-09-14 12:14:49.647 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4454,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=2,uses=0} +2023-09-14 12:14:49.647 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:49.647 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:49.647 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:49.653 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:49.653 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:49.656 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:49.656 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:49.660 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:49.660 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:49.663 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:49.663 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:49.667 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 1 ms +2023-09-14 12:14:49.667 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 78 +2023-09-14 12:14:49.677 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2020)+AND+destinationPlanId:(181)+AND+destinationGlobalClusterId:(25))-(sourceUsageYearName:(2020)+AND+sourcePlanId:(181)+AND+sourceGlobalClusterId:(25)))+OR+(((sourceUsageYearName:(2020)+AND+sourcePlanId:(181)+AND+sourceGlobalClusterId:(25))+AND+(destinationUsageYearName:(2020)+AND+destinationPlanId:(181)+AND+destinationGlobalClusterId:(25)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-14 12:14:49.681 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2020")+AND+destinationPlanId:("181")+AND+destinationGlobalClusterId:(26))-(sourceUsageYearName:("2020")+AND+sourcePlanId:("181")+AND+sourceGlobalClusterId:(26)))+OR+(((sourceUsageYearName:("2020")+AND+sourcePlanId:("181")+AND+sourceGlobalClusterId:(26))+AND+(destinationUsageYearName:("2020")+AND+destinationPlanId:("181")+AND+destinationGlobalClusterId:(26)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 12:14:49.699 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015130368770048)} 0 1 +2023-09-14 12:14:49.702 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:49.702 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:49.702 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:49.702 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:49.702 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:49.702 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:49.702 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:49.702 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:49.702 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:49.702 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:49.706 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:49.706 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:49.709 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:49.709 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:49.712 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:49.712 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:49.716 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:49.716 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:49.720 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:14:49.722 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 21 +2023-09-14 12:14:49.953 INFO (qtp1581078471-44) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[64 (1777015130630914048), 65 (1777015130634059776), 66 (1777015130634059777), 67 (1777015130635108352), 68 (1777015130635108353), 69 (1777015130635108354), 70 (1777015130636156928)]} 0 5 +2023-09-14 12:14:49.982 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4358,tindexSize=42,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=1,uses=0} +2023-09-14 12:14:49.982 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4456,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:14:49.982 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4426,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=1,termInstances=0,uses=0} +2023-09-14 12:14:49.982 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:49.982 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4456,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=3,uses=0} +2023-09-14 12:14:49.982 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4454,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=2,uses=0} +2023-09-14 12:14:49.982 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4358,tindexSize=42,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-14 12:14:49.983 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:49.983 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:49.983 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:49.987 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:49.987 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:49.991 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:49.991 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:49.994 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:49.994 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:49.997 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:49.997 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:50.001 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:14:50.001 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 43 +2023-09-14 12:14:50.008 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2020)+AND+destinationPlanId:(184)+AND+destinationGlobalClusterId:(27))-(sourceUsageYearName:(2020)+AND+sourcePlanId:(184)+AND+sourceGlobalClusterId:(27)))+OR+(((sourceUsageYearName:(2020)+AND+sourcePlanId:(184)+AND+sourceGlobalClusterId:(27))+AND+(destinationUsageYearName:(2020)+AND+destinationPlanId:(184)+AND+destinationGlobalClusterId:(27)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-14 12:14:50.010 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2020")+AND+destinationPlanId:("184")+AND+destinationGlobalClusterId:(28))-(sourceUsageYearName:("2020")+AND+sourcePlanId:("184")+AND+sourceGlobalClusterId:(28)))+OR+(((sourceUsageYearName:("2020")+AND+sourcePlanId:("184")+AND+sourceGlobalClusterId:(28))+AND+(destinationUsageYearName:("2020")+AND+destinationPlanId:("184")+AND+destinationGlobalClusterId:(28)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=0 +2023-09-14 12:14:50.022 INFO (qtp1581078471-44) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015130707460096)} 0 1 +2023-09-14 12:14:50.025 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:50.025 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:50.025 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:50.025 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:50.025 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:50.025 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:50.025 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:50.025 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:50.025 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:50.025 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:50.028 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:50.028 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:50.031 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:50.031 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:50.034 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:50.034 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:50.039 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:50.039 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:50.042 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:14:50.044 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 21 +2023-09-14 12:14:50.254 INFO (qtp1581078471-44) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[71 (1777015130947584000), 72 (1777015130949681152), 73 (1777015130950729728), 74 (1777015130950729729), 75 (1777015130950729730), 76 (1777015130951778304), 77 (1777015130951778305)]} 0 4 +2023-09-14 12:14:50.281 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4358,tindexSize=42,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=1,uses=0} +2023-09-14 12:14:50.281 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4456,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:14:50.281 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4426,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=1,termInstances=0,uses=0} +2023-09-14 12:14:50.281 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:50.281 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4456,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=3,uses=0} +2023-09-14 12:14:50.281 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4454,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=2,uses=0} +2023-09-14 12:14:50.281 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4358,tindexSize=42,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-14 12:14:50.281 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:50.281 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:50.281 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:50.285 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:50.285 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:50.288 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:50.288 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:50.292 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:50.292 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:50.295 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:50.295 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:50.300 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:14:50.300 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 41 +2023-09-14 12:14:50.308 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2020)+AND+destinationPlanId:(187)+AND+destinationGlobalClusterId:(29))-(sourceUsageYearName:(2020)+AND+sourcePlanId:(187)+AND+sourceGlobalClusterId:(29)))+OR+(((sourceUsageYearName:(2020)+AND+sourcePlanId:(187)+AND+sourceGlobalClusterId:(29))+AND+(destinationUsageYearName:(2020)+AND+destinationPlanId:(187)+AND+destinationGlobalClusterId:(29)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=3 +2023-09-14 12:14:50.308 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"},"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2020")+AND+sourcePlanId:("187")+AND+sourceGlobalClusterId:("29"))+AND+(destinationUsageYearName:("2020")+AND+destinationPlanId:("187")+AND+destinationGlobalClusterId:("29")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=4 +2023-09-14 12:14:50.312 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"},"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2020")+AND+sourcePlanId:("187")+AND+sourceGlobalClusterId:("30"))+AND+(destinationUsageYearName:("2020")+AND+destinationPlanId:("187")+AND+destinationGlobalClusterId:("30")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:14:50.313 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2020")+AND+destinationPlanId:("187")+AND+destinationGlobalClusterId:(30))-(sourceUsageYearName:("2020")+AND+sourcePlanId:("187")+AND+sourceGlobalClusterId:(30)))+OR+(((sourceUsageYearName:("2020")+AND+sourcePlanId:("187")+AND+sourceGlobalClusterId:(30))+AND+(destinationUsageYearName:("2020")+AND+destinationPlanId:("187")+AND+destinationGlobalClusterId:(30)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 12:14:50.324 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015131023081472)} 0 1 +2023-09-14 12:14:50.326 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:50.326 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:50.326 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:50.326 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:50.326 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:50.326 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:50.326 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:50.326 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:50.326 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:50.326 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:50.330 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:50.330 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:50.333 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:50.333 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:50.336 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:50.336 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:50.341 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:50.341 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:50.344 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:14:50.348 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 22 +2023-09-14 12:14:59.418 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[78 (1777015140554637312), 79 (1777015140558831616), 80 (1777015140559880192), 81 (1777015140559880193), 82 (1777015140559880194), 83 (1777015140559880195), 84 (1777015140560928768)]} 0 7 +2023-09-14 12:14:59.467 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:59.467 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4456,tindexSize=44,time=0,phase1=0,nTerms=4,bigTerms=1,termInstances=4,uses=0} +2023-09-14 12:14:59.467 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:59.467 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:59.467 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4456,tindexSize=44,time=0,phase1=0,nTerms=4,bigTerms=1,termInstances=4,uses=0} +2023-09-14 12:14:59.467 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4359,tindexSize=43,time=0,phase1=0,nTerms=7,bigTerms=0,termInstances=7,uses=0} +2023-09-14 12:14:59.467 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4424,tindexSize=42,time=0,phase1=0,nTerms=1,bigTerms=1,termInstances=0,uses=0} +2023-09-14 12:14:59.467 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:59.467 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:59.467 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:59.472 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:59.472 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:59.477 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:59.477 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:59.481 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:59.481 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:59.484 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:59.485 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:59.492 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:14:59.492 INFO (qtp1581078471-44) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 68 +2023-09-14 12:14:59.534 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(209))-(sourcePlanId:(209)))+OR+(((sourcePlanId:(209))+AND+(destinationPlanId:(209)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 12:14:59.546 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(210))-(sourcePlanId:(210)))+OR+(((sourcePlanId:(210))+AND+(destinationPlanId:(210)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=0 +2023-09-14 12:14:59.557 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(211))-(sourcePlanId:(211)))+OR+(((sourcePlanId:(211))+AND+(destinationPlanId:(211)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=0 +2023-09-14 12:14:59.586 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(212))-(sourcePlanId:(212)))+OR+(((sourcePlanId:(212))+AND+(destinationPlanId:(212)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=0 +2023-09-14 12:14:59.619 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(213))-(sourcePlanId:(213)))+OR+(((sourcePlanId:(213))+AND+(destinationPlanId:(213)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=0 +2023-09-14 12:14:59.643 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(214))-(sourcePlanId:(214)))+OR+(((sourcePlanId:(214))+AND+(destinationPlanId:(214)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=0 +2023-09-14 12:14:59.658 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(215))-(sourcePlanId:(215)))+OR+(((sourcePlanId:(215))+AND+(destinationPlanId:(215)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=0 +2023-09-14 12:14:59.695 INFO (qtp1581078471-44) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015140849287168)} 0 1 +2023-09-14 12:14:59.698 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:59.698 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:59.698 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:59.698 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:59.698 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:59.698 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:59.698 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:14:59.698 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:14:59.698 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:14:59.698 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:14:59.701 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:14:59.701 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:14:59.704 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:14:59.704 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:14:59.708 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:14:59.708 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:14:59.712 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:14:59.712 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:14:59.716 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:14:59.719 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 23 +2023-09-14 12:15:16.366 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(236))-(sourcePlanId:(236)))+OR+(((sourcePlanId:(236))+AND+(destinationPlanId:(236)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=5 +2023-09-14 12:15:16.366 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(236))-(sourcePlanId:(236)))+OR+(((sourcePlanId:(236))+AND+(destinationPlanId:(236)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=5 +2023-09-14 12:15:16.447 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(236))-(sourcePlanId:(236)))+OR+(((sourcePlanId:(236))+AND+(destinationPlanId:(236)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:16.447 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(236))-(sourcePlanId:(236)))+OR+(((sourcePlanId:(236))+AND+(destinationPlanId:(236)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:32.224 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015174956318720)} 0 3 +2023-09-14 12:15:32.227 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-14 12:15:32.334 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015175074807808)} 0 1 +2023-09-14 12:15:32.336 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:15:32.585 INFO (qtp1581078471-50) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[85 (1777015175332757504), 86 (1777015175336951808), 87 (1777015175336951809), 88 (1777015175338000384), 89 (1777015175338000385)]} 0 7 +2023-09-14 12:15:32.657 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:32.657 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:15:32.657 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4351,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=2,uses=0} +2023-09-14 12:15:32.657 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4350,tindexSize=42,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=1,uses=0} +2023-09-14 12:15:32.657 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:15:32.658 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4426,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=1,termInstances=0,uses=0} +2023-09-14 12:15:32.658 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4350,tindexSize=42,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-14 12:15:32.658 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:15:32.658 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:15:32.658 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:15:32.662 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:15:32.662 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:15:32.666 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:15:32.666 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:15:32.669 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:15:32.669 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:15:32.672 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:15:32.672 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:15:32.677 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 1 ms +2023-09-14 12:15:32.677 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 85 +2023-09-14 12:15:32.701 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("66")+AND+sourceUsageYearName:("2022"))+AND+(destinationGlobalClusterId:("66")+AND+destinationUsageYearName:("2022")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=3 +2023-09-14 12:15:32.701 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(66)+AND+destinationUsageYearName:(2022))-(sourceGlobalClusterId:(66)+AND+sourceUsageYearName:(2022)))+OR+(((sourceGlobalClusterId:(66)+AND+sourceUsageYearName:(2022))+AND+(destinationGlobalClusterId:(66)+AND+destinationUsageYearName:(2022)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=4 +2023-09-14 12:15:32.701 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(66)+AND+destinationUsageYearName:(2023))-(sourceGlobalClusterId:(66)+AND+sourceUsageYearName:(2023)))+OR+(((sourceGlobalClusterId:(66)+AND+sourceUsageYearName:(2023))+AND+(destinationGlobalClusterId:(66)+AND+destinationUsageYearName:(2023)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:32.701 INFO (qtp1581078471-57) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(66)+AND+destinationUsageYearName:(2021))-(sourceGlobalClusterId:(66)+AND+sourceUsageYearName:(2021)))+OR+(((sourceGlobalClusterId:(66)+AND+sourceUsageYearName:(2021))+AND+(destinationGlobalClusterId:(66)+AND+destinationUsageYearName:(2021)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:32.701 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("66")+AND+sourceUsageYearName:("2023"))+AND+(destinationGlobalClusterId:("66")+AND+destinationUsageYearName:("2023")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=5 +2023-09-14 12:15:32.703 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("66")+AND+sourceUsageYearName:("2021"))+AND+(destinationGlobalClusterId:("66")+AND+destinationUsageYearName:("2021")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=6 +2023-09-14 12:15:32.703 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(66)+AND+destinationUsageYearName:(2020))-(sourceGlobalClusterId:(66)+AND+sourceUsageYearName:(2020)))+OR+(((sourceGlobalClusterId:(66)+AND+sourceUsageYearName:(2020))+AND+(destinationGlobalClusterId:(66)+AND+destinationUsageYearName:(2020)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=7 +2023-09-14 12:15:32.705 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("66")+AND+sourceUsageYearName:("2020"))+AND+(destinationGlobalClusterId:("66")+AND+destinationUsageYearName:("2020")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=7 +2023-09-14 12:15:32.711 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"},"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(66)+AND+destinationUsageYearName:(2020))-(sourceGlobalClusterId:(66)+AND+sourceUsageYearName:(2020)))+OR+(((sourceGlobalClusterId:(66)+AND+sourceUsageYearName:(2020))+AND+(destinationGlobalClusterId:(66)+AND+destinationUsageYearName:(2020)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-14 12:15:32.712 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"},"sourceLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourceLocationBehavior:single+OR+(*:*+-sourceLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourceLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourceLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourceLocationIdNameConcat"},"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("66")+AND+sourceUsageYearName:("2020"))+AND+(destinationGlobalClusterId:("66")+AND+destinationUsageYearName:("2020")))+AND+newMoney:false))&rows=0&wt=json&s... +2023-09-14 12:15:32.716 INFO (qtp1581078471-47) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(66)+AND+destinationPlanId:(281)+AND+destinationUsageYearName:(2020))-(sourceGlobalClusterId:(66)+AND+sourcePlanId:(281)+AND+sourceUsageYearName:(2020)))+OR+(((sourceGlobalClusterId:(66)+AND+sourcePlanId:(281)+AND+sourceUsageYearName:(2020))+AND+(destinationGlobalClusterId:(66)+AND+destinationPlanId:(281)+AND+destinationUsageYearName:(2020)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 12:15:32.718 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourceLocationBehavior:single+OR+(*:*+-sourceLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourceLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourceLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourceLocationIdNameConcat"},"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("66")+AND+sourcePlanId:("281")+AND+sourceUsageYearName:("2020"))+AND+(destinationGlobalClusterId:("66")+AND+destinationPlanId:("281")+AND+destinationUsageYearName:("2020")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-14 12:15:32.721 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(66)+AND+destinationUsageYearName:(2020))-(sourceGlobalClusterId:(66)+AND+sourceUsageYearName:(2020)))+OR+(((sourceGlobalClusterId:(66)+AND+sourceUsageYearName:(2020))+AND+(destinationGlobalClusterId:(66)+AND+destinationUsageYearName:(2020)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 12:15:32.723 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(66)+AND+destinationPlanId:(281)+AND+destinationUsageYearName:(2020))-(sourceGlobalClusterId:(66)+AND+sourcePlanId:(281)+AND+sourceUsageYearName:(2020)))+OR+(((sourceGlobalClusterId:(66)+AND+sourcePlanId:(281)+AND+sourceUsageYearName:(2020))+AND+(destinationGlobalClusterId:(66)+AND+destinationPlanId:(281)+AND+destinationUsageYearName:(2020)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 12:15:32.755 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationGlobalCluster":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationGlobalClusterIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(281))-(sourcePlanId:(281)))+OR+(((sourcePlanId:(281))+AND+(destinationPlanId:(281)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=1 +2023-09-14 12:15:32.755 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceGlobalCluster":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourceGlobalClusterIdNameConcat"},"destinationGlobalCluster":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationGlobalClusterIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourcePlanId:("281"))+AND+(destinationPlanId:("281")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-14 12:15:32.777 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015175538278400)} 0 1 +2023-09-14 12:15:32.779 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:32.779 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:32.779 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:32.779 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:32.779 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:32.779 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:32.779 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:32.779 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:15:32.779 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:15:32.779 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:15:32.783 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:15:32.783 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:15:32.786 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:15:32.786 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:15:32.790 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:15:32.790 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:15:32.793 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:15:32.793 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:15:32.797 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:15:32.799 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 21 +2023-09-14 12:15:32.802 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015175565541376)} 0 1 +2023-09-14 12:15:32.803 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:15:33.007 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[90 (1777015175777353728), 91 (1777015175780499456), 92 (1777015175780499457), 93 (1777015175781548032), 94 (1777015175781548033)]} 0 5 +2023-09-14 12:15:33.110 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:33.110 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4350,tindexSize=42,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=1,uses=0} +2023-09-14 12:15:33.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:15:33.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4350,tindexSize=42,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-14 12:15:33.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:15:33.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4426,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=1,termInstances=0,uses=0} +2023-09-14 12:15:33.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4351,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=2,uses=0} +2023-09-14 12:15:33.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:15:33.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:15:33.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:15:33.115 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:15:33.115 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:15:33.118 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:15:33.118 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:15:33.122 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:15:33.122 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:15:33.124 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:15:33.124 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:15:33.128 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:15:33.128 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 115 +2023-09-14 12:15:33.156 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015175936737280)} 0 1 +2023-09-14 12:15:33.160 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:33.160 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:33.160 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:33.160 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:33.160 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:33.160 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:33.160 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:33.160 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:15:33.160 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:15:33.160 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:15:33.163 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:15:33.163 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:15:33.166 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:15:33.166 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:15:33.171 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:15:33.171 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:15:33.174 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:15:33.174 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:15:33.178 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:15:33.181 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 22 +2023-09-14 12:15:33.183 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015175965048832)} 0 0 +2023-09-14 12:15:33.184 INFO (qtp1581078471-47) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-14 12:15:42.852 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(285))-(sourcePlanId:(285)))+OR+(((sourcePlanId:(285))+AND+(destinationPlanId:(285)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:15:42.852 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=newMoney&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(285))-(sourcePlanId:(285)))+OR+(((sourcePlanId:(285))+AND+(destinationPlanId:(285)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:42.852 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=newMoney&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("pledge")&fq=((((destinationPlanId:(285))-(sourcePlanId:(285)))+OR+(((sourcePlanId:(285))+AND+(destinationPlanId:(285)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:15:42.852 INFO (qtp1581078471-50) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=newMoney&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("pledge")&fq=((((sourcePlanId:(285))+AND+(destinationPlanId:(285)))+AND+newMoney:false))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:15:42.852 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=(((sourcePlanId:(285))-(destinationPlanId:(285))))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:15:42.852 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("pledge")&fq=((((destinationPlanId:(285))-(sourcePlanId:(285)))+OR+(((sourcePlanId:(285))+AND+(destinationPlanId:(285)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 12:15:42.853 INFO (qtp1581078471-58) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("pledge")&fq=(((sourcePlanId:(285))-(destinationPlanId:(285))))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:42.853 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("pledge")&fq=((((destinationPlanId:(285))-(sourcePlanId:(285)))+OR+(((sourcePlanId:(285))+AND+(destinationPlanId:(285)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 12:15:42.853 INFO (qtp1581078471-47) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(285))-(sourcePlanId:(285)))+OR+(((sourcePlanId:(285))+AND+(destinationPlanId:(285)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:42.853 INFO (qtp1581078471-60) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=newMoney&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourcePlanId:(285))+AND+(destinationPlanId:(285)))+AND+newMoney:false))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:15:49.719 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[96 (1777015193295912960), 97 (1777015193302204416), 98 (1777015193303252992), 99 (1777015193303252993), 100 (1777015193304301568)]} 0 9 +2023-09-14 12:15:49.791 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4446,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:15:49.791 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:49.791 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:15:49.791 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:49.791 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-14 12:15:49.791 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4351,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-14 12:15:49.791 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:49.791 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:15:49.791 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:15:49.791 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:15:49.796 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:15:49.796 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:15:49.799 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:15:49.799 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:15:49.802 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:15:49.802 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:15:49.805 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:15:49.805 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:15:49.810 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:15:49.810 INFO (qtp1581078471-59) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 85 +2023-09-14 12:15:49.839 INFO (qtp1581078471-59) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2014)+AND+destinationLocationId:(105))-(sourceUsageYearName:(2014)+AND+sourceLocationId:(105)))+OR+(((sourceUsageYearName:(2014)+AND+sourceLocationId:(105))+AND+(destinationUsageYearName:(2014)+AND+destinationLocationId:(105)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:15:49.839 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2013)+AND+destinationLocationId:(105))-(sourceUsageYearName:(2013)+AND+sourceLocationId:(105)))+OR+(((sourceUsageYearName:(2013)+AND+sourceLocationId:(105))+AND+(destinationUsageYearName:(2013)+AND+destinationLocationId:(105)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:15:49.840 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2012)+AND+destinationLocationId:(105))-(sourceUsageYearName:(2012)+AND+sourceLocationId:(105)))+OR+(((sourceUsageYearName:(2012)+AND+sourceLocationId:(105))+AND+(destinationUsageYearName:(2012)+AND+destinationLocationId:(105)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:49.841 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2022)+AND+destinationLocationId:(105))-(sourceUsageYearName:(2022)+AND+sourceLocationId:(105)))+OR+(((sourceUsageYearName:(2022)+AND+sourceLocationId:(105))+AND+(destinationUsageYearName:(2022)+AND+destinationLocationId:(105)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:49.844 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2017)+AND+destinationLocationId:(105))-(sourceUsageYearName:(2017)+AND+sourceLocationId:(105)))+OR+(((sourceUsageYearName:(2017)+AND+sourceLocationId:(105))+AND+(destinationUsageYearName:(2017)+AND+destinationLocationId:(105)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:49.844 INFO (qtp1581078471-59) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2015)+AND+destinationLocationId:(105))-(sourceUsageYearName:(2015)+AND+sourceLocationId:(105)))+OR+(((sourceUsageYearName:(2015)+AND+sourceLocationId:(105))+AND+(destinationUsageYearName:(2015)+AND+destinationLocationId:(105)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:49.845 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2019)+AND+destinationLocationId:(105))-(sourceUsageYearName:(2019)+AND+sourceLocationId:(105)))+OR+(((sourceUsageYearName:(2019)+AND+sourceLocationId:(105))+AND+(destinationUsageYearName:(2019)+AND+destinationLocationId:(105)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:49.845 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2018)+AND+destinationLocationId:(105))-(sourceUsageYearName:(2018)+AND+sourceLocationId:(105)))+OR+(((sourceUsageYearName:(2018)+AND+sourceLocationId:(105))+AND+(destinationUsageYearName:(2018)+AND+destinationLocationId:(105)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:49.846 INFO (qtp1581078471-59) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2020)+AND+destinationLocationId:(105))-(sourceUsageYearName:(2020)+AND+sourceLocationId:(105)))+OR+(((sourceUsageYearName:(2020)+AND+sourceLocationId:(105))+AND+(destinationUsageYearName:(2020)+AND+destinationLocationId:(105)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:49.847 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2021)+AND+destinationLocationId:(105))-(sourceUsageYearName:(2021)+AND+sourceLocationId:(105)))+OR+(((sourceUsageYearName:(2021)+AND+sourceLocationId:(105))+AND+(destinationUsageYearName:(2021)+AND+destinationLocationId:(105)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=1 +2023-09-14 12:15:49.848 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2016)+AND+destinationLocationId:(105))-(sourceUsageYearName:(2016)+AND+sourceLocationId:(105)))+OR+(((sourceUsageYearName:(2016)+AND+sourceLocationId:(105))+AND+(destinationUsageYearName:(2016)+AND+destinationLocationId:(105)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:49.850 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(287)+AND+destinationLocationId:(105))-(sourcePlanId:(287)+AND+sourceLocationId:(105)))+OR+(((sourcePlanId:(287)+AND+sourceLocationId:(105))+AND+(destinationPlanId:(287)+AND+destinationLocationId:(105)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-14 12:15:49.873 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2012)+AND+destinationLocationId:(106))-(sourceUsageYearName:(2012)+AND+sourceLocationId:(106)))+OR+(((sourceUsageYearName:(2012)+AND+sourceLocationId:(106))+AND+(destinationUsageYearName:(2012)+AND+destinationLocationId:(106)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:15:49.873 INFO (qtp1581078471-57) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2015)+AND+destinationLocationId:(106))-(sourceUsageYearName:(2015)+AND+sourceLocationId:(106)))+OR+(((sourceUsageYearName:(2015)+AND+sourceLocationId:(106))+AND+(destinationUsageYearName:(2015)+AND+destinationLocationId:(106)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:49.873 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2018)+AND+destinationLocationId:(106))-(sourceUsageYearName:(2018)+AND+sourceLocationId:(106)))+OR+(((sourceUsageYearName:(2018)+AND+sourceLocationId:(106))+AND+(destinationUsageYearName:(2018)+AND+destinationLocationId:(106)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-14 12:15:49.874 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2014)+AND+destinationLocationId:(106))-(sourceUsageYearName:(2014)+AND+sourceLocationId:(106)))+OR+(((sourceUsageYearName:(2014)+AND+sourceLocationId:(106))+AND+(destinationUsageYearName:(2014)+AND+destinationLocationId:(106)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:49.875 INFO (qtp1581078471-57) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2021)+AND+destinationLocationId:(106))-(sourceUsageYearName:(2021)+AND+sourceLocationId:(106)))+OR+(((sourceUsageYearName:(2021)+AND+sourceLocationId:(106))+AND+(destinationUsageYearName:(2021)+AND+destinationLocationId:(106)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:49.875 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2019)+AND+destinationLocationId:(106))-(sourceUsageYearName:(2019)+AND+sourceLocationId:(106)))+OR+(((sourceUsageYearName:(2019)+AND+sourceLocationId:(106))+AND+(destinationUsageYearName:(2019)+AND+destinationLocationId:(106)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:49.875 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2013)+AND+destinationLocationId:(106))-(sourceUsageYearName:(2013)+AND+sourceLocationId:(106)))+OR+(((sourceUsageYearName:(2013)+AND+sourceLocationId:(106))+AND+(destinationUsageYearName:(2013)+AND+destinationLocationId:(106)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-14 12:15:49.876 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2022)+AND+destinationLocationId:(106))-(sourceUsageYearName:(2022)+AND+sourceLocationId:(106)))+OR+(((sourceUsageYearName:(2022)+AND+sourceLocationId:(106))+AND+(destinationUsageYearName:(2022)+AND+destinationLocationId:(106)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-14 12:15:49.876 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2020)+AND+destinationLocationId:(106))-(sourceUsageYearName:(2020)+AND+sourceLocationId:(106)))+OR+(((sourceUsageYearName:(2020)+AND+sourceLocationId:(106))+AND+(destinationUsageYearName:(2020)+AND+destinationLocationId:(106)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:49.876 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2016)+AND+destinationLocationId:(106))-(sourceUsageYearName:(2016)+AND+sourceLocationId:(106)))+OR+(((sourceUsageYearName:(2016)+AND+sourceLocationId:(106))+AND+(destinationUsageYearName:(2016)+AND+destinationLocationId:(106)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:49.886 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2017)+AND+destinationLocationId:(106))-(sourceUsageYearName:(2017)+AND+sourceLocationId:(106)))+OR+(((sourceUsageYearName:(2017)+AND+sourceLocationId:(106))+AND+(destinationUsageYearName:(2017)+AND+destinationLocationId:(106)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-14 12:15:49.886 INFO (qtp1581078471-59) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(288)+AND+destinationLocationId:(106))-(sourcePlanId:(288)+AND+sourceLocationId:(106)))+OR+(((sourcePlanId:(288)+AND+sourceLocationId:(106))+AND+(destinationPlanId:(288)+AND+destinationLocationId:(106)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=0 +2023-09-14 12:15:49.905 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777015193498288128)} 0 1 +2023-09-14 12:15:49.907 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:49.907 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:49.907 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:49.907 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:49.907 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:49.907 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:49.907 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-14 12:15:49.908 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-14 12:15:49.908 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-14 12:15:49.908 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-14 12:15:49.911 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-14 12:15:49.911 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-14 12:15:49.914 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-14 12:15:49.914 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-14 12:15:49.918 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-14 12:15:49.918 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-14 12:15:49.922 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-14 12:15:49.922 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-14 12:15:49.926 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-14 12:15:49.928 INFO (qtp1581078471-59) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 22 diff --git a/tests/data/test/hpc/solr_logs/solr.log.5 b/tests/data/test/hpc/solr_logs/solr.log.5 new file mode 100644 index 00000000..0b478fe8 --- /dev/null +++ b/tests/data/test/hpc/solr_logs/solr.log.5 @@ -0,0 +1,899 @@ +2023-09-21 08:48:28.385 INFO (main) [ ] o.e.j.u.log Logging initialized @649ms to org.eclipse.jetty.util.log.Slf4jLog +2023-09-21 08:48:28.520 INFO (main) [ ] o.e.j.s.Server jetty-9.4.44.v20210927; built: 2021-09-27T23:02:44.612Z; git: 8da83308eeca865e495e53ef315a249d63ba9332; jvm 11.0.20.1+1 +2023-09-21 08:48:28.526 INFO (main) [ ] o.e.j.d.p.ScanningAppProvider Deployment monitor [file:///opt/solr-8.11.2/server/contexts/] at interval 0 +2023-09-21 08:48:28.714 INFO (main) [ ] o.e.j.w.StandardDescriptorProcessor NO JSP Support for /solr, did not find org.apache.jasper.servlet.JspServlet +2023-09-21 08:48:28.719 INFO (main) [ ] o.e.j.s.session DefaultSessionIdManager workerName=node0 +2023-09-21 08:48:28.719 INFO (main) [ ] o.e.j.s.session No SessionScavenger set, using defaults +2023-09-21 08:48:28.720 INFO (main) [ ] o.e.j.s.session node0 Scavenging every 600000ms +2023-09-21 08:48:28.773 INFO (main) [ ] o.a.s.s.SolrDispatchFilter Using logger factory org.apache.logging.slf4j.Log4jLoggerFactory +2023-09-21 08:48:28.776 INFO (main) [ ] o.a.s.s.SolrDispatchFilter ___ _ Welcome to Apache Solr™ version 8.11.2 +2023-09-21 08:48:28.776 INFO (main) [ ] o.a.s.s.SolrDispatchFilter / __| ___| |_ _ Starting in standalone mode on port 8983 +2023-09-21 08:48:28.776 INFO (main) [ ] o.a.s.s.SolrDispatchFilter \__ \/ _ \ | '_| Install dir: /opt/solr +2023-09-21 08:48:28.776 INFO (main) [ ] o.a.s.s.SolrDispatchFilter |___/\___/_|_| Start time: 2023-09-21T08:48:28.776195Z +2023-09-21 08:48:28.787 INFO (main) [ ] o.a.s.c.SolrPaths Using system property solr.solr.home: /var/solr/data +2023-09-21 08:48:28.787 INFO (main) [ ] o.a.s.c.SolrXmlConfig Loading container configuration from /var/solr/data/solr.xml +2023-09-21 08:48:28.833 INFO (main) [ ] o.a.s.c.SolrXmlConfig MBean server found: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3, but no JMX reporters were configured - adding default JMX reporter. +2023-09-21 08:48:29.131 INFO (main) [ ] o.a.s.h.c.HttpShardHandlerFactory Host whitelist initialized: WhitelistHostChecker [whitelistHosts=null, whitelistHostCheckingEnabled=true] +2023-09-21 08:48:29.216 WARN (main) [ ] o.e.j.u.s.S.config Trusting all certificates configured for Client@15f8701f[provider=null,keyStore=null,trustStore=null] +2023-09-21 08:48:29.216 WARN (main) [ ] o.e.j.u.s.S.config No Client EndPointIdentificationAlgorithm configured for Client@15f8701f[provider=null,keyStore=null,trustStore=null] +2023-09-21 08:48:29.316 WARN (main) [ ] o.e.j.u.s.S.config Trusting all certificates configured for Client@4f5f6e45[provider=null,keyStore=null,trustStore=null] +2023-09-21 08:48:29.316 WARN (main) [ ] o.e.j.u.s.S.config No Client EndPointIdentificationAlgorithm configured for Client@4f5f6e45[provider=null,keyStore=null,trustStore=null] +2023-09-21 08:48:29.356 WARN (main) [ ] o.a.s.c.CoreContainer Not all security plugins configured! authentication=disabled authorization=disabled. Solr is only as secure as you make it. Consider configuring authentication/authorization before exposing Solr to users internal or external. See https://s.apache.org/solrsecurity for more info +2023-09-21 08:48:29.430 INFO (main) [ ] o.a.s.c.TransientSolrCoreCacheDefault Allocating transient core cache for max 2147483647 cores with initial capacity of 1024 +2023-09-21 08:48:29.440 INFO (main) [ ] o.a.s.h.a.MetricsHistoryHandler No .system collection, keeping metrics history in memory. +2023-09-21 08:48:29.484 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.node' (registry 'solr.node') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-21 08:48:29.485 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.jvm' (registry 'solr.jvm') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-21 08:48:29.486 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.jetty' (registry 'solr.jetty') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-21 08:48:29.524 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Found 1 core definitions underneath /var/solr/data +2023-09-21 08:48:29.525 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Cores are: [fts] +2023-09-21 08:48:29.567 INFO (main) [ ] o.e.j.s.h.ContextHandler Started o.e.j.w.WebAppContext@1cd201a8{/solr,file:///opt/solr-8.11.2/server/solr-webapp/webapp/,AVAILABLE}{/opt/solr-8.11.2/server/solr-webapp/webapp} +2023-09-21 08:48:29.577 INFO (main) [ ] o.e.j.s.AbstractConnector Started ServerConnector@64a8c844{HTTP/1.1, (http/1.1, h2c)}{0.0.0.0:8983} +2023-09-21 08:48:29.577 INFO (main) [ ] o.e.j.s.Server Started @1841ms +2023-09-21 08:48:29.585 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrResourceLoader Added 64 libs to classloader, from paths: [/opt/solr/contrib/analysis-extras/lib, /opt/solr/contrib/analysis-extras/lucene-libs, /opt/solr/contrib/extraction/lib, /opt/solr/contrib/langid/lib, /opt/solr/dist] +2023-09-21 08:48:29.800 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrConfig Using Lucene MatchVersion: 8.11.2 +2023-09-21 08:48:29.804 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.SolrIndexConfig IndexWriter infoStream solr logging is enabled +2023-09-21 08:48:29.854 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.IndexSchema Schema name=drupal-4.2.9-solr-8.x-0 +2023-09-21 08:48:30.061 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.IndexSchema Loaded schema drupal-4.2.9-solr-8.x-0/1.6 with uniqueid field id +2023-09-21 08:48:30.219 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.CoreContainer Creating SolrCore 'fts' using configuration from instancedir /var/solr/data/fts, trusted=true +2023-09-21 08:48:30.234 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.core.fts' (registry 'solr.core.fts') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-09-21 08:48:30.240 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrCore [[fts] ] Opening new SolrCore at [/var/solr/data/fts], dataDir=[/var/solr/data/fts/data/] +2023-09-21 08:48:30.262 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.r.XSLTResponseWriter xsltCacheLifetimeSeconds=5 +2023-09-21 08:48:30.501 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.UpdateHandler Using UpdateLog implementation: org.apache.solr.update.UpdateLog +2023-09-21 08:48:30.501 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.UpdateLog Initializing UpdateLog: dataDir= defaultSyncLevel=FLUSH numRecordsToKeep=100 maxNumLogsToKeep=10 numVersionBuckets=65536 +2023-09-21 08:48:30.521 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.CommitTracker Hard AutoCommit: if uncommitted for 15000ms; if 10000 uncommitted docs; +2023-09-21 08:48:30.521 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.CommitTracker Soft AutoCommit: disabled +2023-09-21 08:48:30.626 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.r.ManagedResourceStorage File-based storage initialized to use dir: /var/solr/data/fts/conf +2023-09-21 08:48:30.633 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SpellCheckComponent Initializing spell checkers +2023-09-21 08:48:30.636 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=ar,field=spellcheck_ar,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-21 08:48:30.637 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=en,field=spellcheck_en,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-21 08:48:30.637 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=fr,field=spellcheck_fr,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-21 08:48:30.637 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=und,field=spellcheck_und,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-21 08:48:30.637 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=zh_hans,field=spellcheck_zh_hans,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=1,minPrefix=1,maxInspections=5,minQueryLength=1,maxQueryFrequency=0.01,onlyMorePopular=true} +2023-09-21 08:48:30.637 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=es,field=spellcheck_es,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-09-21 08:48:30.637 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Initializing SuggestComponent +2023-09-21 08:48:30.639 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=ar,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_ar,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-21 08:48:30.651 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=ar,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_ar,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-21 08:48:30.651 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: ar = SuggesterListener [core=org.apache.solr.core.SolrCore@6c578304, suggester=SolrSuggester [ name=ar, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-21 08:48:30.651 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=en,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_en,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-21 08:48:30.655 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=en,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_en,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-21 08:48:30.655 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: en = SuggesterListener [core=org.apache.solr.core.SolrCore@6c578304, suggester=SolrSuggester [ name=en, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-21 08:48:30.655 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=fr,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_fr,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-21 08:48:30.658 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=fr,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_fr,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-21 08:48:30.658 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: fr = SuggesterListener [core=org.apache.solr.core.SolrCore@6c578304, suggester=SolrSuggester [ name=fr, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-21 08:48:30.658 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=und,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_und,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-21 08:48:30.659 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=und,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_und,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-21 08:48:30.659 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: und = SuggesterListener [core=org.apache.solr.core.SolrCore@6c578304, suggester=SolrSuggester [ name=und, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-21 08:48:30.659 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=es,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_es,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-21 08:48:30.660 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=es,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_es,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-09-21 08:48:30.660 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: es = SuggesterListener [core=org.apache.solr.core.SolrCore@6c578304, suggester=SolrSuggester [ name=es, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-09-21 08:48:30.661 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.QueryElevationComponent Loading QueryElevation from: /var/solr/data/fts/conf/elevate.xml +2023-09-21 08:48:30.667 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.ReplicationHandler Commits will be reserved for 10000 ms +2023-09-21 08:48:30.690 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.S.Request [fts] webapp=null path=null params={q=static+firstSearcher+warming+in+solrconfig.xml&distrib=false&event=firstSearcher} hits=0 status=0 QTime=18 +2023-09-21 08:48:30.691 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:48:30.691 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: ar +2023-09-21 08:48:30.691 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: en +2023-09-21 08:48:30.691 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: fr +2023-09-21 08:48:30.691 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: und +2023-09-21 08:48:30.691 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: zh_hans +2023-09-21 08:48:30.691 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: es +2023-09-21 08:48:30.695 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:48:48.659 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=2 +2023-09-21 08:49:02.887 INFO (qtp1581078471-17) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(133))-(sourcePlanId:(133)))+OR+(((sourcePlanId:(133))+AND+(destinationPlanId:(133)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=25 +2023-09-21 08:49:02.887 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(133))-(sourcePlanId:(133)))+OR+(((sourcePlanId:(133))+AND+(destinationPlanId:(133)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=25 +2023-09-21 08:49:02.975 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(133))-(sourcePlanId:(133)))+OR+(((sourcePlanId:(133))+AND+(destinationPlanId:(133)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-21 08:49:02.975 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(133))-(sourcePlanId:(133)))+OR+(((sourcePlanId:(133))+AND+(destinationPlanId:(133)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-21 08:49:30.769 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[1 (1777636391752040448), 2 (1777636391784546304), 3 (1777636391787692032), 4 (1777636391789789184), 5 (1777636391792934912), 6 (1777636391795032064), 7 (1777636391797129216)]} 0 53 +2023-09-21 08:49:30.850 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:49:30.850 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:49:30.850 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:49:30.861 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:49:30.861 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:49:30.868 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:49:30.868 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:49:30.872 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:49:30.872 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:49:30.876 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:49:30.876 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:49:30.884 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:49:30.885 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 110 +2023-09-21 08:49:30.927 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(176))-(sourcePlanId:(176)))+OR+(((sourcePlanId:(176))+AND+(destinationPlanId:(176)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=9 +2023-09-21 08:49:30.941 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(177))-(sourcePlanId:(177)))+OR+(((sourcePlanId:(177))+AND+(destinationPlanId:(177)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-21 08:49:30.955 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(178))-(sourcePlanId:(178)))+OR+(((sourcePlanId:(178))+AND+(destinationPlanId:(178)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-21 08:49:30.990 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(179))-(sourcePlanId:(179)))+OR+(((sourcePlanId:(179))+AND+(destinationPlanId:(179)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-21 08:49:31.020 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(180))-(sourcePlanId:(180)))+OR+(((sourcePlanId:(180))+AND+(destinationPlanId:(180)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-21 08:49:31.050 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(181))-(sourcePlanId:(181)))+OR+(((sourcePlanId:(181))+AND+(destinationPlanId:(181)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-21 08:49:31.067 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(182))-(sourcePlanId:(182)))+OR+(((sourcePlanId:(182))+AND+(destinationPlanId:(182)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-21 08:49:31.111 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636392150499328)} 0 7 +2023-09-21 08:49:31.116 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:49:31.116 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:49:31.116 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:49:31.125 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:49:31.125 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:49:31.129 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:49:31.129 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:49:31.134 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:49:31.134 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:49:31.139 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:49:31.139 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:49:31.146 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:49:31.152 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 39 +2023-09-21 08:49:49.209 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636411134967808)} 0 1 +2023-09-21 08:49:49.213 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-21 08:49:49.313 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636411244019712)} 0 1 +2023-09-21 08:49:49.315 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-21 08:49:49.347 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636411279671296)} 0 1 +2023-09-21 08:49:49.350 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-21 08:49:49.365 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636411298545664)} 0 1 +2023-09-21 08:49:49.368 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-21 08:49:49.380 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636411313225728)} 0 1 +2023-09-21 08:49:49.382 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-21 08:49:49.709 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[19 (1777636411645624320), 20 (1777636411651915776), 21 (1777636411652964352), 22 (1777636411654012928), 23 (1777636411656110080), 24 (1777636411657158656), 25 (1777636411658207232)]} 0 14 +2023-09-21 08:49:49.765 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:49:49.765 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:49:49.765 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:49:49.771 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:49:49.771 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:49:49.775 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:49:49.775 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:49:49.779 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:49:49.779 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:49:49.783 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:49:49.783 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:49:49.789 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:49:49.790 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 75 +2023-09-21 08:49:49.816 INFO (qtp1581078471-22) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4456,tindexSize=44,time=1,phase1=1,nTerms=3,bigTerms=1,termInstances=3,uses=0} +2023-09-21 08:49:49.817 INFO (qtp1581078471-22) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4454,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=2,uses=0} +2023-09-21 08:49:49.817 INFO (qtp1581078471-22) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4358,tindexSize=42,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-21 08:49:49.818 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2020)+AND+destinationPlanId:(214)+AND+destinationGlobalClusterId:(48))-(sourceUsageYearName:(2020)+AND+sourcePlanId:(214)+AND+sourceGlobalClusterId:(48)))+OR+(((sourceUsageYearName:(2020)+AND+sourcePlanId:(214)+AND+sourceGlobalClusterId:(48))+AND+(destinationUsageYearName:(2020)+AND+destinationPlanId:(214)+AND+destinationGlobalClusterId:(48)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=21 +2023-09-21 08:49:49.824 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2020")+AND+destinationPlanId:("214")+AND+destinationGlobalClusterId:(49))-(sourceUsageYearName:("2020")+AND+sourcePlanId:("214")+AND+sourceGlobalClusterId:(49)))+OR+(((sourceUsageYearName:("2020")+AND+sourcePlanId:("214")+AND+sourceGlobalClusterId:(49))+AND+(destinationUsageYearName:("2020")+AND+destinationPlanId:("214")+AND+destinationGlobalClusterId:(49)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-21 08:49:49.843 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636411798716416)} 0 2 +2023-09-21 08:49:49.847 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:49:49.847 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:49:49.847 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:49:49.847 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:49:49.847 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:49:49.847 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:49:49.851 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:49:49.851 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:49:49.854 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:49:49.854 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:49:49.859 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:49:49.859 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:49:49.863 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:49:49.863 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:49:49.869 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:49:49.873 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 28 +2023-09-21 08:49:50.141 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[26 (1777636412101754880), 27 (1777636412105949184), 28 (1777636412106997760), 29 (1777636412108046336), 30 (1777636412110143488), 31 (1777636412111192064), 32 (1777636412112240640)]} 0 11 +2023-09-21 08:49:50.215 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4456,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=3,uses=0} +2023-09-21 08:49:50.215 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4454,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=2,uses=0} +2023-09-21 08:49:50.215 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4358,tindexSize=42,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-21 08:49:50.215 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:49:50.215 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:49:50.215 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:49:50.220 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:49:50.220 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:49:50.224 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:49:50.224 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:49:50.227 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:49:50.228 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:49:50.232 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:49:50.232 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:49:50.236 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 1 ms +2023-09-21 08:49:50.236 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 90 +2023-09-21 08:49:50.246 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2020)+AND+destinationPlanId:(217)+AND+destinationGlobalClusterId:(50))-(sourceUsageYearName:(2020)+AND+sourcePlanId:(217)+AND+sourceGlobalClusterId:(50)))+OR+(((sourceUsageYearName:(2020)+AND+sourcePlanId:(217)+AND+sourceGlobalClusterId:(50))+AND+(destinationUsageYearName:(2020)+AND+destinationPlanId:(217)+AND+destinationGlobalClusterId:(50)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=3 +2023-09-21 08:49:50.251 INFO (qtp1581078471-20) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2020")+AND+destinationPlanId:("217")+AND+destinationGlobalClusterId:(51))-(sourceUsageYearName:("2020")+AND+sourcePlanId:("217")+AND+sourceGlobalClusterId:(51)))+OR+(((sourceUsageYearName:("2020")+AND+sourcePlanId:("217")+AND+sourceGlobalClusterId:(51))+AND+(destinationUsageYearName:("2020")+AND+destinationPlanId:("217")+AND+destinationGlobalClusterId:(51)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-21 08:49:50.263 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636412239118336)} 0 1 +2023-09-21 08:49:50.266 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:49:50.266 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:49:50.266 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:49:50.266 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:49:50.266 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:49:50.266 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:49:50.270 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:49:50.270 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:49:50.272 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:49:50.272 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:49:50.277 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:49:50.278 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:49:50.281 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:49:50.281 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:49:50.286 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:49:50.289 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 25 +2023-09-21 08:49:50.532 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[33 (1777636412514893824), 34 (1777636412519088128), 35 (1777636412520136704), 36 (1777636412520136705), 37 (1777636412521185280), 38 (1777636412522233856), 39 (1777636412522233857)]} 0 8 +2023-09-21 08:49:50.561 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4456,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=3,uses=0} +2023-09-21 08:49:50.562 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4454,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=2,uses=0} +2023-09-21 08:49:50.562 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4358,tindexSize=42,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-21 08:49:50.562 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:49:50.562 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:49:50.562 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:49:50.566 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:49:50.566 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:49:50.570 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:49:50.570 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:49:50.573 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:49:50.573 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:49:50.578 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:49:50.578 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:49:50.583 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:49:50.584 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 46 +2023-09-21 08:49:50.595 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2020)+AND+destinationPlanId:(220)+AND+destinationGlobalClusterId:(52))-(sourceUsageYearName:(2020)+AND+sourcePlanId:(220)+AND+sourceGlobalClusterId:(52)))+OR+(((sourceUsageYearName:(2020)+AND+sourcePlanId:(220)+AND+sourceGlobalClusterId:(52))+AND+(destinationUsageYearName:(2020)+AND+destinationPlanId:(220)+AND+destinationGlobalClusterId:(52)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=6 +2023-09-21 08:49:50.596 INFO (qtp1581078471-20) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4456,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:49:50.597 INFO (qtp1581078471-20) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4426,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=1,termInstances=0,uses=0} +2023-09-21 08:49:50.597 INFO (qtp1581078471-20) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4358,tindexSize=42,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=1,uses=0} +2023-09-21 08:49:50.599 INFO (qtp1581078471-20) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"},"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2020")+AND+sourcePlanId:("220")+AND+sourceGlobalClusterId:("52"))+AND+(destinationUsageYearName:("2020")+AND+destinationPlanId:("220")+AND+destinationGlobalClusterId:("52")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=10 +2023-09-21 08:49:50.608 INFO (qtp1581078471-20) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"},"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2020")+AND+sourcePlanId:("220")+AND+sourceGlobalClusterId:("53"))+AND+(destinationUsageYearName:("2020")+AND+destinationPlanId:("220")+AND+destinationGlobalClusterId:("53")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-21 08:49:50.608 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2020")+AND+destinationPlanId:("220")+AND+destinationGlobalClusterId:(53))-(sourceUsageYearName:("2020")+AND+sourcePlanId:("220")+AND+sourceGlobalClusterId:(53)))+OR+(((sourceUsageYearName:("2020")+AND+sourcePlanId:("220")+AND+sourceGlobalClusterId:(53))+AND+(destinationUsageYearName:("2020")+AND+destinationPlanId:("220")+AND+destinationGlobalClusterId:(53)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-21 08:49:50.621 INFO (qtp1581078471-22) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636412614508544)} 0 2 +2023-09-21 08:49:50.624 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:49:50.624 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:49:50.624 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:49:50.624 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:49:50.624 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:49:50.624 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:49:50.625 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:49:50.625 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:49:50.625 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:49:50.628 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:49:50.628 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:49:50.631 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:49:50.631 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:49:50.635 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:49:50.636 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:49:50.639 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:49:50.639 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:49:50.644 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:49:50.647 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 25 +2023-09-21 08:50:08.101 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636430943617024)} 0 2 +2023-09-21 08:50:08.104 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-21 08:50:08.276 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636431128166400)} 0 1 +2023-09-21 08:50:08.278 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-21 08:50:08.488 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018")+AND+destinationPlanId:(227))-(sourceUsageYearName:("2018")+AND+sourcePlanId:(227)))+OR+(((sourceUsageYearName:("2018")+AND+sourcePlanId:(227))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:(227)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-21 08:50:08.488 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2018")+AND+sourcePlanId:("227"))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:("227")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=3 +2023-09-21 08:50:08.489 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2018")+AND+sourcePlanId:("225"))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:("225")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=3 +2023-09-21 08:50:08.489 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018")+AND+destinationPlanId:(225))-(sourceUsageYearName:("2018")+AND+sourcePlanId:(225)))+OR+(((sourceUsageYearName:("2018")+AND+sourcePlanId:(225))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:(225)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=3 +2023-09-21 08:50:08.518 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636431381921792)} 0 1 +2023-09-21 08:50:08.520 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-21 08:50:08.522 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636431386116096)} 0 0 +2023-09-21 08:50:08.524 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-21 08:50:08.674 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018")+AND+destinationPlanId:(228))-(sourceUsageYearName:("2018")+AND+sourcePlanId:(228)))+OR+(((sourceUsageYearName:("2018")+AND+sourcePlanId:(228))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:(228)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-21 08:50:08.675 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2018")+AND+sourcePlanId:("230"))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:("230")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-21 08:50:08.676 INFO (qtp1581078471-20) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2018")+AND+sourcePlanId:("228"))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:("228")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-21 08:50:08.677 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018")+AND+destinationPlanId:(230))-(sourceUsageYearName:("2018")+AND+sourcePlanId:(230)))+OR+(((sourceUsageYearName:("2018")+AND+sourcePlanId:(230))+AND+(destinationUsageYearName:("2018")+AND+destinationPlanId:(230)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=3 +2023-09-21 08:50:08.694 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636431567519744)} 0 1 +2023-09-21 08:50:08.697 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-21 08:50:08.699 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636431571714048)} 0 0 +2023-09-21 08:50:08.701 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-21 08:50:08.923 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[50 (1777636431801352192), 51 (1777636431804497920), 52 (1777636431805546496), 53 (1777636431806595072), 54 (1777636431806595073)]} 0 6 +2023-09-21 08:50:08.959 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:50:08.959 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:08.959 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:08.959 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=2,uses=0} +2023-09-21 08:50:08.959 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4446,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:50:08.959 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:08.960 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:50:08.960 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:50:08.960 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:50:08.965 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:50:08.965 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:50:08.970 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:50:08.970 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:50:08.975 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:50:08.975 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:50:08.980 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:50:08.980 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:50:08.984 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:50:08.985 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 54 +2023-09-21 08:50:08.998 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2021")+AND+sourcePlanId:("232"))+AND+(destinationUsageYearName:("2021")+AND+destinationPlanId:("232")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-21 08:50:08.999 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2021")+AND+destinationPlanId:(232))-(sourceUsageYearName:("2021")+AND+sourcePlanId:(232)))+OR+(((sourceUsageYearName:("2021")+AND+sourcePlanId:(232))+AND+(destinationUsageYearName:("2021")+AND+destinationPlanId:(232)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-21 08:50:09.022 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2021")+AND+sourcePlanId:("232"))+AND+(destinationUsageYearName:("2021")+AND+destinationPlanId:("232")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-21 08:50:09.022 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2021")+AND+destinationPlanId:(232))-(sourceUsageYearName:("2021")+AND+sourcePlanId:(232)))+OR+(((sourceUsageYearName:("2021")+AND+sourcePlanId:(232))+AND+(destinationUsageYearName:("2021")+AND+destinationPlanId:(232)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-21 08:50:09.038 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636431926132736)} 0 1 +2023-09-21 08:50:09.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:50:09.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:50:09.041 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:50:09.044 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:50:09.044 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:50:09.047 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:50:09.047 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:50:09.050 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:50:09.050 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:50:09.054 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:50:09.055 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:50:09.059 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:50:09.062 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 22 +2023-09-21 08:50:09.065 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636431955492864)} 0 1 +2023-09-21 08:50:09.067 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-21 08:50:09.285 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[55 (1777636432180936704), 56 (1777636432184082432), 57 (1777636432185131008), 58 (1777636432186179584), 59 (1777636432186179585)]} 0 6 +2023-09-21 08:50:09.318 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:50:09.318 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.318 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.318 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.318 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=2,uses=0} +2023-09-21 08:50:09.318 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4446,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:50:09.319 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:50:09.319 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:50:09.319 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:50:09.323 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:50:09.323 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:50:09.327 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:50:09.327 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:50:09.330 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:50:09.330 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:50:09.334 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:50:09.334 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:50:09.339 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 1 ms +2023-09-21 08:50:09.339 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 50 +2023-09-21 08:50:09.348 INFO (qtp1581078471-20) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018"))-(sourceUsageYearName:("2018")))+OR+(((sourceUsageYearName:("2018"))+AND+(destinationUsageYearName:("2018")))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=3 +2023-09-21 08:50:09.350 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourceLocationBehavior:single+OR+(*:*+-sourceLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourceLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourceLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourceLocationIdNameConcat"},"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceUsageYearName:("2018"))+AND+(destinationUsageYearName:("2018")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-21 08:50:09.362 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636432265871360)} 0 1 +2023-09-21 08:50:09.365 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.365 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.365 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.365 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.365 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.365 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.365 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:50:09.365 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:50:09.365 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:50:09.369 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:50:09.369 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:50:09.372 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:50:09.372 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:50:09.376 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:50:09.376 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:50:09.379 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:50:09.379 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:50:09.383 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:50:09.387 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 24 +2023-09-21 08:50:09.389 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636432295231488)} 0 0 +2023-09-21 08:50:09.391 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-21 08:50:09.597 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[60 (1777636432508092416), 61 (1777636432511238144), 62 (1777636432512286720), 63 (1777636432512286721), 64 (1777636432513335296)]} 0 6 +2023-09-21 08:50:09.638 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:50:09.638 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.638 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.638 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.638 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4446,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:50:09.638 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=2,uses=0} +2023-09-21 08:50:09.638 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:50:09.638 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:50:09.638 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:50:09.643 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:50:09.643 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:50:09.647 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:50:09.647 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:50:09.650 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:50:09.650 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:50:09.654 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:50:09.654 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:50:09.659 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:50:09.659 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 56 +2023-09-21 08:50:09.668 INFO (qtp1581078471-20) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:("2018"))-(sourceUsageYearName:("2018")))+OR+(((sourceUsageYearName:("2018"))+AND+(destinationUsageYearName:("2018")))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=2 +2023-09-21 08:50:09.689 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636432608755712)} 0 1 +2023-09-21 08:50:09.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:50:09.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:50:09.692 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:50:09.696 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:50:09.696 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:50:09.699 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:50:09.699 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:50:09.703 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:50:09.703 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:50:09.707 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:50:09.707 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:50:09.711 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:50:09.714 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 24 +2023-09-21 08:50:09.718 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636432640212992)} 0 1 +2023-09-21 08:50:09.720 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-21 08:50:09.916 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[65 (1777636432842588160), 66 (1777636432845733888), 67 (1777636432846782464), 68 (1777636432846782465), 69 (1777636432847831040)]} 0 6 +2023-09-21 08:50:09.963 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:50:09.963 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.963 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.963 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:09.963 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4446,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:50:09.963 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=3,bigTerms=1,termInstances=2,uses=0} +2023-09-21 08:50:09.964 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:50:09.964 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:50:09.964 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:50:09.968 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:50:09.968 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:50:09.971 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:50:09.971 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:50:09.974 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:50:09.974 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:50:09.978 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:50:09.978 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:50:09.982 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:50:09.982 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 62 +2023-09-21 08:50:09.998 INFO (qtp1581078471-20) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"},"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourcePlanId:("240"+OR+"242"))+AND+(destinationPlanId:("240"+OR+"242")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=3 +2023-09-21 08:50:10.001 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationOrganizationBehavior:single+OR+(*:*+-destinationOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(destinationOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(destinationOrganizationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:("240"+OR+"242"))-(sourcePlanId:("240"+OR+"242")))+OR+(((sourcePlanId:("240"+OR+"242"))+AND+(destinationPlanId:("240"+OR+"242")))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=6 +2023-09-21 08:50:10.002 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(240+OR+242))-(sourcePlanId:(240+OR+242)))+OR+(((sourcePlanId:(240+OR+242))+AND+(destinationPlanId:(240+OR+242)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=7 +2023-09-21 08:50:10.004 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:("240"+OR+"242"))-(sourcePlanId:("240"+OR+"242")))+OR+(((sourcePlanId:("240"+OR+"242"))+AND+(destinationPlanId:("240"+OR+"242")))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=7 +2023-09-21 08:50:10.023 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636432958980096)} 0 1 +2023-09-21 08:50:10.026 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:10.026 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:10.026 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:10.026 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:10.026 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:10.026 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:10.026 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:50:10.026 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:50:10.026 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:50:10.029 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:50:10.029 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:50:10.033 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:50:10.033 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:50:10.037 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:50:10.037 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:50:10.040 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:50:10.040 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:50:10.044 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:50:10.046 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 22 +2023-09-21 08:50:10.050 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636432987291648)} 0 1 +2023-09-21 08:50:10.052 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-21 08:50:10.198 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(244))-(sourcePlanId:(244)))+OR+(((sourcePlanId:(244))+AND+(destinationPlanId:(244)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-21 08:50:10.198 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(244))-(sourcePlanId:(244)))+OR+(((sourcePlanId:(244))+AND+(destinationPlanId:(244)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-21 08:50:10.215 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636433161355264)} 0 1 +2023-09-21 08:50:10.217 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-21 08:50:10.218 INFO (qtp1581078471-21) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636433165549568)} 0 0 +2023-09-21 08:50:10.220 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-21 08:50:10.373 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(247))-(sourcePlanId:(247)))+OR+(((sourcePlanId:(247))+AND+(destinationPlanId:(247)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-21 08:50:10.373 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(247))-(sourcePlanId:(247)))+OR+(((sourcePlanId:(247))+AND+(destinationPlanId:(247)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-21 08:50:10.406 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636433361633280)} 0 1 +2023-09-21 08:50:10.409 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-21 08:50:10.411 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636433366876160)} 0 0 +2023-09-21 08:50:10.412 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-21 08:50:10.565 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636433528356864)} 0 1 +2023-09-21 08:50:10.567 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-21 08:50:10.568 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636433532551168)} 0 0 +2023-09-21 08:50:10.570 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-21 08:50:36.723 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636460955959296)} 0 1 +2023-09-21 08:50:36.725 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-21 08:50:36.828 INFO (qtp1581078471-25) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636461067108352)} 0 1 +2023-09-21 08:50:36.830 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-21 08:50:37.084 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[85 (1777636461331349504), 86 (1777636461333446656), 87 (1777636461334495232), 88 (1777636461335543808), 89 (1777636461335543809)]} 0 5 +2023-09-21 08:50:37.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:50:37.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4351,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=2,uses=0} +2023-09-21 08:50:37.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4350,tindexSize=42,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=1,uses=0} +2023-09-21 08:50:37.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4350,tindexSize=42,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-21 08:50:37.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:50:37.111 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4426,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=1,termInstances=0,uses=0} +2023-09-21 08:50:37.112 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:50:37.112 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:50:37.112 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:50:37.116 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:50:37.116 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:50:37.119 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:50:37.119 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:50:37.122 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:50:37.122 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:50:37.126 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:50:37.126 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:50:37.130 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:50:37.130 INFO (qtp1581078471-24) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 40 +2023-09-21 08:50:37.146 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2022))-(sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2022)))+OR+(((sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2022))+AND+(destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2022)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-21 08:50:37.146 INFO (qtp1581078471-20) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("68")+AND+sourceUsageYearName:("2023"))+AND+(destinationGlobalClusterId:("68")+AND+destinationUsageYearName:("2023")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=4 +2023-09-21 08:50:37.147 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("68")+AND+sourceUsageYearName:("2021"))+AND+(destinationGlobalClusterId:("68")+AND+destinationUsageYearName:("2021")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=4 +2023-09-21 08:50:37.147 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2021))-(sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2021)))+OR+(((sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2021))+AND+(destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2021)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-21 08:50:37.147 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("68")+AND+sourceUsageYearName:("2022"))+AND+(destinationGlobalClusterId:("68")+AND+destinationUsageYearName:("2022")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-21 08:50:37.148 INFO (qtp1581078471-17) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2023))-(sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2023)))+OR+(((sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2023))+AND+(destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2023)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=5 +2023-09-21 08:50:37.151 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2020))-(sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2020)))+OR+(((sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2020))+AND+(destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2020)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=3 +2023-09-21 08:50:37.152 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("68")+AND+sourceUsageYearName:("2020"))+AND+(destinationGlobalClusterId:("68")+AND+destinationUsageYearName:("2020")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=10 +2023-09-21 08:50:37.160 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"},"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2020))-(sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2020)))+OR+(((sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2020))+AND+(destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2020)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=3 +2023-09-21 08:50:37.160 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourcePlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourcePlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourcePlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourcePlanIdNameConcat"},"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationPlanBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationPlanBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationPlanIdNameConcat"},"sourceLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourceLocationBehavior:single+OR+(*:*+-sourceLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourceLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourceLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourceLocationIdNameConcat"},"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("68")+AND+sourceUsageYearName:("2020"))+AND+(destinationGlobalClusterId:("68")+AND+destinationUsageYearName:("2020")))+AND+newMoney:false))&rows=0&wt=json&s... +2023-09-21 08:50:37.166 INFO (qtp1581078471-20) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationPlanId:(300)+AND+destinationUsageYearName:(2020))-(sourceGlobalClusterId:(68)+AND+sourcePlanId:(300)+AND+sourceUsageYearName:(2020)))+OR+(((sourceGlobalClusterId:(68)+AND+sourcePlanId:(300)+AND+sourceUsageYearName:(2020))+AND+(destinationGlobalClusterId:(68)+AND+destinationPlanId:(300)+AND+destinationUsageYearName:(2020)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-21 08:50:37.168 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(sourceLocationBehavior:single+OR+(*:*+-sourceLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(sourceLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(sourceLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"sourceLocationIdNameConcat"},"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceUsageYearBehavior:single+OR+(*:*+-sourceUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$sourceGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceGlobalClusterId"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$sourceUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourceUsageYearName"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourceGlobalClusterId:("68")+AND+sourcePlanId:("300")+AND+sourceUsageYearName:("2020"))+AND+(destinationGlobalClusterId:("68")+AND+destinationPlanId:("300")+AND+destinationUsageYearName:("2020")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=3 +2023-09-21 08:50:37.171 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2020))-(sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2020)))+OR+(((sourceGlobalClusterId:(68)+AND+sourceUsageYearName:(2020))+AND+(destinationGlobalClusterId:(68)+AND+destinationUsageYearName:(2020)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-21 08:50:37.174 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceOrganization":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*]))+AND+(destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(sourceOrganizationBehavior:single+OR+(*:*+-sourceOrganizationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:shared)+OR+(destinationPlanBehavior:shared)+OR+(destinationUsageYearBehavior:shared)+OR+(sourceOrganizationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationGlobalClusterBehavior:overlap)+OR+(destinationPlanBehavior:overlap)+OR+(destinationUsageYearBehavior:overlap)+OR+(sourceOrganizationBehavior:overlap))"},"$$destinationGlobalClusterId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationGlobalClusterId"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"}},"type":"terms","field":"sourceOrganizationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceOrganizationBehavior&fl=destinationOrganizationBehavior&fl=OrganizationBoundary&fl=sourceOrganizationId&fl=destinationOrganizationId&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationGlobalClusterId:(68)+AND+destinationPlanId:(300)+AND+destinationUsageYearName:(2020))-(sourceGlobalClusterId:(68)+AND+sourcePlanId:(300)+AND+sourceUsageYearName:(2020)))+OR+(((sourceGlobalClusterId:(68)+AND+sourcePlanId:(300)+AND+sourceUsageYearName:(2020))+AND+(destinationGlobalClusterId:(68)+AND+destinationPlanId:(300)+AND+destinationUsageYearName:(2020)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-21 08:50:37.203 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationGlobalCluster":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"}},"type":"terms","field":"destinationGlobalClusterIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(300))-(sourcePlanId:(300)))+OR+(((sourcePlanId:(300))+AND+(destinationPlanId:(300)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=2 +2023-09-21 08:50:37.203 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"sourceGlobalCluster":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(sourceGlobalClusterBehavior:single+OR+(*:*+-sourceGlobalClusterBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(sourceGlobalClusterBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(sourceGlobalClusterBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"sourceGlobalClusterIdNameConcat"},"destinationGlobalCluster":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(sourcePlanBehavior:single+OR+(*:*+-sourcePlanBehavior:[*+TO+*]))+AND+(destinationGlobalClusterBehavior:single+OR+(*:*+-destinationGlobalClusterBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(sourcePlanBehavior:shared)+OR+(destinationGlobalClusterBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(sourcePlanBehavior:overlap)+OR+(destinationGlobalClusterBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$sourcePlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"sourcePlanId"}},"type":"terms","field":"destinationGlobalClusterIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceGlobalClusterBehavior&fl=destinationGlobalClusterBehavior&fl=GlobalClusterBoundary&fl=sourceGlobalClusterId&fl=destinationGlobalClusterId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourcePlanId:("300"))+AND+(destinationPlanId:("300")))+AND+newMoney:false))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=3 +2023-09-21 08:50:37.225 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636461482344448)} 0 2 +2023-09-21 08:50:37.228 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:37.228 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:37.228 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:37.228 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:37.228 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:37.228 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:37.229 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:50:37.229 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:50:37.229 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:50:37.232 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:50:37.232 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:50:37.235 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:50:37.235 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:50:37.242 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:50:37.242 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:50:37.245 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:50:37.245 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:50:37.250 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:50:37.252 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 25 +2023-09-21 08:50:37.255 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636461514850304)} 0 0 +2023-09-21 08:50:37.256 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-21 08:50:37.451 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[90 (1777636461717225472), 91 (1777636461719322624), 92 (1777636461720371200), 93 (1777636461720371201), 94 (1777636461721419776)]} 0 5 +2023-09-21 08:50:37.478 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4350,tindexSize=42,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=1,uses=0} +2023-09-21 08:50:37.478 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:50:37.478 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4350,tindexSize=42,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-21 08:50:37.478 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:50:37.478 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4426,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=1,termInstances=0,uses=0} +2023-09-21 08:50:37.478 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4351,tindexSize=43,time=0,phase1=0,nTerms=1,bigTerms=0,termInstances=2,uses=0} +2023-09-21 08:50:37.479 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:50:37.479 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:50:37.479 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:50:37.483 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:50:37.483 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:50:37.487 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:50:37.487 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:50:37.489 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:50:37.489 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:50:37.494 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:50:37.494 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:50:37.497 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:50:37.498 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 41 +2023-09-21 08:50:37.513 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636461785382912)} 0 2 +2023-09-21 08:50:37.517 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:37.517 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:37.517 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:37.517 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:37.517 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:37.517 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:37.517 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:50:37.517 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:50:37.517 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:50:37.520 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:50:37.520 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:50:37.523 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:50:37.523 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:50:37.527 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:50:37.527 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:50:37.530 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:50:37.530 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:50:37.534 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:50:37.536 INFO (qtp1581078471-16) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 21 +2023-09-21 08:50:37.539 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636461812645888)} 0 1 +2023-09-21 08:50:37.541 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-21 08:50:42.296 INFO (qtp1581078471-20) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[95 (1777636466796527616), 96 (1777636466799673344), 97 (1777636466799673345), 98 (1777636466800721920), 99 (1777636466800721921)]} 0 5 +2023-09-21 08:50:42.321 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:42.322 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:50:42.322 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:42.322 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4448,tindexSize=44,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:50:42.322 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4351,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=0,termInstances=3,uses=0} +2023-09-21 08:50:42.322 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:42.322 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:50:42.322 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:50:42.322 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:50:42.327 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:50:42.327 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:50:42.329 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:50:42.330 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:50:42.332 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:50:42.332 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:50:42.336 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:50:42.336 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:50:42.341 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:50:42.341 INFO (qtp1581078471-19) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 40 +2023-09-21 08:50:42.375 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2019)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2019)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2019)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2019)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=5 +2023-09-21 08:50:42.375 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2013)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2013)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2013)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2013)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-21 08:50:42.376 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2016)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2016)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2016)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2016)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=4 +2023-09-21 08:50:42.376 INFO (qtp1581078471-45) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4446,tindexSize=43,time=0,phase1=0,nTerms=2,bigTerms=1,termInstances=1,uses=0} +2023-09-21 08:50:42.376 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2020)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2020)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2020)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2020)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-21 08:50:42.377 INFO (qtp1581078471-45) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2021)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2021)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2021)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2021)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=3 status=0 QTime=2 +2023-09-21 08:50:42.377 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2012)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2012)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2012)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2012)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=3 +2023-09-21 08:50:42.378 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2015)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2015)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2015)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2015)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=7 +2023-09-21 08:50:42.378 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2022)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2022)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2022)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2022)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=7 +2023-09-21 08:50:42.378 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2017)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2017)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2017)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2017)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=8 +2023-09-21 08:50:42.379 INFO (qtp1581078471-20) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2014)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2014)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2014)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2014)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=8 +2023-09-21 08:50:42.379 INFO (qtp1581078471-22) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2018)+AND+destinationLocationId:(107))-(sourceUsageYearName:(2018)+AND+sourceLocationId:(107)))+OR+(((sourceUsageYearName:(2018)+AND+sourceLocationId:(107))+AND+(destinationUsageYearName:(2018)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=7 +2023-09-21 08:50:42.382 INFO (qtp1581078471-42) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(303)+AND+destinationLocationId:(107))-(sourcePlanId:(303)+AND+sourceLocationId:(107)))+OR+(((sourcePlanId:(303)+AND+sourceLocationId:(107))+AND+(destinationPlanId:(303)+AND+destinationLocationId:(107)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=1 +2023-09-21 08:50:42.403 INFO (qtp1581078471-42) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2017)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2017)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2017)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2017)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-21 08:50:42.404 INFO (qtp1581078471-25) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2012)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2012)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2012)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2012)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-21 08:50:42.404 INFO (qtp1581078471-43) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2018)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2018)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2018)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2018)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-21 08:50:42.405 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2021)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2021)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2021)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2021)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-21 08:50:42.406 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2016)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2016)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2016)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2016)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-21 08:50:42.406 INFO (qtp1581078471-46) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2013)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2013)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2013)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2013)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-21 08:50:42.406 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2022)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2022)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2022)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2022)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=2 +2023-09-21 08:50:42.406 INFO (qtp1581078471-24) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2014)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2014)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2014)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2014)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=4 +2023-09-21 08:50:42.406 INFO (qtp1581078471-23) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2019)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2019)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2019)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2019)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=4 +2023-09-21 08:50:42.407 INFO (qtp1581078471-17) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2015)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2015)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2015)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2015)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=4 +2023-09-21 08:50:42.407 INFO (qtp1581078471-47) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationLocation":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:single+OR+(*:*+-destinationUsageYearBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationUsageYearBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationUsageYearName":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationUsageYearName"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationLocationIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceUsageYearBehavior&fl=destinationUsageYearBehavior&fl=UsageYearBoundary&fl=sourceUsageYearId&fl=destinationUsageYearId&fl=sourceUsageYearName&fl=destinationUsageYearName&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationUsageYearName:(2020)+AND+destinationLocationId:(108))-(sourceUsageYearName:(2020)+AND+sourceLocationId:(108)))+OR+(((sourceUsageYearName:(2020)+AND+sourceLocationId:(108))+AND+(destinationUsageYearName:(2020)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=4 +2023-09-21 08:50:42.410 INFO (qtp1581078471-46) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&q=*:*&json.facet={"destinationPlan":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))","single":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:single+OR+(*:*+-destinationPlanBehavior:[*+TO+*]))+AND+(destinationLocationBehavior:single+OR+(*:*+-destinationLocationBehavior:[*+TO+*])))"},"shared":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:shared)+OR+(destinationLocationBehavior:shared))"},"overlap":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"query","q":"((destinationPlanBehavior:overlap)+OR+(destinationLocationBehavior:overlap))"},"$$destinationPlanId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationPlanId"},"$$destinationLocationId":{"minCount":0,"limit":-1,"missing":true,"sort":"index","facet":{"total":"sum(amountUSD)","lastUpdated":"max(ms(updatedAt))"},"type":"terms","field":"destinationLocationId"}},"type":"terms","field":"destinationPlanIdNameConcat"}}&stats=true&fl=id&fl=amountUSD&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=sourceLocationBehavior&fl=destinationLocationBehavior&fl=LocationBoundary&fl=sourceLocationId&fl=destinationLocationId&fl=sourceLocationId&fl=destinationLocationId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(304)+AND+destinationLocationId:(108))-(sourcePlanId:(304)+AND+sourceLocationId:(108)))+OR+(((sourcePlanId:(304)+AND+sourceLocationId:(108))+AND+(destinationPlanId:(304)+AND+destinationLocationId:(108)))+AND+newMoney:true)))&rows=0&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=1 status=0 QTime=0 +2023-09-21 08:50:42.429 INFO (qtp1581078471-44) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777636466939133952)} 0 1 +2023-09-21 08:50:42.431 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:42.431 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:42.431 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:42.431 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:42.431 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:42.431 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:42.431 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 08:50:42.432 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 08:50:42.432 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 08:50:42.432 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 08:50:42.435 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 08:50:42.435 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 08:50:42.438 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 08:50:42.438 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 08:50:42.441 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 08:50:42.441 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 08:50:42.444 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 08:50:42.444 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 08:50:42.448 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 08:50:42.450 INFO (qtp1581078471-46) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 20 +2023-09-21 08:50:47.579 INFO (qtp1581078471-45) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("pledge")&fq=((((destinationPlanId:(306))-(sourcePlanId:(306)))+OR+(((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-21 08:50:47.579 INFO (qtp1581078471-44) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(306))-(sourcePlanId:(306)))+OR+(((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-21 08:50:47.579 INFO (qtp1581078471-42) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("pledge")&fq=((((destinationPlanId:(306))-(sourcePlanId:(306)))+OR+(((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=1 +2023-09-21 08:50:47.580 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=newMoney&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(306))-(sourcePlanId:(306)))+OR+(((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-21 08:50:47.580 INFO (qtp1581078471-21) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("pledge")&fq=(((sourcePlanId:(306))-(destinationPlanId:(306))))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-21 08:50:47.580 INFO (qtp1581078471-46) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((destinationPlanId:(306))-(sourcePlanId:(306)))+OR+(((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=2 +2023-09-21 08:50:47.580 INFO (qtp1581078471-45) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=newMoney&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("pledge")&fq=((((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:false))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-21 08:50:47.580 INFO (qtp1581078471-42) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=newMoney&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=((((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:false))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-21 08:50:47.581 INFO (qtp1581078471-46) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("paid"+OR+"commitment")&fq=(((sourcePlanId:(306))-(destinationPlanId:(306))))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-21 08:50:47.581 INFO (qtp1581078471-16) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&stats=true&fl=newMoney&fl=id&fl=amountUSD&fl=sourceClusterBehavior&fl=destinationClusterBehavior&fl=ClusterBoundary&fl=sourceClusterId&fl=destinationClusterId&fl=sourceClusterName&fl=destinationClusterName&fl=sourcePlanBehavior&fl=destinationPlanBehavior&fl=PlanBoundary&fl=sourcePlanId&fl=destinationPlanId&fl=sourcePlanId&fl=destinationPlanId&fl=updatedAt&start=0&fq=flowStatus:("pledge")&fq=((((destinationPlanId:(306))-(sourcePlanId:(306)))+OR+(((sourcePlanId:(306))+AND+(destinationPlanId:(306)))+AND+newMoney:true)))&rows=5000000&wt=json&stats.field=amountUSD&stats.field=updatedAt} hits=0 status=0 QTime=0 +2023-09-21 11:41:11.763 INFO (qtp1581078471-19) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=4 +2023-09-21 11:42:07.255 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777647251357696000)} 0 6 +2023-09-21 11:42:07.258 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-21 11:42:07.392 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777647251504496640)} 0 1 +2023-09-21 11:42:07.394 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 0 +2023-09-21 11:42:07.541 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-103 (1777647251659685888)]} 0 4 +2023-09-21 11:42:07.552 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-92 (1777647251673317376)]} 0 1 +2023-09-21 11:42:07.562 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-97 (1777647251684851712)]} 0 0 +2023-09-21 11:42:07.570 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-91 (1777647251693240320)]} 0 0 +2023-09-21 11:42:07.578 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-99 (1777647251701628928)]} 0 0 +2023-09-21 11:42:07.586 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-93 (1777647251710017536)]} 0 0 +2023-09-21 11:42:07.594 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-100 (1777647251718406144)]} 0 0 +2023-09-21 11:42:07.605 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-102 (1777647251729940480)]} 0 0 +2023-09-21 11:42:07.614 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-105 (1777647251738329088)]} 0 0 +2023-09-21 11:42:07.621 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-98 (1777647251746717696)]} 0 0 +2023-09-21 11:42:07.634 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-109 (1777647251760349184)]} 0 0 +2023-09-21 11:42:07.642 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-96 (1777647251768737792)]} 0 0 +2023-09-21 11:42:07.650 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-108 (1777647251777126400)]} 0 0 +2023-09-21 11:42:07.658 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-101 (1777647251784466432)]} 0 0 +2023-09-21 11:42:07.665 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-104 (1777647251792855040)]} 0 0 +2023-09-21 11:42:07.673 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-106 (1777647251800195072)]} 0 0 +2023-09-21 11:42:07.680 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-107 (1777647251808583680)]} 0 0 +2023-09-21 11:42:07.688 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-95 (1777647251816972288)]} 0 0 +2023-09-21 11:42:07.699 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-94 (1777647251828506624)]} 0 0 +2023-09-21 11:42:07.711 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-90 (1777647251841089536)]} 0 0 +2023-09-21 11:42:07.735 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.736 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.736 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.736 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.736 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.736 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.736 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.736 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 11:42:07.736 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 11:42:07.736 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 11:42:07.741 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 11:42:07.741 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 11:42:07.744 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 11:42:07.744 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 11:42:07.747 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 11:42:07.747 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 11:42:07.752 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 11:42:07.752 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 11:42:07.758 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 11:42:07.759 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 42 +2023-09-21 11:42:07.775 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=*&sort=id+asc&rows=100000&wt=json} hits=20 status=0 QTime=7 +2023-09-21 11:42:07.784 INFO (qtp1581078471-45) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=AoEqcHJvamVjdC05OQ%3D%3D&sort=id+asc&rows=100000&wt=json} hits=20 status=0 QTime=0 +2023-09-21 11:42:07.789 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={solrVersion=5.1&core=fts&path=/solr&port=8983&host=solr&wt=json}{deleteByQuery=projectId:(91 92 93 94 95) (-1777647251919732736)} 0 2 +2023-09-21 11:42:07.796 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.796 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.796 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.796 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.796 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.796 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.796 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.796 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 11:42:07.796 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 11:42:07.796 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 11:42:07.803 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 11:42:07.803 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 11:42:07.807 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 11:42:07.807 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 11:42:07.811 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 11:42:07.811 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 11:42:07.817 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 11:42:07.817 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 11:42:07.821 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 11:42:07.822 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 31 +2023-09-21 11:42:07.830 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={solrVersion=5.1&core=fts&path=/solr&port=8983&host=solr&wt=json}{deleteByQuery=projectId:(96 97 98) (-1777647251959578624)} 0 6 +2023-09-21 11:42:07.839 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.839 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.839 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.839 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.839 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.840 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.840 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.840 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 11:42:07.840 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 11:42:07.840 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 11:42:07.845 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 11:42:07.845 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 11:42:07.849 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 11:42:07.849 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 11:42:07.853 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 11:42:07.853 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 11:42:07.859 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 11:42:07.859 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 11:42:07.864 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 11:42:07.864 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 33 +2023-09-21 11:42:07.867 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&wt=json} hits=12 status=0 QTime=0 +2023-09-21 11:42:07.884 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777647252017250304)} 0 4 +2023-09-21 11:42:07.887 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.887 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.887 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.887 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.887 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.887 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.887 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:07.887 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 11:42:07.887 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 11:42:07.887 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 11:42:07.891 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 11:42:07.891 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 11:42:07.895 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 11:42:07.895 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 11:42:07.900 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 11:42:07.900 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 11:42:07.903 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 11:42:07.903 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 11:42:07.909 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 11:42:07.911 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 26 +2023-09-21 11:42:07.914 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777647252052901888)} 0 0 +2023-09-21 11:42:07.916 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-21 11:42:07.966 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-111 (1777647252106379264)]} 0 2 +2023-09-21 11:42:07.973 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-114 (1777647252115816448)]} 0 0 +2023-09-21 11:42:07.981 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-115 (1777647252124205056)]} 0 0 +2023-09-21 11:42:07.989 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-112 (1777647252132593664)]} 0 0 +2023-09-21 11:42:08.000 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-113 (1777647252144128000)]} 0 0 +2023-09-21 11:42:08.008 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[project-110 (1777647252152516608)]} 0 0 +2023-09-21 11:42:08.030 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:08.030 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:08.030 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:08.030 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:08.030 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:08.030 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:08.030 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:08.030 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 11:42:08.030 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 11:42:08.030 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 11:42:08.034 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 11:42:08.034 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 11:42:08.038 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 11:42:08.038 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 11:42:08.042 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 11:42:08.042 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 11:42:08.046 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 11:42:08.046 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 11:42:08.050 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 11:42:08.050 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 39 +2023-09-21 11:42:08.053 INFO (qtp1581078471-45) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=*&sort=id+asc&rows=100000&wt=json} hits=6 status=0 QTime=0 +2023-09-21 11:42:08.055 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&fl=projectId&cursorMark=AoErcHJvamVjdC0xMTU%3D&sort=id+asc&rows=100000&wt=json} hits=6 status=0 QTime=0 +2023-09-21 11:42:08.059 INFO (qtp1581078471-48) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=docType:project&rows=10&wt=json} hits=6 status=0 QTime=0 +2023-09-21 11:42:08.066 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777647252211236864)} 0 2 +2023-09-21 11:42:08.069 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:08.069 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:08.069 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:08.069 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:08.069 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:08.069 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:08.069 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:42:08.069 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 11:42:08.070 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 11:42:08.070 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 11:42:08.073 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 11:42:08.074 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 11:42:08.078 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 11:42:08.078 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 11:42:08.082 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 11:42:08.082 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 11:42:08.086 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 11:42:08.086 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 11:42:08.092 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 11:42:08.094 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 27 +2023-09-21 11:42:08.097 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777647252244791296)} 0 1 +2023-09-21 11:42:08.100 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 1 +2023-09-21 11:42:44.921 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=0 +2023-09-21 11:43:16.571 INFO (qtp1581078471-45) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=0 status=0 QTime=0 +2023-09-21 11:43:16.578 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777647324050227200)} 0 3 +2023-09-21 11:43:16.592 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=id:(27 OR 28 OR 29) AND docType:flow (-1777647324067004416)} 0 1 +2023-09-21 11:43:16.656 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[25 (1777647324133064704), 26 (1777647324135161856)]} 0 2 +2023-09-21 11:43:16.679 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.679 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.679 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.679 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.679 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.679 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.679 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.679 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 11:43:16.679 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 11:43:16.679 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 11:43:16.684 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 11:43:16.684 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 11:43:16.687 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 11:43:16.687 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 11:43:16.689 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 11:43:16.689 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 11:43:16.694 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 11:43:16.694 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 11:43:16.698 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 11:43:16.699 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 36 +2023-09-21 11:43:16.701 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=2 status=0 QTime=0 +2023-09-21 11:43:16.708 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777647324188639232)} 0 1 +2023-09-21 11:43:16.738 INFO (qtp1581078471-49) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[26 (1777647324217999360)]} 0 2 +2023-09-21 11:43:16.763 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.763 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.763 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.763 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.763 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.763 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.763 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.763 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 11:43:16.763 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 11:43:16.763 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 11:43:16.766 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 11:43:16.767 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 11:43:16.771 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 11:43:16.771 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 11:43:16.774 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 11:43:16.774 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 11:43:16.777 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 11:43:16.777 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 11:43:16.783 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 11:43:16.785 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 41 +2023-09-21 11:43:16.788 INFO (qtp1581078471-49) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=1 status=0 QTime=0 +2023-09-21 11:43:16.793 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777647324276719616)} 0 1 +2023-09-21 11:43:16.798 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=id:(27 OR 28 OR 29) AND docType:flow (-1777647324283011072)} 0 0 +2023-09-21 11:43:16.819 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{add=[26 (1777647324303982592)]} 0 1 +2023-09-21 11:43:16.842 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.842 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.842 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.842 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.842 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.842 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.842 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:16.843 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 11:43:16.843 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 11:43:16.843 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 11:43:16.846 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 11:43:16.846 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 11:43:16.850 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 11:43:16.850 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 11:43:16.854 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 11:43:16.854 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 11:43:16.857 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 11:43:16.857 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 11:43:16.861 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms +2023-09-21 11:43:16.865 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{commit=} 0 42 +2023-09-21 11:43:16.868 INFO (qtp1581078471-45) [ x:fts] o.a.s.c.S.Request [fts] webapp=/solr path=/select params={q=*:*&wt=json} hits=1 status=0 QTime=0 +2023-09-21 11:43:16.873 INFO (qtp1581078471-48) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=*:* (-1777647324360605696)} 0 2 +2023-09-21 11:43:16.878 INFO (qtp1581078471-45) [ x:fts] o.a.s.u.p.LogUpdateProcessorFactory [fts] webapp=/solr path=/update params={wt=json}{deleteByQuery=id:(27 OR 28 OR 29) AND docType:flow (-1777647324366897152)} 0 1 +2023-09-21 11:43:31.875 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:31.876 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourceUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:31.876 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationGlobalClusterId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:31.876 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=sourcePlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:31.876 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationUsageYearName,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:31.876 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationPlanId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:31.876 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.f.UnInvertedField UnInverted multi-valued field {field=destinationLocationId,memSize=4320,tindexSize=32,time=0,phase1=0,nTerms=0,bigTerms=0,termInstances=0,uses=0} +2023-09-21 11:43:31.876 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-09-21 11:43:31.876 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: ar +2023-09-21 11:43:31.876 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(ar) +2023-09-21 11:43:31.881 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: en +2023-09-21 11:43:31.881 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(en) +2023-09-21 11:43:31.889 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: fr +2023-09-21 11:43:31.889 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(fr) +2023-09-21 11:43:31.892 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: und +2023-09-21 11:43:31.892 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(und) +2023-09-21 11:43:31.896 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SuggestComponent buildOnCommit: es +2023-09-21 11:43:31.896 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.s.s.SolrSuggester SolrSuggester.build(es) +2023-09-21 11:43:31.900 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms diff --git a/tests/data/test/hpc/solr_logs/solr.log.6 b/tests/data/test/hpc/solr_logs/solr.log.6 new file mode 100644 index 00000000..1dd7f04b --- /dev/null +++ b/tests/data/test/hpc/solr_logs/solr.log.6 @@ -0,0 +1,79 @@ +2023-10-06 13:35:41.025 INFO (main) [ ] o.e.j.u.log Logging initialized @474ms to org.eclipse.jetty.util.log.Slf4jLog +2023-10-06 13:35:41.137 INFO (main) [ ] o.e.j.s.Server jetty-9.4.44.v20210927; built: 2021-09-27T23:02:44.612Z; git: 8da83308eeca865e495e53ef315a249d63ba9332; jvm 11.0.20.1+1 +2023-10-06 13:35:41.142 INFO (main) [ ] o.e.j.d.p.ScanningAppProvider Deployment monitor [file:///opt/solr-8.11.2/server/contexts/] at interval 0 +2023-10-06 13:35:41.301 INFO (main) [ ] o.e.j.w.StandardDescriptorProcessor NO JSP Support for /solr, did not find org.apache.jasper.servlet.JspServlet +2023-10-06 13:35:41.306 INFO (main) [ ] o.e.j.s.session DefaultSessionIdManager workerName=node0 +2023-10-06 13:35:41.306 INFO (main) [ ] o.e.j.s.session No SessionScavenger set, using defaults +2023-10-06 13:35:41.307 INFO (main) [ ] o.e.j.s.session node0 Scavenging every 660000ms +2023-10-06 13:35:41.341 INFO (main) [ ] o.a.s.s.SolrDispatchFilter Using logger factory org.apache.logging.slf4j.Log4jLoggerFactory +2023-10-06 13:35:41.344 INFO (main) [ ] o.a.s.s.SolrDispatchFilter ___ _ Welcome to Apache Solr™ version 8.11.2 +2023-10-06 13:35:41.344 INFO (main) [ ] o.a.s.s.SolrDispatchFilter / __| ___| |_ _ Starting in standalone mode on port 8983 +2023-10-06 13:35:41.344 INFO (main) [ ] o.a.s.s.SolrDispatchFilter \__ \/ _ \ | '_| Install dir: /opt/solr +2023-10-06 13:35:41.344 INFO (main) [ ] o.a.s.s.SolrDispatchFilter |___/\___/_|_| Start time: 2023-10-06T13:35:41.344608Z +2023-10-06 13:35:41.356 INFO (main) [ ] o.a.s.c.SolrPaths Using system property solr.solr.home: /var/solr/data +2023-10-06 13:35:41.356 INFO (main) [ ] o.a.s.c.SolrXmlConfig Loading container configuration from /var/solr/data/solr.xml +2023-10-06 13:35:41.402 INFO (main) [ ] o.a.s.c.SolrXmlConfig MBean server found: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3, but no JMX reporters were configured - adding default JMX reporter. +2023-10-06 13:35:41.670 INFO (main) [ ] o.a.s.h.c.HttpShardHandlerFactory Host whitelist initialized: WhitelistHostChecker [whitelistHosts=null, whitelistHostCheckingEnabled=true] +2023-10-06 13:35:41.773 WARN (main) [ ] o.e.j.u.s.S.config Trusting all certificates configured for Client@670ce331[provider=null,keyStore=null,trustStore=null] +2023-10-06 13:35:41.773 WARN (main) [ ] o.e.j.u.s.S.config No Client EndPointIdentificationAlgorithm configured for Client@670ce331[provider=null,keyStore=null,trustStore=null] +2023-10-06 13:35:41.847 WARN (main) [ ] o.e.j.u.s.S.config Trusting all certificates configured for Client@70c0a3d5[provider=null,keyStore=null,trustStore=null] +2023-10-06 13:35:41.847 WARN (main) [ ] o.e.j.u.s.S.config No Client EndPointIdentificationAlgorithm configured for Client@70c0a3d5[provider=null,keyStore=null,trustStore=null] +2023-10-06 13:35:41.873 WARN (main) [ ] o.a.s.c.CoreContainer Not all security plugins configured! authentication=disabled authorization=disabled. Solr is only as secure as you make it. Consider configuring authentication/authorization before exposing Solr to users internal or external. See https://s.apache.org/solrsecurity for more info +2023-10-06 13:35:41.932 INFO (main) [ ] o.a.s.c.TransientSolrCoreCacheDefault Allocating transient core cache for max 2147483647 cores with initial capacity of 1024 +2023-10-06 13:35:41.937 INFO (main) [ ] o.a.s.h.a.MetricsHistoryHandler No .system collection, keeping metrics history in memory. +2023-10-06 13:35:41.966 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.node' (registry 'solr.node') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-10-06 13:35:41.966 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.jvm' (registry 'solr.jvm') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-10-06 13:35:41.966 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.jetty' (registry 'solr.jetty') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-10-06 13:35:41.985 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Found 1 core definitions underneath /var/solr/data +2023-10-06 13:35:41.985 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Cores are: [fts] +2023-10-06 13:35:42.022 INFO (main) [ ] o.e.j.s.h.ContextHandler Started o.e.j.w.WebAppContext@1cd201a8{/solr,file:///opt/solr-8.11.2/server/solr-webapp/webapp/,AVAILABLE}{/opt/solr-8.11.2/server/solr-webapp/webapp} +2023-10-06 13:35:42.028 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrResourceLoader Added 64 libs to classloader, from paths: [/opt/solr/contrib/analysis-extras/lib, /opt/solr/contrib/analysis-extras/lucene-libs, /opt/solr/contrib/extraction/lib, /opt/solr/contrib/langid/lib, /opt/solr/dist] +2023-10-06 13:35:42.031 INFO (main) [ ] o.e.j.s.AbstractConnector Started ServerConnector@64a8c844{HTTP/1.1, (http/1.1, h2c)}{0.0.0.0:8983} +2023-10-06 13:35:42.031 INFO (main) [ ] o.e.j.s.Server Started @1481ms +2023-10-06 13:35:42.180 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrConfig Using Lucene MatchVersion: 8.11.2 +2023-10-06 13:35:42.183 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.SolrIndexConfig IndexWriter infoStream solr logging is enabled +2023-10-06 13:35:42.221 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.IndexSchema Schema name=drupal-4.2.9-solr-8.x-0 +2023-10-06 13:35:42.393 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.IndexSchema Loaded schema drupal-4.2.9-solr-8.x-0/1.6 with uniqueid field id +2023-10-06 13:35:42.460 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.CoreContainer Creating SolrCore 'fts' using configuration from instancedir /var/solr/data/fts, trusted=true +2023-10-06 13:35:42.471 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.core.fts' (registry 'solr.core.fts') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-10-06 13:35:42.477 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrCore [[fts] ] Opening new SolrCore at [/var/solr/data/fts], dataDir=[/var/solr/data/fts/data/] +2023-10-06 13:35:42.500 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.r.XSLTResponseWriter xsltCacheLifetimeSeconds=5 +2023-10-06 13:35:42.685 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.UpdateHandler Using UpdateLog implementation: org.apache.solr.update.UpdateLog +2023-10-06 13:35:42.685 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.UpdateLog Initializing UpdateLog: dataDir= defaultSyncLevel=FLUSH numRecordsToKeep=100 maxNumLogsToKeep=10 numVersionBuckets=65536 +2023-10-06 13:35:42.696 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.CommitTracker Hard AutoCommit: if uncommitted for 15000ms; if 10000 uncommitted docs; +2023-10-06 13:35:42.696 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.CommitTracker Soft AutoCommit: disabled +2023-10-06 13:35:42.732 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.r.ManagedResourceStorage File-based storage initialized to use dir: /var/solr/data/fts/conf +2023-10-06 13:35:42.738 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SpellCheckComponent Initializing spell checkers +2023-10-06 13:35:42.741 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=ar,field=spellcheck_ar,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-10-06 13:35:42.741 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=en,field=spellcheck_en,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-10-06 13:35:42.741 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=fr,field=spellcheck_fr,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-10-06 13:35:42.741 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=und,field=spellcheck_und,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-10-06 13:35:42.741 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=zh_hans,field=spellcheck_zh_hans,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=1,minPrefix=1,maxInspections=5,minQueryLength=1,maxQueryFrequency=0.01,onlyMorePopular=true} +2023-10-06 13:35:42.741 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=es,field=spellcheck_es,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-10-06 13:35:42.742 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Initializing SuggestComponent +2023-10-06 13:35:42.743 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=ar,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_ar,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-06 13:35:42.755 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=ar,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_ar,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-06 13:35:42.756 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: ar = SuggesterListener [core=org.apache.solr.core.SolrCore@6638c0f1, suggester=SolrSuggester [ name=ar, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-10-06 13:35:42.756 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=en,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_en,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-06 13:35:42.757 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=en,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_en,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-06 13:35:42.757 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: en = SuggesterListener [core=org.apache.solr.core.SolrCore@6638c0f1, suggester=SolrSuggester [ name=en, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-10-06 13:35:42.757 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=fr,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_fr,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-06 13:35:42.759 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=fr,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_fr,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-06 13:35:42.759 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: fr = SuggesterListener [core=org.apache.solr.core.SolrCore@6638c0f1, suggester=SolrSuggester [ name=fr, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-10-06 13:35:42.759 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=und,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_und,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-06 13:35:42.760 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=und,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_und,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-06 13:35:42.760 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: und = SuggesterListener [core=org.apache.solr.core.SolrCore@6638c0f1, suggester=SolrSuggester [ name=und, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-10-06 13:35:42.760 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=es,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_es,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-06 13:35:42.761 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=es,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_es,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-06 13:35:42.761 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: es = SuggesterListener [core=org.apache.solr.core.SolrCore@6638c0f1, suggester=SolrSuggester [ name=es, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-10-06 13:35:42.762 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.QueryElevationComponent Loading QueryElevation from: /var/solr/data/fts/conf/elevate.xml +2023-10-06 13:35:42.767 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.ReplicationHandler Commits will be reserved for 10000 ms +2023-10-06 13:35:42.800 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.S.Request [fts] webapp=null path=null params={q=static+firstSearcher+warming+in+solrconfig.xml&distrib=false&event=firstSearcher} hits=0 status=0 QTime=20 +2023-10-06 13:35:42.800 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-10-06 13:35:42.800 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: ar +2023-10-06 13:35:42.800 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: en +2023-10-06 13:35:42.800 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: fr +2023-10-06 13:35:42.800 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: und +2023-10-06 13:35:42.800 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: zh_hans +2023-10-06 13:35:42.800 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: es +2023-10-06 13:35:42.803 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms diff --git a/tests/data/test/hpc/solr_logs/solr.log.7 b/tests/data/test/hpc/solr_logs/solr.log.7 new file mode 100644 index 00000000..ed5c4f77 --- /dev/null +++ b/tests/data/test/hpc/solr_logs/solr.log.7 @@ -0,0 +1,79 @@ +2023-10-10 07:57:55.374 INFO (main) [ ] o.e.j.u.log Logging initialized @667ms to org.eclipse.jetty.util.log.Slf4jLog +2023-10-10 07:57:55.516 INFO (main) [ ] o.e.j.s.Server jetty-9.4.44.v20210927; built: 2021-09-27T23:02:44.612Z; git: 8da83308eeca865e495e53ef315a249d63ba9332; jvm 11.0.20.1+1 +2023-10-10 07:57:55.525 INFO (main) [ ] o.e.j.d.p.ScanningAppProvider Deployment monitor [file:///opt/solr-8.11.2/server/contexts/] at interval 0 +2023-10-10 07:57:55.914 INFO (main) [ ] o.e.j.w.StandardDescriptorProcessor NO JSP Support for /solr, did not find org.apache.jasper.servlet.JspServlet +2023-10-10 07:57:55.923 INFO (main) [ ] o.e.j.s.session DefaultSessionIdManager workerName=node0 +2023-10-10 07:57:55.923 INFO (main) [ ] o.e.j.s.session No SessionScavenger set, using defaults +2023-10-10 07:57:55.927 INFO (main) [ ] o.e.j.s.session node0 Scavenging every 600000ms +2023-10-10 07:57:55.994 INFO (main) [ ] o.a.s.s.SolrDispatchFilter Using logger factory org.apache.logging.slf4j.Log4jLoggerFactory +2023-10-10 07:57:56.011 INFO (main) [ ] o.a.s.s.SolrDispatchFilter ___ _ Welcome to Apache Solr™ version 8.11.2 +2023-10-10 07:57:56.011 INFO (main) [ ] o.a.s.s.SolrDispatchFilter / __| ___| |_ _ Starting in standalone mode on port 8983 +2023-10-10 07:57:56.011 INFO (main) [ ] o.a.s.s.SolrDispatchFilter \__ \/ _ \ | '_| Install dir: /opt/solr +2023-10-10 07:57:56.011 INFO (main) [ ] o.a.s.s.SolrDispatchFilter |___/\___/_|_| Start time: 2023-10-10T07:57:56.011381Z +2023-10-10 07:57:56.034 INFO (main) [ ] o.a.s.c.SolrPaths Using system property solr.solr.home: /var/solr/data +2023-10-10 07:57:56.035 INFO (main) [ ] o.a.s.c.SolrXmlConfig Loading container configuration from /var/solr/data/solr.xml +2023-10-10 07:57:56.096 INFO (main) [ ] o.a.s.c.SolrXmlConfig MBean server found: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3, but no JMX reporters were configured - adding default JMX reporter. +2023-10-10 07:57:56.390 INFO (main) [ ] o.a.s.h.c.HttpShardHandlerFactory Host whitelist initialized: WhitelistHostChecker [whitelistHosts=null, whitelistHostCheckingEnabled=true] +2023-10-10 07:57:56.469 WARN (main) [ ] o.e.j.u.s.S.config Trusting all certificates configured for Client@670ce331[provider=null,keyStore=null,trustStore=null] +2023-10-10 07:57:56.469 WARN (main) [ ] o.e.j.u.s.S.config No Client EndPointIdentificationAlgorithm configured for Client@670ce331[provider=null,keyStore=null,trustStore=null] +2023-10-10 07:57:56.572 WARN (main) [ ] o.e.j.u.s.S.config Trusting all certificates configured for Client@70c0a3d5[provider=null,keyStore=null,trustStore=null] +2023-10-10 07:57:56.572 WARN (main) [ ] o.e.j.u.s.S.config No Client EndPointIdentificationAlgorithm configured for Client@70c0a3d5[provider=null,keyStore=null,trustStore=null] +2023-10-10 07:57:56.611 WARN (main) [ ] o.a.s.c.CoreContainer Not all security plugins configured! authentication=disabled authorization=disabled. Solr is only as secure as you make it. Consider configuring authentication/authorization before exposing Solr to users internal or external. See https://s.apache.org/solrsecurity for more info +2023-10-10 07:57:56.684 INFO (main) [ ] o.a.s.c.TransientSolrCoreCacheDefault Allocating transient core cache for max 2147483647 cores with initial capacity of 1024 +2023-10-10 07:57:56.690 INFO (main) [ ] o.a.s.h.a.MetricsHistoryHandler No .system collection, keeping metrics history in memory. +2023-10-10 07:57:56.722 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.node' (registry 'solr.node') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-10-10 07:57:56.722 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.jvm' (registry 'solr.jvm') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-10-10 07:57:56.723 INFO (main) [ ] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.jetty' (registry 'solr.jetty') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-10-10 07:57:56.744 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Found 1 core definitions underneath /var/solr/data +2023-10-10 07:57:56.745 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Cores are: [fts] +2023-10-10 07:57:56.791 INFO (main) [ ] o.e.j.s.h.ContextHandler Started o.e.j.w.WebAppContext@1cd201a8{/solr,file:///opt/solr-8.11.2/server/solr-webapp/webapp/,AVAILABLE}{/opt/solr-8.11.2/server/solr-webapp/webapp} +2023-10-10 07:57:56.805 INFO (main) [ ] o.e.j.s.AbstractConnector Started ServerConnector@64a8c844{HTTP/1.1, (http/1.1, h2c)}{0.0.0.0:8983} +2023-10-10 07:57:56.806 INFO (main) [ ] o.e.j.s.Server Started @2098ms +2023-10-10 07:57:56.810 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrResourceLoader Added 64 libs to classloader, from paths: [/opt/solr/contrib/analysis-extras/lib, /opt/solr/contrib/analysis-extras/lucene-libs, /opt/solr/contrib/extraction/lib, /opt/solr/contrib/langid/lib, /opt/solr/dist] +2023-10-10 07:57:56.972 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrConfig Using Lucene MatchVersion: 8.11.2 +2023-10-10 07:57:56.975 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.SolrIndexConfig IndexWriter infoStream solr logging is enabled +2023-10-10 07:57:57.024 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.IndexSchema Schema name=drupal-4.2.9-solr-8.x-0 +2023-10-10 07:57:57.205 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.IndexSchema Loaded schema drupal-4.2.9-solr-8.x-0/1.6 with uniqueid field id +2023-10-10 07:57:57.265 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.CoreContainer Creating SolrCore 'fts' using configuration from instancedir /var/solr/data/fts, trusted=true +2023-10-10 07:57:57.278 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.m.r.SolrJmxReporter JMX monitoring for 'solr.core.fts' (registry 'solr.core.fts') enabled at server: com.sun.jmx.mbeanserver.JmxMBeanServer@43df23d3 +2023-10-10 07:57:57.284 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.c.SolrCore [[fts] ] Opening new SolrCore at [/var/solr/data/fts], dataDir=[/var/solr/data/fts/data/] +2023-10-10 07:57:57.299 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.r.XSLTResponseWriter xsltCacheLifetimeSeconds=5 +2023-10-10 07:57:57.502 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.UpdateHandler Using UpdateLog implementation: org.apache.solr.update.UpdateLog +2023-10-10 07:57:57.502 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.UpdateLog Initializing UpdateLog: dataDir= defaultSyncLevel=FLUSH numRecordsToKeep=100 maxNumLogsToKeep=10 numVersionBuckets=65536 +2023-10-10 07:57:57.512 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.CommitTracker Hard AutoCommit: if uncommitted for 15000ms; if 10000 uncommitted docs; +2023-10-10 07:57:57.512 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.u.CommitTracker Soft AutoCommit: disabled +2023-10-10 07:57:57.546 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.r.ManagedResourceStorage File-based storage initialized to use dir: /var/solr/data/fts/conf +2023-10-10 07:57:57.551 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SpellCheckComponent Initializing spell checkers +2023-10-10 07:57:57.554 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=ar,field=spellcheck_ar,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-10-10 07:57:57.554 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=en,field=spellcheck_en,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-10-10 07:57:57.554 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=fr,field=spellcheck_fr,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-10-10 07:57:57.554 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=und,field=spellcheck_und,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-10-10 07:57:57.554 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=zh_hans,field=spellcheck_zh_hans,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=1,minPrefix=1,maxInspections=5,minQueryLength=1,maxQueryFrequency=0.01,onlyMorePopular=true} +2023-10-10 07:57:57.554 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.DirectSolrSpellChecker init: {name=es,field=spellcheck_es,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01,thresholdTokenFrequency=.01,onlyMorePopular=true} +2023-10-10 07:57:57.555 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Initializing SuggestComponent +2023-10-10 07:57:57.556 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=ar,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_ar,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-10 07:57:57.564 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=ar,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_ar,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-10 07:57:57.564 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: ar = SuggesterListener [core=org.apache.solr.core.SolrCore@1ae6bbc5, suggester=SolrSuggester [ name=ar, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-10-10 07:57:57.565 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=en,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_en,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-10 07:57:57.566 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=en,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_en,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-10 07:57:57.566 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: en = SuggesterListener [core=org.apache.solr.core.SolrCore@1ae6bbc5, suggester=SolrSuggester [ name=en, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-10-10 07:57:57.566 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=fr,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_fr,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-10 07:57:57.567 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=fr,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_fr,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-10 07:57:57.567 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: fr = SuggesterListener [core=org.apache.solr.core.SolrCore@1ae6bbc5, suggester=SolrSuggester [ name=fr, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-10-10 07:57:57.567 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=und,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_und,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-10 07:57:57.568 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=und,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_und,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-10 07:57:57.568 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: und = SuggesterListener [core=org.apache.solr.core.SolrCore@1ae6bbc5, suggester=SolrSuggester [ name=und, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-10-10 07:57:57.568 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester init: {name=es,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_es,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-10 07:57:57.569 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.s.s.SolrSuggester Dictionary loaded with params: {name=es,lookupImpl=AnalyzingInfixLookupFactory,dictionaryImpl=DocumentDictionaryFactory,field=twm_suggest,suggestAnalyzerFieldType=text_es,contextField=sm_context_tags,buildOnCommit=true,buildOnStartup=false} +2023-10-10 07:57:57.569 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.SuggestComponent Registering searcher listener for suggester: es = SuggesterListener [core=org.apache.solr.core.SolrCore@1ae6bbc5, suggester=SolrSuggester [ name=es, sourceLocation=null, storeDir=, lookupImpl=AnalyzingInfixLookupFactory, dictionaryImpl=DocumentDictionaryFactory, sizeInBytes=48 ], buildOnCommit=true, buildOnOptimize=false, buildOnStartup=false, isCoreReload=false] +2023-10-10 07:57:57.570 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.c.QueryElevationComponent Loading QueryElevation from: /var/solr/data/fts/conf/elevate.xml +2023-10-10 07:57:57.574 INFO (coreLoadExecutor-13-thread-1) [ x:fts] o.a.s.h.ReplicationHandler Commits will be reserved for 10000 ms +2023-10-10 07:57:57.596 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.S.Request [fts] webapp=null path=null params={q=static+firstSearcher+warming+in+solrconfig.xml&distrib=false&event=firstSearcher} hits=0 status=0 QTime=16 +2023-10-10 07:57:57.596 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.QuerySenderListener QuerySenderListener done. +2023-10-10 07:57:57.596 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: ar +2023-10-10 07:57:57.596 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: en +2023-10-10 07:57:57.596 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: fr +2023-10-10 07:57:57.596 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: und +2023-10-10 07:57:57.596 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: zh_hans +2023-10-10 07:57:57.596 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.h.c.SpellCheckComponent Loading spell index for spellchecker: es +2023-10-10 07:57:57.599 INFO (searcherExecutor-15-thread-1-processing-x:fts) [ x:fts] o.a.s.c.SolrCore [fts] Registered new searcher autowarm time: 0 ms diff --git a/tests/data/test/hpc/solr_logs/solr_gc.log.0 b/tests/data/test/hpc/solr_logs/solr_gc.log.0 new file mode 100644 index 00000000..0a0a7a6a --- /dev/null +++ b/tests/data/test/hpc/solr_logs/solr_gc.log.0 @@ -0,0 +1,131 @@ +[2023-09-11T10:53:59.589+0000][0.020s] Heap region size: 1M +[2023-09-11T10:53:59.628+0000][0.059s] Using G1 +[2023-09-11T10:53:59.628+0000][0.059s] Heap address: 0x00000000e0000000, size: 512 MB, Compressed Oops mode: 32-bit +[2023-09-11T10:53:59.629+0000][0.060s] Mark closed archive regions in map: [0x00000000fff00000, 0x00000000fff65ff8] +[2023-09-11T10:53:59.629+0000][0.060s] Mark open archive regions in map: [0x00000000ffe00000, 0x00000000ffe42ff8] +[2023-09-11T10:54:00.065+0000][0.496s] GC(0) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-11T10:54:00.065+0000][0.496s] GC(0) Using 5 workers of 5 for evacuation +[2023-09-11T10:54:00.072+0000][0.503s] GC(0) Pre Evacuate Collection Set: 0.0ms +[2023-09-11T10:54:00.073+0000][0.504s] GC(0) Evacuate Collection Set: 6.4ms +[2023-09-11T10:54:00.073+0000][0.504s] GC(0) Post Evacuate Collection Set: 0.5ms +[2023-09-11T10:54:00.073+0000][0.504s] GC(0) Other: 0.8ms +[2023-09-11T10:54:00.073+0000][0.504s] GC(0) Eden regions: 25->0(304) +[2023-09-11T10:54:00.073+0000][0.504s] GC(0) Survivor regions: 0->3(4) +[2023-09-11T10:54:00.073+0000][0.504s] GC(0) Old regions: 2->2 +[2023-09-11T10:54:00.073+0000][0.504s] GC(0) Humongous regions: 0->0 +[2023-09-11T10:54:00.073+0000][0.504s] GC(0) Metaspace: 7499K(8576K)->7499K(8576K) NonClass: 6572K(7424K)->6572K(7424K) Class: 926K(1152K)->926K(1152K) +[2023-09-11T10:54:00.074+0000][0.504s] GC(0) Pause Young (Normal) (G1 Evacuation Pause) 25M->3M(512M) 8.759ms +[2023-09-11T10:54:00.074+0000][0.505s] GC(0) User=0.03s Sys=0.00s Real=0.01s +[2023-09-11T10:54:00.483+0000][0.914s] GC(1) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-11T10:54:00.483+0000][0.914s] GC(1) Using 5 workers of 5 for evacuation +[2023-09-11T10:54:00.504+0000][0.935s] GC(1) Pre Evacuate Collection Set: 0.0ms +[2023-09-11T10:54:00.504+0000][0.935s] GC(1) Evacuate Collection Set: 20.0ms +[2023-09-11T10:54:00.504+0000][0.935s] GC(1) Post Evacuate Collection Set: 0.4ms +[2023-09-11T10:54:00.504+0000][0.935s] GC(1) Other: 0.4ms +[2023-09-11T10:54:00.504+0000][0.935s] GC(1) Eden regions: 70->0(56) +[2023-09-11T10:54:00.504+0000][0.935s] GC(1) Survivor regions: 3->10(10) +[2023-09-11T10:54:00.505+0000][0.936s] GC(1) Old regions: 2->11 +[2023-09-11T10:54:00.505+0000][0.936s] GC(1) Humongous regions: 4->4 +[2023-09-11T10:54:00.505+0000][0.936s] GC(1) Metaspace: 18503K(19456K)->18503K(19456K) NonClass: 16236K(16896K)->16236K(16896K) Class: 2267K(2560K)->2267K(2560K) +[2023-09-11T10:54:00.505+0000][0.936s] GC(1) Pause Young (Normal) (G1 Evacuation Pause) 77M->23M(512M) 21.890ms +[2023-09-11T10:54:00.505+0000][0.936s] GC(1) User=0.05s Sys=0.06s Real=0.03s +[2023-09-11T10:54:00.549+0000][0.979s] GC(2) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-11T10:54:00.549+0000][0.980s] GC(2) Using 5 workers of 5 for evacuation +[2023-09-11T10:54:00.558+0000][0.989s] GC(2) Pre Evacuate Collection Set: 0.0ms +[2023-09-11T10:54:00.558+0000][0.989s] GC(2) Evacuate Collection Set: 8.8ms +[2023-09-11T10:54:00.559+0000][0.989s] GC(2) Post Evacuate Collection Set: 0.3ms +[2023-09-11T10:54:00.559+0000][0.990s] GC(2) Other: 0.4ms +[2023-09-11T10:54:00.559+0000][0.990s] GC(2) Eden regions: 19->0(47) +[2023-09-11T10:54:00.559+0000][0.990s] GC(2) Survivor regions: 10->1(4) +[2023-09-11T10:54:00.559+0000][0.990s] GC(2) Old regions: 11->21 +[2023-09-11T10:54:00.559+0000][0.990s] GC(2) Humongous regions: 4->4 +[2023-09-11T10:54:00.560+0000][0.990s] GC(2) Metaspace: 20257K(21120K)->20257K(21120K) NonClass: 17844K(18432K)->17844K(18432K) Class: 2412K(2688K)->2412K(2688K) +[2023-09-11T10:54:00.560+0000][0.991s] GC(2) Pause Young (Normal) (G1 Evacuation Pause) 42M->24M(512M) 11.177ms +[2023-09-11T10:54:00.560+0000][0.991s] GC(2) User=0.02s Sys=0.01s Real=0.01s +[2023-09-11T10:54:00.565+0000][0.996s] GC(3) Pause Young (Concurrent Start) (Metadata GC Threshold) +[2023-09-11T10:54:00.566+0000][0.997s] GC(3) Using 5 workers of 5 for evacuation +[2023-09-11T10:54:00.566+0000][0.997s] GC(3) Pre Evacuate Collection Set: 0.0ms +[2023-09-11T10:54:00.566+0000][0.997s] GC(3) Evacuate Collection Set: 0.5ms +[2023-09-11T10:54:00.567+0000][0.997s] GC(3) Post Evacuate Collection Set: 0.1ms +[2023-09-11T10:54:00.567+0000][0.998s] GC(3) Other: 0.3ms +[2023-09-11T10:54:00.567+0000][0.998s] GC(3) Eden regions: 2->0(65) +[2023-09-11T10:54:00.567+0000][0.998s] GC(3) Survivor regions: 1->1(6) +[2023-09-11T10:54:00.567+0000][0.998s] GC(3) Old regions: 21->21 +[2023-09-11T10:54:00.567+0000][0.998s] GC(3) Humongous regions: 4->4 +[2023-09-11T10:54:00.567+0000][0.998s] GC(3) Metaspace: 20426K(21296K)->20426K(21296K) NonClass: 17994K(18608K)->17994K(18608K) Class: 2432K(2688K)->2432K(2688K) +[2023-09-11T10:54:00.567+0000][0.998s] GC(3) Pause Young (Concurrent Start) (Metadata GC Threshold) 25M->23M(512M) 1.808ms +[2023-09-11T10:54:00.567+0000][0.998s] GC(3) User=0.01s Sys=0.00s Real=0.00s +[2023-09-11T10:54:00.567+0000][0.998s] GC(4) Concurrent Cycle +[2023-09-11T10:54:00.568+0000][0.998s] GC(4) Concurrent Clear Claimed Marks +[2023-09-11T10:54:00.568+0000][0.999s] GC(4) Concurrent Clear Claimed Marks 0.137ms +[2023-09-11T10:54:00.568+0000][0.999s] GC(4) Concurrent Scan Root Regions +[2023-09-11T10:54:00.568+0000][0.999s] GC(4) Concurrent Scan Root Regions 0.339ms +[2023-09-11T10:54:00.568+0000][0.999s] GC(4) Concurrent Mark (0.999s) +[2023-09-11T10:54:00.568+0000][0.999s] GC(4) Concurrent Mark From Roots +[2023-09-11T10:54:00.568+0000][0.999s] GC(4) Using 1 workers of 1 for marking +[2023-09-11T10:54:00.581+0000][1.012s] GC(4) Concurrent Mark From Roots 12.721ms +[2023-09-11T10:54:00.581+0000][1.012s] GC(4) Concurrent Preclean +[2023-09-11T10:54:00.581+0000][1.012s] GC(4) Concurrent Preclean 0.203ms +[2023-09-11T10:54:00.582+0000][1.013s] GC(4) Concurrent Mark (0.999s, 1.013s) 13.348ms +[2023-09-11T10:54:00.582+0000][1.013s] GC(4) Pause Remark +[2023-09-11T10:54:00.583+0000][1.014s] GC(4) Cleaned string and symbol table, strings: 8473 processed, 26 removed, symbols: 61959 processed, 38 removed +[2023-09-11T10:54:00.583+0000][1.014s] GC(4) Pause Remark 28M->28M(512M) 1.604ms +[2023-09-11T10:54:00.584+0000][1.015s] GC(4) User=0.01s Sys=0.00s Real=0.00s +[2023-09-11T10:54:00.584+0000][1.015s] GC(4) Concurrent Rebuild Remembered Sets +[2023-09-11T10:54:00.595+0000][1.026s] GC(4) Concurrent Rebuild Remembered Sets 10.898ms +[2023-09-11T10:54:00.595+0000][1.026s] GC(4) Pause Cleanup +[2023-09-11T10:54:00.595+0000][1.026s] GC(4) Pause Cleanup 30M->30M(512M) 0.246ms +[2023-09-11T10:54:00.595+0000][1.026s] GC(4) User=0.00s Sys=0.00s Real=0.00s +[2023-09-11T10:54:00.595+0000][1.026s] GC(4) Concurrent Cleanup for Next Mark +[2023-09-11T10:54:00.596+0000][1.027s] GC(4) Concurrent Cleanup for Next Mark 0.356ms +[2023-09-11T10:54:00.596+0000][1.027s] GC(4) Concurrent Cycle 28.526ms +[2023-09-11T10:54:00.988+0000][1.419s] GC(5) Pause Young (Concurrent Start) (G1 Evacuation Pause) +[2023-09-11T10:54:00.988+0000][1.419s] GC(5) Using 5 workers of 5 for evacuation +[2023-09-11T10:54:00.991+0000][1.422s] GC(5) Pre Evacuate Collection Set: 0.1ms +[2023-09-11T10:54:00.991+0000][1.422s] GC(5) Evacuate Collection Set: 2.6ms +[2023-09-11T10:54:00.991+0000][1.422s] GC(5) Post Evacuate Collection Set: 0.4ms +[2023-09-11T10:54:00.991+0000][1.422s] GC(5) Other: 0.4ms +[2023-09-11T10:54:00.991+0000][1.422s] GC(5) Eden regions: 65->0(88) +[2023-09-11T10:54:00.992+0000][1.422s] GC(5) Survivor regions: 1->4(9) +[2023-09-11T10:54:00.992+0000][1.422s] GC(5) Old regions: 21->21 +[2023-09-11T10:54:00.992+0000][1.423s] GC(5) Humongous regions: 4->4 +[2023-09-11T10:54:00.992+0000][1.423s] GC(5) Metaspace: 28791K(29952K)->28791K(29952K) NonClass: 25342K(26112K)->25342K(26112K) Class: 3448K(3840K)->3448K(3840K) +[2023-09-11T10:54:00.992+0000][1.423s] GC(5) Pause Young (Concurrent Start) (G1 Evacuation Pause) 88M->27M(512M) 4.029ms +[2023-09-11T10:54:00.992+0000][1.423s] GC(5) User=0.01s Sys=0.00s Real=0.00s +[2023-09-11T10:54:00.992+0000][1.423s] GC(6) Concurrent Cycle +[2023-09-11T10:54:00.992+0000][1.423s] GC(6) Concurrent Clear Claimed Marks +[2023-09-11T10:54:00.992+0000][1.423s] GC(6) Concurrent Clear Claimed Marks 0.133ms +[2023-09-11T10:54:00.992+0000][1.423s] GC(6) Concurrent Scan Root Regions +[2023-09-11T10:54:00.994+0000][1.425s] GC(6) Concurrent Scan Root Regions 1.516ms +[2023-09-11T10:54:00.994+0000][1.425s] GC(6) Concurrent Mark (1.425s) +[2023-09-11T10:54:00.994+0000][1.425s] GC(6) Concurrent Mark From Roots +[2023-09-11T10:54:00.994+0000][1.425s] GC(6) Using 1 workers of 1 for marking +[2023-09-11T10:54:01.007+0000][1.438s] GC(6) Concurrent Mark From Roots 12.627ms +[2023-09-11T10:54:01.007+0000][1.438s] GC(6) Concurrent Preclean +[2023-09-11T10:54:01.007+0000][1.438s] GC(6) Concurrent Preclean 0.155ms +[2023-09-11T10:54:01.007+0000][1.438s] GC(6) Concurrent Mark (1.425s, 1.438s) 13.216ms +[2023-09-11T10:54:01.008+0000][1.438s] GC(6) Pause Remark +[2023-09-11T10:54:01.009+0000][1.440s] GC(6) Cleaned string and symbol table, strings: 12287 processed, 0 removed, symbols: 84999 processed, 43 removed +[2023-09-11T10:54:01.010+0000][1.440s] GC(6) Pause Remark 31M->31M(512M) 2.009ms +[2023-09-11T10:54:01.010+0000][1.441s] GC(6) User=0.01s Sys=0.00s Real=0.00s +[2023-09-11T10:54:01.010+0000][1.441s] GC(6) Concurrent Rebuild Remembered Sets +[2023-09-11T10:54:01.017+0000][1.448s] GC(6) Concurrent Rebuild Remembered Sets 7.110ms +[2023-09-11T10:54:01.017+0000][1.448s] GC(6) Pause Cleanup +[2023-09-11T10:54:01.017+0000][1.448s] GC(6) Pause Cleanup 33M->33M(512M) 0.191ms +[2023-09-11T10:54:01.017+0000][1.448s] GC(6) User=0.00s Sys=0.00s Real=0.00s +[2023-09-11T10:54:01.018+0000][1.448s] GC(6) Concurrent Cleanup for Next Mark +[2023-09-11T10:54:01.018+0000][1.449s] GC(6) Concurrent Cleanup for Next Mark 0.449ms +[2023-09-11T10:54:01.018+0000][1.449s] GC(6) Concurrent Cycle 26.249ms +[2023-09-11T10:54:01.318+0000][1.748s] GC(7) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-11T10:54:01.318+0000][1.749s] GC(7) Using 5 workers of 5 for evacuation +[2023-09-11T10:54:01.339+0000][1.770s] GC(7) Pre Evacuate Collection Set: 0.1ms +[2023-09-11T10:54:01.339+0000][1.770s] GC(7) Evacuate Collection Set: 19.8ms +[2023-09-11T10:54:01.339+0000][1.770s] GC(7) Post Evacuate Collection Set: 1.4ms +[2023-09-11T10:54:01.340+0000][1.770s] GC(7) Other: 0.4ms +[2023-09-11T10:54:01.340+0000][1.771s] GC(7) Eden regions: 88->0(117) +[2023-09-11T10:54:01.340+0000][1.771s] GC(7) Survivor regions: 4->12(12) +[2023-09-11T10:54:01.340+0000][1.771s] GC(7) Old regions: 21->21 +[2023-09-11T10:54:01.340+0000][1.771s] GC(7) Humongous regions: 7->5 +[2023-09-11T10:54:01.340+0000][1.771s] GC(7) Metaspace: 35946K(37120K)->35946K(37120K) NonClass: 31566K(32256K)->31566K(32256K) Class: 4379K(4864K)->4379K(4864K) +[2023-09-11T10:54:01.340+0000][1.771s] GC(7) Pause Young (Normal) (G1 Evacuation Pause) 118M->36M(512M) 22.760ms +[2023-09-11T10:54:01.341+0000][1.772s] GC(7) User=0.05s Sys=0.02s Real=0.02s diff --git a/tests/data/test/hpc/solr_logs/solr_gc.log.1 b/tests/data/test/hpc/solr_logs/solr_gc.log.1 new file mode 100644 index 00000000..3e0bcd24 --- /dev/null +++ b/tests/data/test/hpc/solr_logs/solr_gc.log.1 @@ -0,0 +1,181 @@ +[2023-09-13T10:46:59.253+0000][0.061s] Heap region size: 1M +[2023-09-13T10:46:59.299+0000][0.107s] Using G1 +[2023-09-13T10:46:59.299+0000][0.107s] Heap address: 0x00000000e0000000, size: 512 MB, Compressed Oops mode: 32-bit +[2023-09-13T10:46:59.300+0000][0.108s] Mark closed archive regions in map: [0x00000000fff00000, 0x00000000fff65ff8] +[2023-09-13T10:46:59.300+0000][0.108s] Mark open archive regions in map: [0x00000000ffe00000, 0x00000000ffe42ff8] +[2023-09-13T10:46:59.621+0000][0.429s] GC(0) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-13T10:46:59.622+0000][0.430s] GC(0) Using 5 workers of 5 for evacuation +[2023-09-13T10:46:59.630+0000][0.437s] GC(0) Pre Evacuate Collection Set: 0.0ms +[2023-09-13T10:46:59.630+0000][0.438s] GC(0) Evacuate Collection Set: 5.6ms +[2023-09-13T10:46:59.630+0000][0.438s] GC(0) Post Evacuate Collection Set: 1.7ms +[2023-09-13T10:46:59.630+0000][0.438s] GC(0) Other: 1.1ms +[2023-09-13T10:46:59.630+0000][0.438s] GC(0) Eden regions: 25->0(304) +[2023-09-13T10:46:59.630+0000][0.438s] GC(0) Survivor regions: 0->3(4) +[2023-09-13T10:46:59.631+0000][0.438s] GC(0) Old regions: 2->2 +[2023-09-13T10:46:59.631+0000][0.439s] GC(0) Humongous regions: 0->0 +[2023-09-13T10:46:59.631+0000][0.439s] GC(0) Metaspace: 6662K(8192K)->6662K(8192K) NonClass: 5838K(7168K)->5838K(7168K) Class: 824K(1024K)->824K(1024K) +[2023-09-13T10:46:59.631+0000][0.439s] GC(0) Pause Young (Normal) (G1 Evacuation Pause) 25M->3M(512M) 9.886ms +[2023-09-13T10:46:59.632+0000][0.439s] GC(0) User=0.02s Sys=0.01s Real=0.01s +[2023-09-13T10:47:00.067+0000][0.875s] GC(1) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-13T10:47:00.068+0000][0.875s] GC(1) Using 5 workers of 5 for evacuation +[2023-09-13T10:47:00.077+0000][0.884s] GC(1) Pre Evacuate Collection Set: 0.0ms +[2023-09-13T10:47:00.077+0000][0.885s] GC(1) Evacuate Collection Set: 8.6ms +[2023-09-13T10:47:00.077+0000][0.885s] GC(1) Post Evacuate Collection Set: 0.3ms +[2023-09-13T10:47:00.077+0000][0.885s] GC(1) Other: 0.3ms +[2023-09-13T10:47:00.077+0000][0.885s] GC(1) Eden regions: 71->0(56) +[2023-09-13T10:47:00.077+0000][0.885s] GC(1) Survivor regions: 3->10(10) +[2023-09-13T10:47:00.077+0000][0.885s] GC(1) Old regions: 2->11 +[2023-09-13T10:47:00.077+0000][0.885s] GC(1) Humongous regions: 4->4 +[2023-09-13T10:47:00.077+0000][0.885s] GC(1) Metaspace: 18487K(19456K)->18487K(19456K) NonClass: 16218K(16896K)->16218K(16896K) Class: 2268K(2560K)->2268K(2560K) +[2023-09-13T10:47:00.077+0000][0.885s] GC(1) Pause Young (Normal) (G1 Evacuation Pause) 78M->23M(512M) 9.866ms +[2023-09-13T10:47:00.077+0000][0.885s] GC(1) User=0.02s Sys=0.02s Real=0.01s +[2023-09-13T10:47:00.126+0000][0.933s] GC(2) Pause Young (Concurrent Start) (Metadata GC Threshold) +[2023-09-13T10:47:00.126+0000][0.934s] GC(2) Using 5 workers of 5 for evacuation +[2023-09-13T10:47:00.134+0000][0.941s] GC(2) Pre Evacuate Collection Set: 0.1ms +[2023-09-13T10:47:00.134+0000][0.941s] GC(2) Evacuate Collection Set: 7.2ms +[2023-09-13T10:47:00.134+0000][0.942s] GC(2) Post Evacuate Collection Set: 0.3ms +[2023-09-13T10:47:00.134+0000][0.942s] GC(2) Other: 0.4ms +[2023-09-13T10:47:00.134+0000][0.942s] GC(2) Eden regions: 20->0(71) +[2023-09-13T10:47:00.134+0000][0.942s] GC(2) Survivor regions: 10->1(9) +[2023-09-13T10:47:00.134+0000][0.942s] GC(2) Old regions: 11->22 +[2023-09-13T10:47:00.134+0000][0.942s] GC(2) Humongous regions: 4->4 +[2023-09-13T10:47:00.134+0000][0.942s] GC(2) Metaspace: 20335K(21248K)->20335K(21248K) NonClass: 17910K(18432K)->17910K(18432K) Class: 2424K(2816K)->2424K(2816K) +[2023-09-13T10:47:00.134+0000][0.942s] GC(2) Pause Young (Concurrent Start) (Metadata GC Threshold) 43M->25M(512M) 8.692ms +[2023-09-13T10:47:00.134+0000][0.942s] GC(2) User=0.02s Sys=0.01s Real=0.00s +[2023-09-13T10:47:00.134+0000][0.942s] GC(3) Concurrent Cycle +[2023-09-13T10:47:00.135+0000][0.942s] GC(3) Concurrent Clear Claimed Marks +[2023-09-13T10:47:00.135+0000][0.942s] GC(3) Concurrent Clear Claimed Marks 0.087ms +[2023-09-13T10:47:00.135+0000][0.943s] GC(3) Concurrent Scan Root Regions +[2023-09-13T10:47:00.135+0000][0.943s] GC(3) Concurrent Scan Root Regions 0.231ms +[2023-09-13T10:47:00.135+0000][0.943s] GC(3) Concurrent Mark (0.943s) +[2023-09-13T10:47:00.135+0000][0.943s] GC(3) Concurrent Mark From Roots +[2023-09-13T10:47:00.135+0000][0.943s] GC(3) Using 1 workers of 1 for marking +[2023-09-13T10:47:00.148+0000][0.956s] GC(3) Concurrent Mark From Roots 12.606ms +[2023-09-13T10:47:00.148+0000][0.956s] GC(3) Concurrent Preclean +[2023-09-13T10:47:00.148+0000][0.956s] GC(3) Concurrent Preclean 0.159ms +[2023-09-13T10:47:00.148+0000][0.956s] GC(3) Concurrent Mark (0.943s, 0.956s) 13.023ms +[2023-09-13T10:47:00.148+0000][0.956s] GC(3) Pause Remark +[2023-09-13T10:47:00.150+0000][0.958s] GC(3) Cleaned string and symbol table, strings: 8447 processed, 0 removed, symbols: 61427 processed, 40 removed +[2023-09-13T10:47:00.150+0000][0.958s] GC(3) Pause Remark 28M->28M(512M) 1.790ms +[2023-09-13T10:47:00.150+0000][0.958s] GC(3) User=0.00s Sys=0.00s Real=0.00s +[2023-09-13T10:47:00.150+0000][0.958s] GC(3) Concurrent Rebuild Remembered Sets +[2023-09-13T10:47:00.161+0000][0.969s] GC(3) Concurrent Rebuild Remembered Sets 10.683ms +[2023-09-13T10:47:00.161+0000][0.969s] GC(3) Pause Cleanup +[2023-09-13T10:47:00.161+0000][0.969s] GC(3) Pause Cleanup 31M->31M(512M) 0.190ms +[2023-09-13T10:47:00.162+0000][0.969s] GC(3) User=0.00s Sys=0.00s Real=0.00s +[2023-09-13T10:47:00.162+0000][0.969s] GC(3) Concurrent Cleanup for Next Mark +[2023-09-13T10:47:00.162+0000][0.970s] GC(3) Concurrent Cleanup for Next Mark 0.334ms +[2023-09-13T10:47:00.162+0000][0.970s] GC(3) Concurrent Cycle 27.570ms +[2023-09-13T10:47:00.587+0000][1.395s] GC(4) Pause Young (Concurrent Start) (G1 Evacuation Pause) +[2023-09-13T10:47:00.587+0000][1.395s] GC(4) Using 5 workers of 5 for evacuation +[2023-09-13T10:47:00.591+0000][1.399s] GC(4) Pre Evacuate Collection Set: 0.1ms +[2023-09-13T10:47:00.592+0000][1.399s] GC(4) Evacuate Collection Set: 3.3ms +[2023-09-13T10:47:00.592+0000][1.400s] GC(4) Post Evacuate Collection Set: 0.4ms +[2023-09-13T10:47:00.592+0000][1.400s] GC(4) Other: 0.7ms +[2023-09-13T10:47:00.592+0000][1.400s] GC(4) Eden regions: 71->0(93) +[2023-09-13T10:47:00.592+0000][1.400s] GC(4) Survivor regions: 1->4(9) +[2023-09-13T10:47:00.592+0000][1.400s] GC(4) Old regions: 22->22 +[2023-09-13T10:47:00.592+0000][1.400s] GC(4) Humongous regions: 4->4 +[2023-09-13T10:47:00.592+0000][1.400s] GC(4) Metaspace: 27123K(28360K)->27123K(28360K) NonClass: 23896K(24776K)->23896K(24776K) Class: 3226K(3584K)->3226K(3584K) +[2023-09-13T10:47:00.593+0000][1.400s] GC(4) Pause Young (Concurrent Start) (G1 Evacuation Pause) 96M->27M(512M) 5.588ms +[2023-09-13T10:47:00.593+0000][1.400s] GC(4) User=0.02s Sys=0.01s Real=0.00s +[2023-09-13T10:47:00.593+0000][1.401s] GC(5) Concurrent Cycle +[2023-09-13T10:47:00.593+0000][1.401s] GC(5) Concurrent Clear Claimed Marks +[2023-09-13T10:47:00.593+0000][1.401s] GC(5) Concurrent Clear Claimed Marks 0.203ms +[2023-09-13T10:47:00.593+0000][1.401s] GC(5) Concurrent Scan Root Regions +[2023-09-13T10:47:00.595+0000][1.403s] GC(5) Concurrent Scan Root Regions 1.470ms +[2023-09-13T10:47:00.595+0000][1.403s] GC(5) Concurrent Mark (1.403s) +[2023-09-13T10:47:00.595+0000][1.403s] GC(5) Concurrent Mark From Roots +[2023-09-13T10:47:00.595+0000][1.403s] GC(5) Using 1 workers of 1 for marking +[2023-09-13T10:47:00.612+0000][1.420s] GC(5) Concurrent Mark From Roots 16.875ms +[2023-09-13T10:47:00.612+0000][1.420s] GC(5) Concurrent Preclean +[2023-09-13T10:47:00.613+0000][1.420s] GC(5) Concurrent Preclean 0.190ms +[2023-09-13T10:47:00.613+0000][1.420s] GC(5) Concurrent Mark (1.403s, 1.420s) 17.561ms +[2023-09-13T10:47:00.613+0000][1.421s] GC(5) Pause Remark +[2023-09-13T10:47:00.615+0000][1.423s] GC(5) Cleaned string and symbol table, strings: 11731 processed, 26 removed, symbols: 79138 processed, 35 removed +[2023-09-13T10:47:00.615+0000][1.423s] GC(5) Pause Remark 30M->30M(512M) 2.174ms +[2023-09-13T10:47:00.615+0000][1.423s] GC(5) User=0.01s Sys=0.00s Real=0.01s +[2023-09-13T10:47:00.615+0000][1.423s] GC(5) Concurrent Rebuild Remembered Sets +[2023-09-13T10:47:00.624+0000][1.432s] GC(5) Concurrent Rebuild Remembered Sets 8.957ms +[2023-09-13T10:47:00.625+0000][1.432s] GC(5) Pause Cleanup +[2023-09-13T10:47:00.625+0000][1.432s] GC(5) Pause Cleanup 31M->31M(512M) 0.180ms +[2023-09-13T10:47:00.625+0000][1.433s] GC(5) User=0.00s Sys=0.00s Real=0.00s +[2023-09-13T10:47:00.625+0000][1.433s] GC(5) Concurrent Cleanup for Next Mark +[2023-09-13T10:47:00.625+0000][1.433s] GC(5) Concurrent Cleanup for Next Mark 0.417ms +[2023-09-13T10:47:00.625+0000][1.433s] GC(5) Concurrent Cycle 32.671ms +[2023-09-13T10:47:00.932+0000][1.740s] GC(6) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-13T10:47:00.932+0000][1.740s] GC(6) Using 5 workers of 5 for evacuation +[2023-09-13T10:47:00.946+0000][1.753s] GC(6) Pre Evacuate Collection Set: 0.0ms +[2023-09-13T10:47:00.946+0000][1.754s] GC(6) Evacuate Collection Set: 6.7ms +[2023-09-13T10:47:00.946+0000][1.754s] GC(6) Post Evacuate Collection Set: 6.6ms +[2023-09-13T10:47:00.946+0000][1.754s] GC(6) Other: 0.4ms +[2023-09-13T10:47:00.946+0000][1.754s] GC(6) Eden regions: 93->0(130) +[2023-09-13T10:47:00.946+0000][1.754s] GC(6) Survivor regions: 4->12(13) +[2023-09-13T10:47:00.946+0000][1.754s] GC(6) Old regions: 22->22 +[2023-09-13T10:47:00.947+0000][1.754s] GC(6) Humongous regions: 7->5 +[2023-09-13T10:47:00.947+0000][1.754s] GC(6) Metaspace: 35436K(36680K)->35436K(36680K) NonClass: 31133K(31944K)->31133K(31944K) Class: 4302K(4736K)->4302K(4736K) +[2023-09-13T10:47:00.947+0000][1.754s] GC(6) Pause Young (Normal) (G1 Evacuation Pause) 123M->37M(512M) 14.801ms +[2023-09-13T10:47:00.947+0000][1.755s] GC(6) User=0.04s Sys=0.00s Real=0.02s +[2023-09-13T10:47:01.408+0000][2.216s] GC(7) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-13T10:47:01.409+0000][2.216s] GC(7) Using 5 workers of 5 for evacuation +[2023-09-13T10:47:01.430+0000][2.237s] GC(7) Pre Evacuate Collection Set: 0.0ms +[2023-09-13T10:47:01.430+0000][2.238s] GC(7) Evacuate Collection Set: 18.4ms +[2023-09-13T10:47:01.430+0000][2.238s] GC(7) Post Evacuate Collection Set: 2.5ms +[2023-09-13T10:47:01.430+0000][2.238s] GC(7) Other: 0.4ms +[2023-09-13T10:47:01.430+0000][2.238s] GC(7) Eden regions: 130->0(158) +[2023-09-13T10:47:01.430+0000][2.238s] GC(7) Survivor regions: 12->14(18) +[2023-09-13T10:47:01.430+0000][2.238s] GC(7) Old regions: 22->25 +[2023-09-13T10:47:01.431+0000][2.238s] GC(7) Humongous regions: 6->6 +[2023-09-13T10:47:01.431+0000][2.238s] GC(7) Metaspace: 43177K(44616K)->43177K(44616K) NonClass: 37974K(38856K)->37974K(38856K) Class: 5203K(5760K)->5203K(5760K) +[2023-09-13T10:47:01.431+0000][2.239s] GC(7) Pause Young (Normal) (G1 Evacuation Pause) 168M->42M(512M) 22.413ms +[2023-09-13T10:47:01.431+0000][2.239s] GC(7) User=0.03s Sys=0.04s Real=0.02s +[2023-09-13T10:48:00.741+0000][61.549s] GC(8) Pause Young (Concurrent Start) (Metadata GC Threshold) +[2023-09-13T10:48:00.742+0000][61.550s] GC(8) Using 5 workers of 5 for evacuation +[2023-09-13T10:48:00.761+0000][61.569s] GC(8) Pre Evacuate Collection Set: 0.9ms +[2023-09-13T10:48:00.761+0000][61.569s] GC(8) Evacuate Collection Set: 15.4ms +[2023-09-13T10:48:00.762+0000][61.569s] GC(8) Post Evacuate Collection Set: 0.7ms +[2023-09-13T10:48:00.762+0000][61.570s] GC(8) Other: 2.9ms +[2023-09-13T10:48:00.762+0000][61.570s] GC(8) Eden regions: 55->0(177) +[2023-09-13T10:48:00.762+0000][61.570s] GC(8) Survivor regions: 14->9(22) +[2023-09-13T10:48:00.762+0000][61.570s] GC(8) Old regions: 25->33 +[2023-09-13T10:48:00.762+0000][61.570s] GC(8) Humongous regions: 6->6 +[2023-09-13T10:48:00.762+0000][61.570s] GC(8) Metaspace: 46566K(47908K)->46566K(47908K) NonClass: 40881K(41636K)->40881K(41636K) Class: 5684K(6272K)->5684K(6272K) +[2023-09-13T10:48:00.763+0000][61.570s] GC(8) Pause Young (Concurrent Start) (Metadata GC Threshold) 97M->45M(512M) 21.125ms +[2023-09-13T10:48:00.763+0000][61.571s] GC(8) User=0.06s Sys=0.02s Real=0.02s +[2023-09-13T10:48:00.763+0000][61.571s] GC(9) Concurrent Cycle +[2023-09-13T10:48:00.763+0000][61.571s] GC(9) Concurrent Clear Claimed Marks +[2023-09-13T10:48:00.763+0000][61.571s] GC(9) Concurrent Clear Claimed Marks 0.229ms +[2023-09-13T10:48:00.763+0000][61.571s] GC(9) Concurrent Scan Root Regions +[2023-09-13T10:48:00.767+0000][61.575s] GC(9) Concurrent Scan Root Regions 4.061ms +[2023-09-13T10:48:00.768+0000][61.576s] GC(9) Concurrent Mark (61.576s) +[2023-09-13T10:48:00.768+0000][61.576s] GC(9) Concurrent Mark From Roots +[2023-09-13T10:48:00.768+0000][61.576s] GC(9) Using 1 workers of 1 for marking +[2023-09-13T10:48:00.793+0000][61.601s] GC(9) Concurrent Mark From Roots 24.923ms +[2023-09-13T10:48:00.793+0000][61.601s] GC(9) Concurrent Preclean +[2023-09-13T10:48:00.793+0000][61.601s] GC(9) Concurrent Preclean 0.208ms +[2023-09-13T10:48:00.793+0000][61.601s] GC(9) Concurrent Mark (61.576s, 61.601s) 25.573ms +[2023-09-13T10:48:00.793+0000][61.601s] GC(9) Pause Remark +[2023-09-13T10:48:00.798+0000][61.606s] GC(9) Cleaned string and symbol table, strings: 19985 processed, 6 removed, symbols: 133409 processed, 556 removed +[2023-09-13T10:48:00.799+0000][61.607s] GC(9) Pause Remark 47M->47M(512M) 5.212ms +[2023-09-13T10:48:00.799+0000][61.607s] GC(9) User=0.02s Sys=0.00s Real=0.01s +[2023-09-13T10:48:00.799+0000][61.607s] GC(9) Concurrent Rebuild Remembered Sets +[2023-09-13T10:48:00.809+0000][61.617s] GC(9) Concurrent Rebuild Remembered Sets 10.546ms +[2023-09-13T10:48:00.810+0000][61.618s] GC(9) Pause Cleanup +[2023-09-13T10:48:00.810+0000][61.618s] GC(9) Pause Cleanup 47M->47M(512M) 0.214ms +[2023-09-13T10:48:00.810+0000][61.618s] GC(9) User=0.00s Sys=0.00s Real=0.00s +[2023-09-13T10:48:00.810+0000][61.618s] GC(9) Concurrent Cleanup for Next Mark +[2023-09-13T10:48:00.814+0000][61.622s] GC(9) Concurrent Cleanup for Next Mark 3.553ms +[2023-09-13T10:48:00.814+0000][61.622s] GC(9) Concurrent Cycle 50.922ms +[2023-09-13T18:42:37.355+0000][22815.935s] GC(10) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-13T18:42:37.357+0000][22815.937s] GC(10) Using 5 workers of 5 for evacuation +[2023-09-13T18:42:37.403+0000][22815.983s] GC(10) Pre Evacuate Collection Set: 4.9ms +[2023-09-13T18:42:37.403+0000][22815.983s] GC(10) Evacuate Collection Set: 33.4ms +[2023-09-13T18:42:37.404+0000][22815.984s] GC(10) Post Evacuate Collection Set: 3.5ms +[2023-09-13T18:42:37.404+0000][22815.984s] GC(10) Other: 8.0ms +[2023-09-13T18:42:37.404+0000][22815.984s] GC(10) Eden regions: 183->0(298) +[2023-09-13T18:42:37.405+0000][22815.984s] GC(10) Survivor regions: 9->9(24) +[2023-09-13T18:42:37.405+0000][22815.985s] GC(10) Old regions: 33->33 +[2023-09-13T18:42:37.405+0000][22815.985s] GC(10) Humongous regions: 6->6 +[2023-09-13T18:42:37.405+0000][22815.985s] GC(10) Metaspace: 48400K(49956K)->48400K(49956K) NonClass: 42503K(43428K)->42503K(43428K) Class: 5897K(6528K)->5897K(6528K) +[2023-09-13T18:42:37.405+0000][22815.985s] GC(10) Pause Young (Normal) (G1 Evacuation Pause) 228M->45M(512M) 50.321ms +[2023-09-13T18:42:37.406+0000][22815.985s] GC(10) User=0.18s Sys=0.00s Real=0.05s diff --git a/tests/data/test/hpc/solr_logs/solr_gc.log.2 b/tests/data/test/hpc/solr_logs/solr_gc.log.2 new file mode 100644 index 00000000..beb73e44 --- /dev/null +++ b/tests/data/test/hpc/solr_logs/solr_gc.log.2 @@ -0,0 +1,181 @@ +[2023-09-14T08:30:07.981+0000][0.012s] Heap region size: 1M +[2023-09-14T08:30:08.042+0000][0.074s] Using G1 +[2023-09-14T08:30:08.043+0000][0.074s] Heap address: 0x00000000e0000000, size: 512 MB, Compressed Oops mode: 32-bit +[2023-09-14T08:30:08.044+0000][0.076s] Mark closed archive regions in map: [0x00000000fff00000, 0x00000000fff65ff8] +[2023-09-14T08:30:08.044+0000][0.076s] Mark open archive regions in map: [0x00000000ffe00000, 0x00000000ffe42ff8] +[2023-09-14T08:30:08.426+0000][0.457s] GC(0) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T08:30:08.428+0000][0.459s] GC(0) Using 5 workers of 5 for evacuation +[2023-09-14T08:30:08.439+0000][0.470s] GC(0) Pre Evacuate Collection Set: 0.0ms +[2023-09-14T08:30:08.440+0000][0.472s] GC(0) Evacuate Collection Set: 7.6ms +[2023-09-14T08:30:08.440+0000][0.472s] GC(0) Post Evacuate Collection Set: 2.8ms +[2023-09-14T08:30:08.441+0000][0.472s] GC(0) Other: 2.2ms +[2023-09-14T08:30:08.441+0000][0.472s] GC(0) Eden regions: 25->0(304) +[2023-09-14T08:30:08.441+0000][0.473s] GC(0) Survivor regions: 0->3(4) +[2023-09-14T08:30:08.441+0000][0.473s] GC(0) Old regions: 2->2 +[2023-09-14T08:30:08.442+0000][0.473s] GC(0) Humongous regions: 0->0 +[2023-09-14T08:30:08.442+0000][0.473s] GC(0) Metaspace: 6728K(8192K)->6728K(8192K) NonClass: 5892K(7168K)->5892K(7168K) Class: 836K(1024K)->836K(1024K) +[2023-09-14T08:30:08.442+0000][0.473s] GC(0) Pause Young (Normal) (G1 Evacuation Pause) 25M->3M(512M) 16.071ms +[2023-09-14T08:30:08.442+0000][0.474s] GC(0) User=0.03s Sys=0.00s Real=0.02s +[2023-09-14T08:30:08.846+0000][0.877s] GC(1) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T08:30:08.846+0000][0.878s] GC(1) Using 5 workers of 5 for evacuation +[2023-09-14T08:30:08.855+0000][0.886s] GC(1) Pre Evacuate Collection Set: 0.0ms +[2023-09-14T08:30:08.855+0000][0.886s] GC(1) Evacuate Collection Set: 8.2ms +[2023-09-14T08:30:08.855+0000][0.887s] GC(1) Post Evacuate Collection Set: 0.3ms +[2023-09-14T08:30:08.855+0000][0.887s] GC(1) Other: 0.4ms +[2023-09-14T08:30:08.855+0000][0.887s] GC(1) Eden regions: 41->0(42) +[2023-09-14T08:30:08.855+0000][0.887s] GC(1) Survivor regions: 3->6(6) +[2023-09-14T08:30:08.856+0000][0.887s] GC(1) Old regions: 2->10 +[2023-09-14T08:30:08.856+0000][0.887s] GC(1) Humongous regions: 4->4 +[2023-09-14T08:30:08.856+0000][0.887s] GC(1) Metaspace: 15599K(16512K)->15599K(16512K) NonClass: 13673K(14336K)->13673K(14336K) Class: 1926K(2176K)->1926K(2176K) +[2023-09-14T08:30:08.856+0000][0.887s] GC(1) Pause Young (Normal) (G1 Evacuation Pause) 48M->18M(512M) 9.763ms +[2023-09-14T08:30:08.856+0000][0.887s] GC(1) User=0.02s Sys=0.02s Real=0.01s +[2023-09-14T08:30:08.970+0000][1.001s] GC(2) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T08:30:08.970+0000][1.002s] GC(2) Using 5 workers of 5 for evacuation +[2023-09-14T08:30:08.978+0000][1.009s] GC(2) Pre Evacuate Collection Set: 0.0ms +[2023-09-14T08:30:08.978+0000][1.009s] GC(2) Evacuate Collection Set: 7.4ms +[2023-09-14T08:30:08.978+0000][1.010s] GC(2) Post Evacuate Collection Set: 0.3ms +[2023-09-14T08:30:08.978+0000][1.010s] GC(2) Other: 0.3ms +[2023-09-14T08:30:08.978+0000][1.010s] GC(2) Eden regions: 26->0(42) +[2023-09-14T08:30:08.978+0000][1.010s] GC(2) Survivor regions: 6->4(4) +[2023-09-14T08:30:08.978+0000][1.010s] GC(2) Old regions: 10->17 +[2023-09-14T08:30:08.978+0000][1.010s] GC(2) Humongous regions: 4->4 +[2023-09-14T08:30:08.979+0000][1.010s] GC(2) Metaspace: 17452K(18304K)->17452K(18304K) NonClass: 15328K(15872K)->15328K(15872K) Class: 2124K(2432K)->2124K(2432K) +[2023-09-14T08:30:08.979+0000][1.010s] GC(2) Pause Young (Normal) (G1 Evacuation Pause) 44M->23M(512M) 8.605ms +[2023-09-14T08:30:08.979+0000][1.010s] GC(2) User=0.01s Sys=0.00s Real=0.01s +[2023-09-14T08:30:09.049+0000][1.080s] GC(3) Pause Young (Concurrent Start) (Metadata GC Threshold) +[2023-09-14T08:30:09.049+0000][1.081s] GC(3) Using 5 workers of 5 for evacuation +[2023-09-14T08:30:09.051+0000][1.083s] GC(3) Pre Evacuate Collection Set: 0.1ms +[2023-09-14T08:30:09.051+0000][1.083s] GC(3) Evacuate Collection Set: 1.6ms +[2023-09-14T08:30:09.052+0000][1.083s] GC(3) Post Evacuate Collection Set: 0.2ms +[2023-09-14T08:30:09.052+0000][1.083s] GC(3) Other: 0.5ms +[2023-09-14T08:30:09.052+0000][1.083s] GC(3) Eden regions: 24->0(51) +[2023-09-14T08:30:09.052+0000][1.083s] GC(3) Survivor regions: 4->1(6) +[2023-09-14T08:30:09.052+0000][1.083s] GC(3) Old regions: 17->22 +[2023-09-14T08:30:09.052+0000][1.083s] GC(3) Humongous regions: 4->4 +[2023-09-14T08:30:09.052+0000][1.083s] GC(3) Metaspace: 20393K(21248K)->20393K(21248K) NonClass: 17959K(18432K)->17959K(18432K) Class: 2434K(2816K)->2434K(2816K) +[2023-09-14T08:30:09.052+0000][1.084s] GC(3) Pause Young (Concurrent Start) (Metadata GC Threshold) 47M->24M(512M) 3.247ms +[2023-09-14T08:30:09.052+0000][1.084s] GC(3) User=0.00s Sys=0.01s Real=0.01s +[2023-09-14T08:30:09.052+0000][1.084s] GC(4) Concurrent Cycle +[2023-09-14T08:30:09.052+0000][1.084s] GC(4) Concurrent Clear Claimed Marks +[2023-09-14T08:30:09.052+0000][1.084s] GC(4) Concurrent Clear Claimed Marks 0.082ms +[2023-09-14T08:30:09.053+0000][1.084s] GC(4) Concurrent Scan Root Regions +[2023-09-14T08:30:09.053+0000][1.084s] GC(4) Concurrent Scan Root Regions 0.352ms +[2023-09-14T08:30:09.053+0000][1.084s] GC(4) Concurrent Mark (1.084s) +[2023-09-14T08:30:09.053+0000][1.085s] GC(4) Concurrent Mark From Roots +[2023-09-14T08:30:09.053+0000][1.085s] GC(4) Using 1 workers of 1 for marking +[2023-09-14T08:30:09.066+0000][1.097s] GC(4) Concurrent Mark From Roots 12.724ms +[2023-09-14T08:30:09.066+0000][1.097s] GC(4) Concurrent Preclean +[2023-09-14T08:30:09.067+0000][1.098s] GC(4) Concurrent Preclean 0.589ms +[2023-09-14T08:30:09.067+0000][1.098s] GC(4) Concurrent Mark (1.084s, 1.098s) 13.748ms +[2023-09-14T08:30:09.067+0000][1.098s] GC(4) Pause Remark +[2023-09-14T08:30:09.068+0000][1.100s] GC(4) Cleaned string and symbol table, strings: 8478 processed, 26 removed, symbols: 61896 processed, 39 removed +[2023-09-14T08:30:09.069+0000][1.100s] GC(4) Pause Remark 27M->27M(512M) 1.638ms +[2023-09-14T08:30:09.069+0000][1.100s] GC(4) User=0.01s Sys=0.00s Real=0.00s +[2023-09-14T08:30:09.069+0000][1.100s] GC(4) Concurrent Rebuild Remembered Sets +[2023-09-14T08:30:09.079+0000][1.110s] GC(4) Concurrent Rebuild Remembered Sets 9.772ms +[2023-09-14T08:30:09.079+0000][1.110s] GC(4) Pause Cleanup +[2023-09-14T08:30:09.079+0000][1.110s] GC(4) Pause Cleanup 30M->30M(512M) 0.190ms +[2023-09-14T08:30:09.079+0000][1.111s] GC(4) User=0.00s Sys=0.00s Real=0.00s +[2023-09-14T08:30:09.079+0000][1.111s] GC(4) Concurrent Cleanup for Next Mark +[2023-09-14T08:30:09.080+0000][1.111s] GC(4) Concurrent Cleanup for Next Mark 0.479ms +[2023-09-14T08:30:09.080+0000][1.111s] GC(4) Concurrent Cycle 27.467ms +[2023-09-14T08:30:09.397+0000][1.429s] GC(5) Pause Young (Concurrent Start) (G1 Evacuation Pause) +[2023-09-14T08:30:09.397+0000][1.429s] GC(5) Using 5 workers of 5 for evacuation +[2023-09-14T08:30:09.399+0000][1.430s] GC(5) Pre Evacuate Collection Set: 0.1ms +[2023-09-14T08:30:09.399+0000][1.430s] GC(5) Evacuate Collection Set: 1.0ms +[2023-09-14T08:30:09.399+0000][1.430s] GC(5) Post Evacuate Collection Set: 0.2ms +[2023-09-14T08:30:09.399+0000][1.430s] GC(5) Other: 0.4ms +[2023-09-14T08:30:09.399+0000][1.431s] GC(5) Eden regions: 51->0(107) +[2023-09-14T08:30:09.399+0000][1.431s] GC(5) Survivor regions: 1->1(7) +[2023-09-14T08:30:09.399+0000][1.431s] GC(5) Old regions: 22->22 +[2023-09-14T08:30:09.399+0000][1.431s] GC(5) Humongous regions: 4->4 +[2023-09-14T08:30:09.399+0000][1.431s] GC(5) Metaspace: 23372K(24520K)->23372K(24520K) NonClass: 20599K(21448K)->20599K(21448K) Class: 2772K(3072K)->2772K(3072K) +[2023-09-14T08:30:09.400+0000][1.431s] GC(5) Pause Young (Concurrent Start) (G1 Evacuation Pause) 75M->24M(512M) 2.358ms +[2023-09-14T08:30:09.400+0000][1.431s] GC(5) User=0.00s Sys=0.00s Real=0.00s +[2023-09-14T08:30:09.400+0000][1.431s] GC(6) Concurrent Cycle +[2023-09-14T08:30:09.400+0000][1.431s] GC(6) Concurrent Clear Claimed Marks +[2023-09-14T08:30:09.400+0000][1.431s] GC(6) Concurrent Clear Claimed Marks 0.160ms +[2023-09-14T08:30:09.400+0000][1.431s] GC(6) Concurrent Scan Root Regions +[2023-09-14T08:30:09.401+0000][1.432s] GC(6) Concurrent Scan Root Regions 0.503ms +[2023-09-14T08:30:09.401+0000][1.432s] GC(6) Concurrent Mark (1.432s) +[2023-09-14T08:30:09.401+0000][1.432s] GC(6) Concurrent Mark From Roots +[2023-09-14T08:30:09.401+0000][1.432s] GC(6) Using 1 workers of 1 for marking +[2023-09-14T08:30:09.413+0000][1.444s] GC(6) Concurrent Mark From Roots 11.872ms +[2023-09-14T08:30:09.413+0000][1.444s] GC(6) Concurrent Preclean +[2023-09-14T08:30:09.413+0000][1.445s] GC(6) Concurrent Preclean 0.440ms +[2023-09-14T08:30:09.413+0000][1.445s] GC(6) Concurrent Mark (1.432s, 1.445s) 12.627ms +[2023-09-14T08:30:09.413+0000][1.445s] GC(6) Pause Remark +[2023-09-14T08:30:09.415+0000][1.446s] GC(6) Cleaned string and symbol table, strings: 9249 processed, 0 removed, symbols: 68620 processed, 24 removed +[2023-09-14T08:30:09.415+0000][1.446s] GC(6) Pause Remark 28M->28M(512M) 1.549ms +[2023-09-14T08:30:09.415+0000][1.446s] GC(6) User=0.00s Sys=0.00s Real=0.00s +[2023-09-14T08:30:09.415+0000][1.447s] GC(6) Concurrent Rebuild Remembered Sets +[2023-09-14T08:30:09.422+0000][1.454s] GC(6) Concurrent Rebuild Remembered Sets 7.261ms +[2023-09-14T08:30:09.423+0000][1.454s] GC(6) Pause Cleanup +[2023-09-14T08:30:09.423+0000][1.454s] GC(6) Pause Cleanup 30M->30M(512M) 0.209ms +[2023-09-14T08:30:09.423+0000][1.454s] GC(6) User=0.00s Sys=0.00s Real=0.00s +[2023-09-14T08:30:09.423+0000][1.454s] GC(6) Concurrent Cleanup for Next Mark +[2023-09-14T08:30:09.423+0000][1.455s] GC(6) Concurrent Cleanup for Next Mark 0.435ms +[2023-09-14T08:30:09.424+0000][1.455s] GC(6) Concurrent Cycle 23.950ms +[2023-09-14T08:30:09.970+0000][2.002s] GC(7) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T08:30:09.971+0000][2.002s] GC(7) Using 5 workers of 5 for evacuation +[2023-09-14T08:30:09.987+0000][2.019s] GC(7) Pre Evacuate Collection Set: 0.0ms +[2023-09-14T08:30:09.988+0000][2.019s] GC(7) Evacuate Collection Set: 16.2ms +[2023-09-14T08:30:09.988+0000][2.019s] GC(7) Post Evacuate Collection Set: 0.5ms +[2023-09-14T08:30:09.988+0000][2.019s] GC(7) Other: 0.4ms +[2023-09-14T08:30:09.988+0000][2.019s] GC(7) Eden regions: 107->0(136) +[2023-09-14T08:30:09.988+0000][2.019s] GC(7) Survivor regions: 1->11(14) +[2023-09-14T08:30:09.988+0000][2.019s] GC(7) Old regions: 22->22 +[2023-09-14T08:30:09.988+0000][2.019s] GC(7) Humongous regions: 7->5 +[2023-09-14T08:30:09.988+0000][2.020s] GC(7) Metaspace: 34867K(36168K)->34867K(36168K) NonClass: 30631K(31432K)->30631K(31432K) Class: 4236K(4736K)->4236K(4736K) +[2023-09-14T08:30:09.988+0000][2.020s] GC(7) Pause Young (Normal) (G1 Evacuation Pause) 134M->35M(512M) 17.839ms +[2023-09-14T08:30:09.988+0000][2.020s] GC(7) User=0.03s Sys=0.03s Real=0.02s +[2023-09-14T08:30:10.303+0000][2.334s] GC(8) Pause Young (Concurrent Start) (Metadata GC Threshold) +[2023-09-14T08:30:10.303+0000][2.334s] GC(8) Using 5 workers of 5 for evacuation +[2023-09-14T08:30:10.307+0000][2.339s] GC(8) Pre Evacuate Collection Set: 0.1ms +[2023-09-14T08:30:10.307+0000][2.339s] GC(8) Evacuate Collection Set: 4.0ms +[2023-09-14T08:30:10.308+0000][2.339s] GC(8) Post Evacuate Collection Set: 0.3ms +[2023-09-14T08:30:10.308+0000][2.339s] GC(8) Other: 0.3ms +[2023-09-14T08:30:10.308+0000][2.339s] GC(8) Eden regions: 74->0(142) +[2023-09-14T08:30:10.308+0000][2.339s] GC(8) Survivor regions: 11->14(19) +[2023-09-14T08:30:10.308+0000][2.339s] GC(8) Old regions: 22->22 +[2023-09-14T08:30:10.308+0000][2.339s] GC(8) Humongous regions: 6->6 +[2023-09-14T08:30:10.308+0000][2.339s] GC(8) Metaspace: 40220K(41416K)->40220K(41416K) NonClass: 35371K(36040K)->35371K(36040K) Class: 4849K(5376K)->4849K(5376K) +[2023-09-14T08:30:10.308+0000][2.339s] GC(8) Pause Young (Concurrent Start) (Metadata GC Threshold) 110M->40M(512M) 5.367ms +[2023-09-14T08:30:10.308+0000][2.339s] GC(8) User=0.01s Sys=0.00s Real=0.00s +[2023-09-14T08:30:10.308+0000][2.340s] GC(9) Concurrent Cycle +[2023-09-14T08:30:10.308+0000][2.340s] GC(9) Concurrent Clear Claimed Marks +[2023-09-14T08:30:10.308+0000][2.340s] GC(9) Concurrent Clear Claimed Marks 0.107ms +[2023-09-14T08:30:10.308+0000][2.340s] GC(9) Concurrent Scan Root Regions +[2023-09-14T08:30:10.311+0000][2.343s] GC(9) Concurrent Scan Root Regions 2.761ms +[2023-09-14T08:30:10.311+0000][2.343s] GC(9) Concurrent Mark (2.343s) +[2023-09-14T08:30:10.311+0000][2.343s] GC(9) Concurrent Mark From Roots +[2023-09-14T08:30:10.311+0000][2.343s] GC(9) Using 1 workers of 1 for marking +[2023-09-14T08:30:10.323+0000][2.355s] GC(9) Concurrent Mark From Roots 12.099ms +[2023-09-14T08:30:10.324+0000][2.355s] GC(9) Concurrent Preclean +[2023-09-14T08:30:10.324+0000][2.355s] GC(9) Concurrent Preclean 0.130ms +[2023-09-14T08:30:10.324+0000][2.355s] GC(9) Concurrent Mark (2.343s, 2.355s) 12.469ms +[2023-09-14T08:30:10.326+0000][2.357s] GC(9) Pause Remark +[2023-09-14T08:30:10.328+0000][2.360s] GC(9) Cleaned string and symbol table, strings: 17391 processed, 0 removed, symbols: 117077 processed, 163 removed +[2023-09-14T08:30:10.328+0000][2.360s] GC(9) Pause Remark 46M->46M(512M) 2.572ms +[2023-09-14T08:30:10.329+0000][2.360s] GC(9) User=0.00s Sys=0.00s Real=0.00s +[2023-09-14T08:30:10.329+0000][2.360s] GC(9) Concurrent Rebuild Remembered Sets +[2023-09-14T08:30:10.338+0000][2.369s] GC(9) Concurrent Rebuild Remembered Sets 8.949ms +[2023-09-14T08:30:10.338+0000][2.369s] GC(9) Pause Cleanup +[2023-09-14T08:30:10.338+0000][2.369s] GC(9) Pause Cleanup 50M->50M(512M) 0.140ms +[2023-09-14T08:30:10.338+0000][2.369s] GC(9) User=0.00s Sys=0.00s Real=0.00s +[2023-09-14T08:30:10.338+0000][2.370s] GC(9) Concurrent Cleanup for Next Mark +[2023-09-14T08:30:10.339+0000][2.370s] GC(9) Concurrent Cleanup for Next Mark 0.678ms +[2023-09-14T08:30:10.339+0000][2.370s] GC(9) Concurrent Cycle 30.773ms +[2023-09-14T08:58:10.374+0000][1682.406s] GC(10) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T08:58:10.376+0000][1682.408s] GC(10) Using 5 workers of 5 for evacuation +[2023-09-14T08:58:10.449+0000][1682.481s] GC(10) Pre Evacuate Collection Set: 1.8ms +[2023-09-14T08:58:10.449+0000][1682.481s] GC(10) Evacuate Collection Set: 58.6ms +[2023-09-14T08:58:10.449+0000][1682.481s] GC(10) Post Evacuate Collection Set: 9.5ms +[2023-09-14T08:58:10.449+0000][1682.481s] GC(10) Other: 4.8ms +[2023-09-14T08:58:10.449+0000][1682.481s] GC(10) Eden regions: 142->0(194) +[2023-09-14T08:58:10.449+0000][1682.481s] GC(10) Survivor regions: 14->10(20) +[2023-09-14T08:58:10.450+0000][1682.481s] GC(10) Old regions: 22->32 +[2023-09-14T08:58:10.450+0000][1682.482s] GC(10) Humongous regions: 6->6 +[2023-09-14T08:58:10.450+0000][1682.482s] GC(10) Metaspace: 47956K(49480K)->47956K(49480K) NonClass: 42084K(42952K)->42084K(42952K) Class: 5871K(6528K)->5871K(6528K) +[2023-09-14T08:58:10.450+0000][1682.482s] GC(10) Pause Young (Normal) (G1 Evacuation Pause) 182M->45M(512M) 75.704ms +[2023-09-14T08:58:10.450+0000][1682.482s] GC(10) User=0.32s Sys=0.01s Real=0.07s diff --git a/tests/data/test/hpc/solr_logs/solr_gc.log.3 b/tests/data/test/hpc/solr_logs/solr_gc.log.3 new file mode 100644 index 00000000..6c9b0b41 --- /dev/null +++ b/tests/data/test/hpc/solr_logs/solr_gc.log.3 @@ -0,0 +1,272 @@ +[2023-09-14T11:36:18.201+0000][0.038s] Heap region size: 1M +[2023-09-14T11:36:18.308+0000][0.146s] Using G1 +[2023-09-14T11:36:18.309+0000][0.147s] Heap address: 0x00000000e0000000, size: 512 MB, Compressed Oops mode: 32-bit +[2023-09-14T11:36:18.311+0000][0.149s] Mark closed archive regions in map: [0x00000000fff00000, 0x00000000fff65ff8] +[2023-09-14T11:36:18.311+0000][0.149s] Mark open archive regions in map: [0x00000000ffe00000, 0x00000000ffe42ff8] +[2023-09-14T11:36:19.247+0000][1.085s] GC(0) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T11:36:19.247+0000][1.085s] GC(0) Using 5 workers of 5 for evacuation +[2023-09-14T11:36:19.255+0000][1.093s] GC(0) Pre Evacuate Collection Set: 0.3ms +[2023-09-14T11:36:19.256+0000][1.094s] GC(0) Evacuate Collection Set: 6.4ms +[2023-09-14T11:36:19.256+0000][1.094s] GC(0) Post Evacuate Collection Set: 1.0ms +[2023-09-14T11:36:19.256+0000][1.094s] GC(0) Other: 1.5ms +[2023-09-14T11:36:19.256+0000][1.094s] GC(0) Eden regions: 25->0(304) +[2023-09-14T11:36:19.256+0000][1.094s] GC(0) Survivor regions: 0->3(4) +[2023-09-14T11:36:19.257+0000][1.094s] GC(0) Old regions: 2->2 +[2023-09-14T11:36:19.257+0000][1.095s] GC(0) Humongous regions: 0->0 +[2023-09-14T11:36:19.257+0000][1.095s] GC(0) Metaspace: 6721K(8192K)->6721K(8192K) NonClass: 5884K(7168K)->5884K(7168K) Class: 836K(1024K)->836K(1024K) +[2023-09-14T11:36:19.257+0000][1.095s] GC(0) Pause Young (Normal) (G1 Evacuation Pause) 25M->3M(512M) 10.303ms +[2023-09-14T11:36:19.257+0000][1.095s] GC(0) User=0.03s Sys=0.01s Real=0.01s +[2023-09-14T11:36:19.893+0000][1.731s] GC(1) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T11:36:19.893+0000][1.731s] GC(1) Using 5 workers of 5 for evacuation +[2023-09-14T11:36:19.909+0000][1.746s] GC(1) Pre Evacuate Collection Set: 0.1ms +[2023-09-14T11:36:19.909+0000][1.747s] GC(1) Evacuate Collection Set: 14.7ms +[2023-09-14T11:36:19.909+0000][1.747s] GC(1) Post Evacuate Collection Set: 0.6ms +[2023-09-14T11:36:19.909+0000][1.747s] GC(1) Other: 0.3ms +[2023-09-14T11:36:19.909+0000][1.747s] GC(1) Eden regions: 56->0(45) +[2023-09-14T11:36:19.909+0000][1.747s] GC(1) Survivor regions: 3->8(8) +[2023-09-14T11:36:19.909+0000][1.747s] GC(1) Old regions: 2->13 +[2023-09-14T11:36:19.909+0000][1.747s] GC(1) Humongous regions: 4->4 +[2023-09-14T11:36:19.909+0000][1.747s] GC(1) Metaspace: 15877K(16768K)->15877K(16768K) NonClass: 13938K(14592K)->13938K(14592K) Class: 1938K(2176K)->1938K(2176K) +[2023-09-14T11:36:19.909+0000][1.747s] GC(1) Pause Young (Normal) (G1 Evacuation Pause) 63M->22M(512M) 16.556ms +[2023-09-14T11:36:19.910+0000][1.747s] GC(1) User=0.03s Sys=0.02s Real=0.01s +[2023-09-14T11:36:20.121+0000][1.959s] GC(2) Pause Young (Concurrent Start) (Metadata GC Threshold) +[2023-09-14T11:36:20.121+0000][1.959s] GC(2) Using 5 workers of 5 for evacuation +[2023-09-14T11:36:20.128+0000][1.966s] GC(2) Pre Evacuate Collection Set: 0.1ms +[2023-09-14T11:36:20.129+0000][1.966s] GC(2) Evacuate Collection Set: 6.1ms +[2023-09-14T11:36:20.129+0000][1.967s] GC(2) Post Evacuate Collection Set: 0.4ms +[2023-09-14T11:36:20.129+0000][1.967s] GC(2) Other: 0.8ms +[2023-09-14T11:36:20.129+0000][1.967s] GC(2) Eden regions: 36->0(50) +[2023-09-14T11:36:20.129+0000][1.967s] GC(2) Survivor regions: 8->1(7) +[2023-09-14T11:36:20.129+0000][1.967s] GC(2) Old regions: 13->21 +[2023-09-14T11:36:20.129+0000][1.967s] GC(2) Humongous regions: 4->4 +[2023-09-14T11:36:20.129+0000][1.967s] GC(2) Metaspace: 20412K(21248K)->20412K(21248K) NonClass: 17978K(18432K)->17978K(18432K) Class: 2434K(2816K)->2434K(2816K) +[2023-09-14T11:36:20.129+0000][1.967s] GC(2) Pause Young (Concurrent Start) (Metadata GC Threshold) 58M->24M(512M) 8.345ms +[2023-09-14T11:36:20.130+0000][1.967s] GC(2) User=0.02s Sys=0.01s Real=0.01s +[2023-09-14T11:36:20.130+0000][1.967s] GC(3) Concurrent Cycle +[2023-09-14T11:36:20.130+0000][1.968s] GC(3) Concurrent Clear Claimed Marks +[2023-09-14T11:36:20.130+0000][1.968s] GC(3) Concurrent Clear Claimed Marks 0.173ms +[2023-09-14T11:36:20.130+0000][1.968s] GC(3) Concurrent Scan Root Regions +[2023-09-14T11:36:20.131+0000][1.969s] GC(3) Concurrent Scan Root Regions 0.619ms +[2023-09-14T11:36:20.131+0000][1.969s] GC(3) Concurrent Mark (1.969s) +[2023-09-14T11:36:20.131+0000][1.969s] GC(3) Concurrent Mark From Roots +[2023-09-14T11:36:20.131+0000][1.969s] GC(3) Using 1 workers of 1 for marking +[2023-09-14T11:36:20.147+0000][1.985s] GC(3) Concurrent Mark From Roots 16.209ms +[2023-09-14T11:36:20.148+0000][1.985s] GC(3) Concurrent Preclean +[2023-09-14T11:36:20.148+0000][1.986s] GC(3) Concurrent Preclean 0.212ms +[2023-09-14T11:36:20.148+0000][1.986s] GC(3) Concurrent Mark (1.969s, 1.986s) 16.887ms +[2023-09-14T11:36:20.148+0000][1.986s] GC(3) Pause Remark +[2023-09-14T11:36:20.153+0000][1.991s] GC(3) Cleaned string and symbol table, strings: 8476 processed, 0 removed, symbols: 61609 processed, 40 removed +[2023-09-14T11:36:20.154+0000][1.992s] GC(3) Pause Remark 27M->27M(512M) 5.444ms +[2023-09-14T11:36:20.154+0000][1.992s] GC(3) User=0.02s Sys=0.00s Real=0.01s +[2023-09-14T11:36:20.154+0000][1.992s] GC(3) Concurrent Rebuild Remembered Sets +[2023-09-14T11:36:20.167+0000][2.005s] GC(3) Concurrent Rebuild Remembered Sets 12.491ms +[2023-09-14T11:36:20.167+0000][2.005s] GC(3) Pause Cleanup +[2023-09-14T11:36:20.167+0000][2.005s] GC(3) Pause Cleanup 30M->30M(512M) 0.241ms +[2023-09-14T11:36:20.167+0000][2.005s] GC(3) User=0.00s Sys=0.00s Real=0.00s +[2023-09-14T11:36:20.167+0000][2.005s] GC(3) Concurrent Cleanup for Next Mark +[2023-09-14T11:36:20.171+0000][2.009s] GC(3) Concurrent Cleanup for Next Mark 4.051ms +[2023-09-14T11:36:20.172+0000][2.009s] GC(3) Concurrent Cycle 41.904ms +[2023-09-14T11:36:20.530+0000][2.368s] GC(4) Pause Young (Concurrent Start) (G1 Evacuation Pause) +[2023-09-14T11:36:20.531+0000][2.369s] GC(4) Using 5 workers of 5 for evacuation +[2023-09-14T11:36:20.539+0000][2.377s] GC(4) Pre Evacuate Collection Set: 0.1ms +[2023-09-14T11:36:20.539+0000][2.377s] GC(4) Evacuate Collection Set: 6.1ms +[2023-09-14T11:36:20.539+0000][2.377s] GC(4) Post Evacuate Collection Set: 1.1ms +[2023-09-14T11:36:20.539+0000][2.377s] GC(4) Other: 1.6ms +[2023-09-14T11:36:20.540+0000][2.377s] GC(4) Eden regions: 50->0(63) +[2023-09-14T11:36:20.540+0000][2.378s] GC(4) Survivor regions: 1->2(7) +[2023-09-14T11:36:20.540+0000][2.378s] GC(4) Old regions: 21->21 +[2023-09-14T11:36:20.540+0000][2.378s] GC(4) Humongous regions: 4->4 +[2023-09-14T11:36:20.540+0000][2.378s] GC(4) Metaspace: 26168K(27208K)->26168K(27208K) NonClass: 23041K(23752K)->23041K(23752K) Class: 3127K(3456K)->3127K(3456K) +[2023-09-14T11:36:20.540+0000][2.378s] GC(4) Pause Young (Concurrent Start) (G1 Evacuation Pause) 74M->25M(512M) 9.976ms +[2023-09-14T11:36:20.540+0000][2.378s] GC(4) User=0.02s Sys=0.01s Real=0.01s +[2023-09-14T11:36:20.540+0000][2.378s] GC(5) Concurrent Cycle +[2023-09-14T11:36:20.541+0000][2.379s] GC(5) Concurrent Clear Claimed Marks +[2023-09-14T11:36:20.541+0000][2.379s] GC(5) Concurrent Clear Claimed Marks 0.351ms +[2023-09-14T11:36:20.542+0000][2.380s] GC(5) Concurrent Scan Root Regions +[2023-09-14T11:36:20.544+0000][2.382s] GC(5) Concurrent Scan Root Regions 2.474ms +[2023-09-14T11:36:20.544+0000][2.382s] GC(5) Concurrent Mark (2.382s) +[2023-09-14T11:36:20.545+0000][2.383s] GC(5) Concurrent Mark From Roots +[2023-09-14T11:36:20.545+0000][2.383s] GC(5) Using 1 workers of 1 for marking +[2023-09-14T11:36:20.562+0000][2.400s] GC(5) Concurrent Mark From Roots 17.329ms +[2023-09-14T11:36:20.563+0000][2.401s] GC(5) Concurrent Preclean +[2023-09-14T11:36:20.563+0000][2.401s] GC(5) Concurrent Preclean 0.301ms +[2023-09-14T11:36:20.563+0000][2.401s] GC(5) Concurrent Mark (2.382s, 2.401s) 19.105ms +[2023-09-14T11:36:20.565+0000][2.403s] GC(5) Pause Remark +[2023-09-14T11:36:20.573+0000][2.410s] GC(5) Cleaned string and symbol table, strings: 11288 processed, 26 removed, symbols: 75949 processed, 34 removed +[2023-09-14T11:36:20.574+0000][2.412s] GC(5) Pause Remark 26M->26M(512M) 8.219ms +[2023-09-14T11:36:20.574+0000][2.412s] GC(5) User=0.03s Sys=0.00s Real=0.01s +[2023-09-14T11:36:20.575+0000][2.413s] GC(5) Concurrent Rebuild Remembered Sets +[2023-09-14T11:36:20.584+0000][2.422s] GC(5) Concurrent Rebuild Remembered Sets 9.040ms +[2023-09-14T11:36:20.586+0000][2.424s] GC(5) Pause Cleanup +[2023-09-14T11:36:20.586+0000][2.424s] GC(5) Pause Cleanup 26M->26M(512M) 0.219ms +[2023-09-14T11:36:20.586+0000][2.424s] GC(5) User=0.00s Sys=0.00s Real=0.00s +[2023-09-14T11:36:20.587+0000][2.424s] GC(5) Concurrent Cleanup for Next Mark +[2023-09-14T11:36:20.592+0000][2.430s] GC(5) Concurrent Cleanup for Next Mark 5.297ms +[2023-09-14T11:36:20.592+0000][2.430s] GC(5) Concurrent Cycle 51.756ms +[2023-09-14T11:36:21.233+0000][3.070s] GC(6) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T11:36:21.233+0000][3.071s] GC(6) Using 5 workers of 5 for evacuation +[2023-09-14T11:36:21.248+0000][3.086s] GC(6) Pre Evacuate Collection Set: 0.1ms +[2023-09-14T11:36:21.249+0000][3.086s] GC(6) Evacuate Collection Set: 9.2ms +[2023-09-14T11:36:21.249+0000][3.087s] GC(6) Post Evacuate Collection Set: 5.7ms +[2023-09-14T11:36:21.249+0000][3.087s] GC(6) Other: 0.9ms +[2023-09-14T11:36:21.249+0000][3.087s] GC(6) Eden regions: 63->0(82) +[2023-09-14T11:36:21.249+0000][3.087s] GC(6) Survivor regions: 2->9(9) +[2023-09-14T11:36:21.250+0000][3.087s] GC(6) Old regions: 21->21 +[2023-09-14T11:36:21.251+0000][3.089s] GC(6) Humongous regions: 6->5 +[2023-09-14T11:36:21.251+0000][3.089s] GC(6) Metaspace: 32635K(33736K)->32635K(33736K) NonClass: 28718K(29384K)->28718K(29384K) Class: 3916K(4352K)->3916K(4352K) +[2023-09-14T11:36:21.251+0000][3.089s] GC(6) Pause Young (Normal) (G1 Evacuation Pause) 90M->32M(512M) 18.600ms +[2023-09-14T11:36:21.251+0000][3.089s] GC(6) User=0.04s Sys=0.01s Real=0.01s +[2023-09-14T11:36:21.878+0000][3.716s] GC(7) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T11:36:21.879+0000][3.716s] GC(7) Using 5 workers of 5 for evacuation +[2023-09-14T11:36:21.903+0000][3.741s] GC(7) Pre Evacuate Collection Set: 0.2ms +[2023-09-14T11:36:21.904+0000][3.741s] GC(7) Evacuate Collection Set: 23.7ms +[2023-09-14T11:36:21.904+0000][3.742s] GC(7) Post Evacuate Collection Set: 0.6ms +[2023-09-14T11:36:21.904+0000][3.742s] GC(7) Other: 0.5ms +[2023-09-14T11:36:21.904+0000][3.742s] GC(7) Eden regions: 82->0(237) +[2023-09-14T11:36:21.904+0000][3.742s] GC(7) Survivor regions: 9->12(12) +[2023-09-14T11:36:21.904+0000][3.742s] GC(7) Old regions: 21->23 +[2023-09-14T11:36:21.904+0000][3.742s] GC(7) Humongous regions: 7->6 +[2023-09-14T11:36:21.904+0000][3.742s] GC(7) Metaspace: 38763K(40008K)->38763K(40008K) NonClass: 34079K(34760K)->34079K(34760K) Class: 4683K(5248K)->4683K(5248K) +[2023-09-14T11:36:21.905+0000][3.742s] GC(7) Pause Young (Normal) (G1 Evacuation Pause) 116M->39M(512M) 26.178ms +[2023-09-14T11:36:21.905+0000][3.743s] GC(7) User=0.04s Sys=0.04s Real=0.03s +[2023-09-14T11:36:22.461+0000][4.299s] GC(8) Pause Young (Concurrent Start) (Metadata GC Threshold) +[2023-09-14T11:36:22.461+0000][4.299s] GC(8) Using 5 workers of 5 for evacuation +[2023-09-14T11:36:22.503+0000][4.341s] GC(8) Pre Evacuate Collection Set: 0.2ms +[2023-09-14T11:36:22.504+0000][4.341s] GC(8) Evacuate Collection Set: 39.3ms +[2023-09-14T11:36:22.504+0000][4.341s] GC(8) Post Evacuate Collection Set: 2.7ms +[2023-09-14T11:36:22.504+0000][4.341s] GC(8) Other: 0.5ms +[2023-09-14T11:36:22.504+0000][4.342s] GC(8) Eden regions: 112->0(143) +[2023-09-14T11:36:22.504+0000][4.342s] GC(8) Survivor regions: 12->17(32) +[2023-09-14T11:36:22.504+0000][4.342s] GC(8) Old regions: 23->23 +[2023-09-14T11:36:22.504+0000][4.342s] GC(8) Humongous regions: 6->6 +[2023-09-14T11:36:22.504+0000][4.342s] GC(8) Metaspace: 44408K(45776K)->44408K(45776K) NonClass: 38987K(39760K)->38987K(39760K) Class: 5420K(6016K)->5420K(6016K) +[2023-09-14T11:36:22.504+0000][4.342s] GC(8) Pause Young (Concurrent Start) (Metadata GC Threshold) 151M->43M(512M) 43.093ms +[2023-09-14T11:36:22.504+0000][4.342s] GC(8) User=0.03s Sys=0.03s Real=0.05s +[2023-09-14T11:36:22.505+0000][4.343s] GC(9) Concurrent Cycle +[2023-09-14T11:36:22.505+0000][4.343s] GC(9) Concurrent Clear Claimed Marks +[2023-09-14T11:36:22.505+0000][4.343s] GC(9) Concurrent Clear Claimed Marks 0.305ms +[2023-09-14T11:36:22.507+0000][4.345s] GC(9) Concurrent Scan Root Regions +[2023-09-14T11:36:22.512+0000][4.349s] GC(9) Concurrent Scan Root Regions 4.112ms +[2023-09-14T11:36:22.512+0000][4.350s] GC(9) Concurrent Mark (4.350s) +[2023-09-14T11:36:22.512+0000][4.350s] GC(9) Concurrent Mark From Roots +[2023-09-14T11:36:22.512+0000][4.350s] GC(9) Using 1 workers of 1 for marking +[2023-09-14T11:36:22.535+0000][4.372s] GC(9) Concurrent Mark From Roots 22.516ms +[2023-09-14T11:36:22.535+0000][4.373s] GC(9) Concurrent Preclean +[2023-09-14T11:36:22.535+0000][4.373s] GC(9) Concurrent Preclean 0.193ms +[2023-09-14T11:36:22.535+0000][4.373s] GC(9) Concurrent Mark (4.350s, 4.373s) 23.213ms +[2023-09-14T11:36:22.536+0000][4.374s] GC(9) Pause Remark +[2023-09-14T11:36:22.544+0000][4.382s] GC(9) Cleaned string and symbol table, strings: 19211 processed, 6 removed, symbols: 127972 processed, 490 removed +[2023-09-14T11:36:22.544+0000][4.382s] GC(9) Pause Remark 45M->45M(512M) 8.421ms +[2023-09-14T11:36:22.545+0000][4.382s] GC(9) User=0.01s Sys=0.00s Real=0.01s +[2023-09-14T11:36:22.545+0000][4.383s] GC(9) Concurrent Rebuild Remembered Sets +[2023-09-14T11:36:22.555+0000][4.393s] GC(9) Concurrent Rebuild Remembered Sets 10.360ms +[2023-09-14T11:36:22.558+0000][4.396s] GC(9) Pause Cleanup +[2023-09-14T11:36:22.558+0000][4.396s] GC(9) Pause Cleanup 45M->45M(512M) 0.259ms +[2023-09-14T11:36:22.558+0000][4.396s] GC(9) User=0.00s Sys=0.00s Real=0.00s +[2023-09-14T11:36:22.559+0000][4.397s] GC(9) Concurrent Cleanup for Next Mark +[2023-09-14T11:36:22.580+0000][4.418s] GC(9) Concurrent Cleanup for Next Mark 20.807ms +[2023-09-14T11:36:22.580+0000][4.418s] GC(9) Concurrent Cycle 75.209ms +[2023-09-14T11:44:31.511+0000][493.332s] GC(10) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T11:44:31.511+0000][493.333s] GC(10) Using 5 workers of 5 for evacuation +[2023-09-14T11:44:31.549+0000][493.370s] GC(10) Pre Evacuate Collection Set: 1.2ms +[2023-09-14T11:44:31.549+0000][493.370s] GC(10) Evacuate Collection Set: 31.9ms +[2023-09-14T11:44:31.549+0000][493.370s] GC(10) Post Evacuate Collection Set: 3.8ms +[2023-09-14T11:44:31.549+0000][493.371s] GC(10) Other: 1.1ms +[2023-09-14T11:44:31.549+0000][493.371s] GC(10) Eden regions: 148->0(197) +[2023-09-14T11:44:31.549+0000][493.371s] GC(10) Survivor regions: 17->14(21) +[2023-09-14T11:44:31.550+0000][493.371s] GC(10) Old regions: 23->29 +[2023-09-14T11:44:31.550+0000][493.371s] GC(10) Humongous regions: 6->6 +[2023-09-14T11:44:31.550+0000][493.371s] GC(10) Metaspace: 52542K(54096K)->52542K(54096K) NonClass: 46241K(47184K)->46241K(47184K) Class: 6301K(6912K)->6301K(6912K) +[2023-09-14T11:44:31.550+0000][493.372s] GC(10) Pause Young (Normal) (G1 Evacuation Pause) 191M->46M(512M) 39.245ms +[2023-09-14T11:44:31.550+0000][493.372s] GC(10) User=0.12s Sys=0.01s Real=0.04s +[2023-09-14T11:45:55.865+0000][577.686s] GC(11) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T11:45:55.865+0000][577.686s] GC(11) Using 5 workers of 5 for evacuation +[2023-09-14T11:45:55.880+0000][577.701s] GC(11) Pre Evacuate Collection Set: 0.9ms +[2023-09-14T11:45:55.880+0000][577.701s] GC(11) Evacuate Collection Set: 11.4ms +[2023-09-14T11:45:55.880+0000][577.701s] GC(11) Post Evacuate Collection Set: 1.8ms +[2023-09-14T11:45:55.880+0000][577.701s] GC(11) Other: 0.8ms +[2023-09-14T11:45:55.880+0000][577.701s] GC(11) Eden regions: 197->0(267) +[2023-09-14T11:45:55.881+0000][577.701s] GC(11) Survivor regions: 14->16(27) +[2023-09-14T11:45:55.881+0000][577.701s] GC(11) Old regions: 29->29 +[2023-09-14T11:45:55.881+0000][577.702s] GC(11) Humongous regions: 6->6 +[2023-09-14T11:45:55.881+0000][577.702s] GC(11) Metaspace: 53966K(55504K)->53966K(55504K) NonClass: 47536K(48464K)->47536K(48464K) Class: 6429K(7040K)->6429K(7040K) +[2023-09-14T11:45:55.881+0000][577.702s] GC(11) Pause Young (Normal) (G1 Evacuation Pause) 243M->48M(512M) 15.851ms +[2023-09-14T11:45:55.881+0000][577.702s] GC(11) User=0.05s Sys=0.02s Real=0.02s +[2023-09-14T11:46:16.632+0000][598.453s] GC(12) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T11:46:16.633+0000][598.454s] GC(12) Using 5 workers of 5 for evacuation +[2023-09-14T11:46:16.643+0000][598.463s] GC(12) Pre Evacuate Collection Set: 0.0ms +[2023-09-14T11:46:16.643+0000][598.464s] GC(12) Evacuate Collection Set: 7.8ms +[2023-09-14T11:46:16.643+0000][598.464s] GC(12) Post Evacuate Collection Set: 1.8ms +[2023-09-14T11:46:16.643+0000][598.464s] GC(12) Other: 0.6ms +[2023-09-14T11:46:16.643+0000][598.464s] GC(12) Eden regions: 267->0(291) +[2023-09-14T11:46:16.643+0000][598.464s] GC(12) Survivor regions: 16->16(36) +[2023-09-14T11:46:16.643+0000][598.464s] GC(12) Old regions: 29->29 +[2023-09-14T11:46:16.643+0000][598.464s] GC(12) Humongous regions: 6->6 +[2023-09-14T11:46:16.643+0000][598.464s] GC(12) Metaspace: 54376K(56016K)->54376K(56016K) NonClass: 47943K(48976K)->47943K(48976K) Class: 6432K(7040K)->6432K(7040K) +[2023-09-14T11:46:16.644+0000][598.464s] GC(12) Pause Young (Normal) (G1 Evacuation Pause) 315M->49M(512M) 11.133ms +[2023-09-14T11:46:16.644+0000][598.464s] GC(12) User=0.03s Sys=0.01s Real=0.01s +[2023-09-14T11:46:51.786+0000][633.606s] GC(13) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T11:46:51.787+0000][633.607s] GC(13) Using 5 workers of 5 for evacuation +[2023-09-14T11:46:51.808+0000][633.628s] GC(13) Pre Evacuate Collection Set: 0.6ms +[2023-09-14T11:46:51.808+0000][633.628s] GC(13) Evacuate Collection Set: 10.5ms +[2023-09-14T11:46:51.808+0000][633.628s] GC(13) Post Evacuate Collection Set: 9.5ms +[2023-09-14T11:46:51.808+0000][633.628s] GC(13) Other: 1.5ms +[2023-09-14T11:46:51.808+0000][633.628s] GC(13) Eden regions: 291->0(290) +[2023-09-14T11:46:51.808+0000][633.629s] GC(13) Survivor regions: 16->17(39) +[2023-09-14T11:46:51.808+0000][633.629s] GC(13) Old regions: 29->29 +[2023-09-14T11:46:51.808+0000][633.629s] GC(13) Humongous regions: 6->6 +[2023-09-14T11:46:51.809+0000][633.629s] GC(13) Metaspace: 54934K(56528K)->54934K(56528K) NonClass: 48502K(49488K)->48502K(49488K) Class: 6432K(7040K)->6432K(7040K) +[2023-09-14T11:46:51.809+0000][633.629s] GC(13) Pause Young (Normal) (G1 Evacuation Pause) 340M->49M(512M) 23.009ms +[2023-09-14T11:46:51.809+0000][633.629s] GC(13) User=0.06s Sys=0.02s Real=0.02s +[2023-09-14T12:14:39.613+0000][2301.469s] GC(14) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T12:14:39.614+0000][2301.470s] GC(14) Using 5 workers of 5 for evacuation +[2023-09-14T12:14:39.652+0000][2301.508s] GC(14) Pre Evacuate Collection Set: 0.5ms +[2023-09-14T12:14:39.652+0000][2301.508s] GC(14) Evacuate Collection Set: 19.1ms +[2023-09-14T12:14:39.652+0000][2301.508s] GC(14) Post Evacuate Collection Set: 17.5ms +[2023-09-14T12:14:39.652+0000][2301.508s] GC(14) Other: 1.6ms +[2023-09-14T12:14:39.652+0000][2301.509s] GC(14) Eden regions: 290->0(289) +[2023-09-14T12:14:39.652+0000][2301.509s] GC(14) Survivor regions: 17->18(39) +[2023-09-14T12:14:39.653+0000][2301.509s] GC(14) Old regions: 29->29 +[2023-09-14T12:14:39.653+0000][2301.509s] GC(14) Humongous regions: 6->6 +[2023-09-14T12:14:39.653+0000][2301.509s] GC(14) Metaspace: 55942K(57552K)->55942K(57552K) NonClass: 49508K(50512K)->49508K(50512K) Class: 6433K(7040K)->6433K(7040K) +[2023-09-14T12:14:39.653+0000][2301.509s] GC(14) Pause Young (Normal) (G1 Evacuation Pause) 339M->51M(512M) 40.149ms +[2023-09-14T12:14:39.653+0000][2301.510s] GC(14) User=0.16s Sys=0.01s Real=0.04s +[2023-09-14T12:14:59.431+0000][2321.288s] GC(15) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T12:14:59.432+0000][2321.288s] GC(15) Using 5 workers of 5 for evacuation +[2023-09-14T12:14:59.440+0000][2321.296s] GC(15) Pre Evacuate Collection Set: 0.1ms +[2023-09-14T12:14:59.440+0000][2321.296s] GC(15) Evacuate Collection Set: 5.7ms +[2023-09-14T12:14:59.440+0000][2321.296s] GC(15) Post Evacuate Collection Set: 2.4ms +[2023-09-14T12:14:59.440+0000][2321.296s] GC(15) Other: 0.5ms +[2023-09-14T12:14:59.440+0000][2321.297s] GC(15) Eden regions: 289->0(289) +[2023-09-14T12:14:59.440+0000][2321.297s] GC(15) Survivor regions: 18->18(39) +[2023-09-14T12:14:59.441+0000][2321.297s] GC(15) Old regions: 29->29 +[2023-09-14T12:14:59.441+0000][2321.297s] GC(15) Humongous regions: 6->6 +[2023-09-14T12:14:59.441+0000][2321.297s] GC(15) Metaspace: 56147K(57808K)->56147K(57808K) NonClass: 49713K(50768K)->49713K(50768K) Class: 6434K(7040K)->6434K(7040K) +[2023-09-14T12:14:59.441+0000][2321.297s] GC(15) Pause Young (Normal) (G1 Evacuation Pause) 339M->50M(512M) 9.372ms +[2023-09-14T12:14:59.441+0000][2321.297s] GC(15) User=0.03s Sys=0.00s Real=0.01s +[2023-09-14T13:18:05.587+0000][6107.438s] GC(16) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-14T13:18:05.591+0000][6107.441s] GC(16) Using 5 workers of 5 for evacuation +[2023-09-14T13:18:05.679+0000][6107.529s] GC(16) Pre Evacuate Collection Set: 2.0ms +[2023-09-14T13:18:05.679+0000][6107.530s] GC(16) Evacuate Collection Set: 68.8ms +[2023-09-14T13:18:05.679+0000][6107.530s] GC(16) Post Evacuate Collection Set: 15.9ms +[2023-09-14T13:18:05.679+0000][6107.530s] GC(16) Other: 5.5ms +[2023-09-14T13:18:05.679+0000][6107.530s] GC(16) Eden regions: 289->0(289) +[2023-09-14T13:18:05.680+0000][6107.530s] GC(16) Survivor regions: 18->18(39) +[2023-09-14T13:18:05.680+0000][6107.530s] GC(16) Old regions: 29->29 +[2023-09-14T13:18:05.680+0000][6107.530s] GC(16) Humongous regions: 6->6 +[2023-09-14T13:18:05.680+0000][6107.530s] GC(16) Metaspace: 56430K(58064K)->56430K(58064K) NonClass: 49996K(51024K)->49996K(51024K) Class: 6434K(7040K)->6434K(7040K) +[2023-09-14T13:18:05.680+0000][6107.531s] GC(16) Pause Young (Normal) (G1 Evacuation Pause) 339M->50M(512M) 93.040ms +[2023-09-14T13:18:05.680+0000][6107.531s] GC(16) User=0.41s Sys=0.00s Real=0.10s +[2023-09-16T01:30:09.255+0000][44657.468s] GC(17) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-16T01:30:09.257+0000][44657.470s] GC(17) Using 5 workers of 5 for evacuation +[2023-09-16T01:30:09.353+0000][44657.567s] GC(17) Pre Evacuate Collection Set: 3.1ms +[2023-09-16T01:30:09.353+0000][44657.567s] GC(17) Evacuate Collection Set: 86.8ms +[2023-09-16T01:30:09.353+0000][44657.567s] GC(17) Post Evacuate Collection Set: 5.2ms +[2023-09-16T01:30:09.353+0000][44657.567s] GC(17) Other: 4.2ms +[2023-09-16T01:30:09.353+0000][44657.567s] GC(17) Eden regions: 289->0(293) +[2023-09-16T01:30:09.353+0000][44657.567s] GC(17) Survivor regions: 18->14(39) +[2023-09-16T01:30:09.353+0000][44657.567s] GC(17) Old regions: 29->29 +[2023-09-16T01:30:09.353+0000][44657.567s] GC(17) Humongous regions: 6->6 +[2023-09-16T01:30:09.353+0000][44657.567s] GC(17) Metaspace: 56581K(58064K)->56581K(58064K) NonClass: 50146K(51024K)->50146K(51024K) Class: 6434K(7040K)->6434K(7040K) +[2023-09-16T01:30:09.354+0000][44657.567s] GC(17) Pause Young (Normal) (G1 Evacuation Pause) 339M->47M(512M) 99.251ms +[2023-09-16T01:30:09.354+0000][44657.568s] GC(17) User=0.45s Sys=0.00s Real=0.10s diff --git a/tests/data/test/hpc/solr_logs/solr_gc.log.4 b/tests/data/test/hpc/solr_logs/solr_gc.log.4 new file mode 100644 index 00000000..f4e8213a --- /dev/null +++ b/tests/data/test/hpc/solr_logs/solr_gc.log.4 @@ -0,0 +1,246 @@ +[2023-09-21T08:48:27.743+0000][0.008s] Heap region size: 1M +[2023-09-21T08:48:27.756+0000][0.022s] Using G1 +[2023-09-21T08:48:27.757+0000][0.022s] Heap address: 0x00000000e0000000, size: 512 MB, Compressed Oops mode: 32-bit +[2023-09-21T08:48:27.757+0000][0.022s] Mark closed archive regions in map: [0x00000000fff00000, 0x00000000fff65ff8] +[2023-09-21T08:48:27.757+0000][0.022s] Mark open archive regions in map: [0x00000000ffe00000, 0x00000000ffe42ff8] +[2023-09-21T08:48:28.215+0000][0.480s] GC(0) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-21T08:48:28.216+0000][0.481s] GC(0) Using 5 workers of 5 for evacuation +[2023-09-21T08:48:28.228+0000][0.493s] GC(0) Pre Evacuate Collection Set: 0.2ms +[2023-09-21T08:48:28.228+0000][0.493s] GC(0) Evacuate Collection Set: 6.1ms +[2023-09-21T08:48:28.228+0000][0.493s] GC(0) Post Evacuate Collection Set: 5.2ms +[2023-09-21T08:48:28.228+0000][0.493s] GC(0) Other: 1.0ms +[2023-09-21T08:48:28.228+0000][0.493s] GC(0) Eden regions: 25->0(304) +[2023-09-21T08:48:28.228+0000][0.493s] GC(0) Survivor regions: 0->3(4) +[2023-09-21T08:48:28.228+0000][0.493s] GC(0) Old regions: 2->2 +[2023-09-21T08:48:28.228+0000][0.493s] GC(0) Humongous regions: 0->0 +[2023-09-21T08:48:28.229+0000][0.494s] GC(0) Metaspace: 6752K(8192K)->6752K(8192K) NonClass: 5917K(7168K)->5917K(7168K) Class: 835K(1024K)->835K(1024K) +[2023-09-21T08:48:28.229+0000][0.494s] GC(0) Pause Young (Normal) (G1 Evacuation Pause) 25M->3M(512M) 13.158ms +[2023-09-21T08:48:28.229+0000][0.494s] GC(0) User=0.02s Sys=0.01s Real=0.02s +[2023-09-21T08:48:28.746+0000][1.011s] GC(1) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-21T08:48:28.746+0000][1.011s] GC(1) Using 5 workers of 5 for evacuation +[2023-09-21T08:48:28.758+0000][1.023s] GC(1) Pre Evacuate Collection Set: 0.0ms +[2023-09-21T08:48:28.758+0000][1.023s] GC(1) Evacuate Collection Set: 11.6ms +[2023-09-21T08:48:28.758+0000][1.023s] GC(1) Post Evacuate Collection Set: 0.5ms +[2023-09-21T08:48:28.759+0000][1.024s] GC(1) Other: 0.3ms +[2023-09-21T08:48:28.759+0000][1.024s] GC(1) Eden regions: 62->0(50) +[2023-09-21T08:48:28.759+0000][1.024s] GC(1) Survivor regions: 3->9(9) +[2023-09-21T08:48:28.759+0000][1.024s] GC(1) Old regions: 2->12 +[2023-09-21T08:48:28.759+0000][1.024s] GC(1) Humongous regions: 4->4 +[2023-09-21T08:48:28.759+0000][1.024s] GC(1) Metaspace: 16630K(17408K)->16630K(17408K) NonClass: 14595K(15104K)->14595K(15104K) Class: 2034K(2304K)->2034K(2304K) +[2023-09-21T08:48:28.759+0000][1.024s] GC(1) Pause Young (Normal) (G1 Evacuation Pause) 69M->22M(512M) 13.038ms +[2023-09-21T08:48:28.759+0000][1.024s] GC(1) User=0.03s Sys=0.02s Real=0.01s +[2023-09-21T08:48:28.879+0000][1.144s] GC(2) Pause Young (Concurrent Start) (Metadata GC Threshold) +[2023-09-21T08:48:28.879+0000][1.144s] GC(2) Using 5 workers of 5 for evacuation +[2023-09-21T08:48:28.887+0000][1.152s] GC(2) Pre Evacuate Collection Set: 0.2ms +[2023-09-21T08:48:28.887+0000][1.152s] GC(2) Evacuate Collection Set: 7.7ms +[2023-09-21T08:48:28.888+0000][1.153s] GC(2) Post Evacuate Collection Set: 0.3ms +[2023-09-21T08:48:28.888+0000][1.153s] GC(2) Other: 0.5ms +[2023-09-21T08:48:28.888+0000][1.153s] GC(2) Eden regions: 29->0(45) +[2023-09-21T08:48:28.889+0000][1.154s] GC(2) Survivor regions: 9->1(8) +[2023-09-21T08:48:28.889+0000][1.154s] GC(2) Old regions: 12->21 +[2023-09-21T08:48:28.889+0000][1.154s] GC(2) Humongous regions: 4->4 +[2023-09-21T08:48:28.890+0000][1.155s] GC(2) Metaspace: 20351K(21248K)->20351K(21248K) NonClass: 17927K(18432K)->17927K(18432K) Class: 2424K(2816K)->2424K(2816K) +[2023-09-21T08:48:28.890+0000][1.155s] GC(2) Pause Young (Concurrent Start) (Metadata GC Threshold) 51M->24M(512M) 11.376ms +[2023-09-21T08:48:28.890+0000][1.155s] GC(2) User=0.02s Sys=0.00s Real=0.01s +[2023-09-21T08:48:28.890+0000][1.155s] GC(3) Concurrent Cycle +[2023-09-21T08:48:28.890+0000][1.156s] GC(3) Concurrent Clear Claimed Marks +[2023-09-21T08:48:28.891+0000][1.156s] GC(3) Concurrent Clear Claimed Marks 0.102ms +[2023-09-21T08:48:28.891+0000][1.156s] GC(3) Concurrent Scan Root Regions +[2023-09-21T08:48:28.891+0000][1.156s] GC(3) Concurrent Scan Root Regions 0.513ms +[2023-09-21T08:48:28.892+0000][1.157s] GC(3) Concurrent Mark (1.157s) +[2023-09-21T08:48:28.892+0000][1.157s] GC(3) Concurrent Mark From Roots +[2023-09-21T08:48:28.892+0000][1.157s] GC(3) Using 1 workers of 1 for marking +[2023-09-21T08:48:28.904+0000][1.169s] GC(3) Concurrent Mark From Roots 12.474ms +[2023-09-21T08:48:28.905+0000][1.170s] GC(3) Concurrent Preclean +[2023-09-21T08:48:28.905+0000][1.170s] GC(3) Concurrent Preclean 0.368ms +[2023-09-21T08:48:28.905+0000][1.170s] GC(3) Concurrent Mark (1.157s, 1.170s) 13.513ms +[2023-09-21T08:48:28.906+0000][1.171s] GC(3) Pause Remark +[2023-09-21T08:48:28.908+0000][1.173s] GC(3) Cleaned string and symbol table, strings: 8461 processed, 0 removed, symbols: 61358 processed, 40 removed +[2023-09-21T08:48:28.909+0000][1.174s] GC(3) Pause Remark 27M->27M(512M) 2.989ms +[2023-09-21T08:48:28.909+0000][1.174s] GC(3) User=0.01s Sys=0.00s Real=0.01s +[2023-09-21T08:48:28.909+0000][1.174s] GC(3) Concurrent Rebuild Remembered Sets +[2023-09-21T08:48:28.926+0000][1.191s] GC(3) Concurrent Rebuild Remembered Sets 16.931ms +[2023-09-21T08:48:28.927+0000][1.192s] GC(3) Pause Cleanup +[2023-09-21T08:48:28.927+0000][1.192s] GC(3) Pause Cleanup 30M->30M(512M) 0.245ms +[2023-09-21T08:48:28.927+0000][1.192s] GC(3) User=0.00s Sys=0.00s Real=0.00s +[2023-09-21T08:48:28.927+0000][1.192s] GC(3) Concurrent Cleanup for Next Mark +[2023-09-21T08:48:28.929+0000][1.194s] GC(3) Concurrent Cleanup for Next Mark 2.087ms +[2023-09-21T08:48:28.929+0000][1.194s] GC(3) Concurrent Cycle 39.137ms +[2023-09-21T08:48:29.222+0000][1.487s] GC(4) Pause Young (Concurrent Start) (G1 Evacuation Pause) +[2023-09-21T08:48:29.222+0000][1.487s] GC(4) Using 5 workers of 5 for evacuation +[2023-09-21T08:48:29.227+0000][1.492s] GC(4) Pre Evacuate Collection Set: 0.1ms +[2023-09-21T08:48:29.227+0000][1.492s] GC(4) Evacuate Collection Set: 2.1ms +[2023-09-21T08:48:29.227+0000][1.492s] GC(4) Post Evacuate Collection Set: 2.6ms +[2023-09-21T08:48:29.227+0000][1.493s] GC(4) Other: 0.5ms +[2023-09-21T08:48:29.228+0000][1.493s] GC(4) Eden regions: 45->0(63) +[2023-09-21T08:48:29.228+0000][1.493s] GC(4) Survivor regions: 1->2(6) +[2023-09-21T08:48:29.228+0000][1.493s] GC(4) Old regions: 21->21 +[2023-09-21T08:48:29.228+0000][1.493s] GC(4) Humongous regions: 4->4 +[2023-09-21T08:48:29.228+0000][1.493s] GC(4) Metaspace: 26211K(27208K)->26211K(27208K) NonClass: 23078K(23752K)->23078K(23752K) Class: 3133K(3456K)->3133K(3456K) +[2023-09-21T08:48:29.228+0000][1.493s] GC(4) Pause Young (Concurrent Start) (G1 Evacuation Pause) 69M->25M(512M) 5.833ms +[2023-09-21T08:48:29.228+0000][1.493s] GC(4) User=0.02s Sys=0.00s Real=0.01s +[2023-09-21T08:48:29.228+0000][1.493s] GC(5) Concurrent Cycle +[2023-09-21T08:48:29.228+0000][1.493s] GC(5) Concurrent Clear Claimed Marks +[2023-09-21T08:48:29.229+0000][1.494s] GC(5) Concurrent Clear Claimed Marks 0.351ms +[2023-09-21T08:48:29.229+0000][1.494s] GC(5) Concurrent Scan Root Regions +[2023-09-21T08:48:29.230+0000][1.495s] GC(5) Concurrent Scan Root Regions 1.010ms +[2023-09-21T08:48:29.230+0000][1.495s] GC(5) Concurrent Mark (1.495s) +[2023-09-21T08:48:29.230+0000][1.495s] GC(5) Concurrent Mark From Roots +[2023-09-21T08:48:29.231+0000][1.496s] GC(5) Using 1 workers of 1 for marking +[2023-09-21T08:48:29.245+0000][1.510s] GC(5) Concurrent Mark From Roots 14.971ms +[2023-09-21T08:48:29.246+0000][1.511s] GC(5) Concurrent Preclean +[2023-09-21T08:48:29.246+0000][1.511s] GC(5) Concurrent Preclean 0.239ms +[2023-09-21T08:48:29.246+0000][1.511s] GC(5) Concurrent Mark (1.495s, 1.511s) 15.655ms +[2023-09-21T08:48:29.247+0000][1.512s] GC(5) Pause Remark +[2023-09-21T08:48:29.254+0000][1.519s] GC(5) Cleaned string and symbol table, strings: 11428 processed, 25 removed, symbols: 77167 processed, 34 removed +[2023-09-21T08:48:29.254+0000][1.519s] GC(5) Pause Remark 27M->27M(512M) 7.383ms +[2023-09-21T08:48:29.255+0000][1.520s] GC(5) User=0.02s Sys=0.01s Real=0.00s +[2023-09-21T08:48:29.255+0000][1.520s] GC(5) Concurrent Rebuild Remembered Sets +[2023-09-21T08:48:29.262+0000][1.527s] GC(5) Concurrent Rebuild Remembered Sets 7.358ms +[2023-09-21T08:48:29.263+0000][1.528s] GC(5) Pause Cleanup +[2023-09-21T08:48:29.263+0000][1.528s] GC(5) Pause Cleanup 27M->27M(512M) 0.195ms +[2023-09-21T08:48:29.263+0000][1.528s] GC(5) User=0.00s Sys=0.00s Real=0.00s +[2023-09-21T08:48:29.263+0000][1.528s] GC(5) Concurrent Cleanup for Next Mark +[2023-09-21T08:48:29.265+0000][1.530s] GC(5) Concurrent Cleanup for Next Mark 1.555ms +[2023-09-21T08:48:29.265+0000][1.530s] GC(5) Concurrent Cycle 36.708ms +[2023-09-21T08:48:29.665+0000][1.930s] GC(6) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-21T08:48:29.665+0000][1.930s] GC(6) Using 5 workers of 5 for evacuation +[2023-09-21T08:48:29.670+0000][1.936s] GC(6) Pre Evacuate Collection Set: 0.0ms +[2023-09-21T08:48:29.672+0000][1.937s] GC(6) Evacuate Collection Set: 3.5ms +[2023-09-21T08:48:29.672+0000][1.937s] GC(6) Post Evacuate Collection Set: 0.5ms +[2023-09-21T08:48:29.673+0000][1.938s] GC(6) Other: 1.9ms +[2023-09-21T08:48:29.674+0000][1.939s] GC(6) Eden regions: 63->0(79) +[2023-09-21T08:48:29.675+0000][1.940s] GC(6) Survivor regions: 2->8(9) +[2023-09-21T08:48:29.675+0000][1.940s] GC(6) Old regions: 21->21 +[2023-09-21T08:48:29.676+0000][1.941s] GC(6) Humongous regions: 5->5 +[2023-09-21T08:48:29.676+0000][1.941s] GC(6) Metaspace: 32731K(33736K)->32731K(33736K) NonClass: 28800K(29384K)->28800K(29384K) Class: 3930K(4352K)->3930K(4352K) +[2023-09-21T08:48:29.677+0000][1.942s] GC(6) Pause Young (Normal) (G1 Evacuation Pause) 89M->32M(512M) 12.448ms +[2023-09-21T08:48:29.678+0000][1.943s] GC(6) User=0.02s Sys=0.00s Real=0.02s +[2023-09-21T08:48:30.066+0000][2.331s] GC(7) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-21T08:48:30.066+0000][2.331s] GC(7) Using 5 workers of 5 for evacuation +[2023-09-21T08:48:30.075+0000][2.340s] GC(7) Pre Evacuate Collection Set: 0.0ms +[2023-09-21T08:48:30.075+0000][2.340s] GC(7) Evacuate Collection Set: 7.1ms +[2023-09-21T08:48:30.075+0000][2.340s] GC(7) Post Evacuate Collection Set: 0.7ms +[2023-09-21T08:48:30.075+0000][2.340s] GC(7) Other: 0.8ms +[2023-09-21T08:48:30.075+0000][2.340s] GC(7) Eden regions: 79->0(107) +[2023-09-21T08:48:30.076+0000][2.341s] GC(7) Survivor regions: 8->7(11) +[2023-09-21T08:48:30.076+0000][2.341s] GC(7) Old regions: 21->29 +[2023-09-21T08:48:30.076+0000][2.341s] GC(7) Humongous regions: 8->6 +[2023-09-21T08:48:30.076+0000][2.341s] GC(7) Metaspace: 38411K(39624K)->38411K(39624K) NonClass: 33764K(34504K)->33764K(34504K) Class: 4647K(5120K)->4647K(5120K) +[2023-09-21T08:48:30.076+0000][2.341s] GC(7) Pause Young (Normal) (G1 Evacuation Pause) 114M->39M(512M) 10.167ms +[2023-09-21T08:48:30.076+0000][2.342s] GC(7) User=0.02s Sys=0.01s Real=0.01s +[2023-09-21T08:48:30.466+0000][2.731s] GC(8) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-21T08:48:30.466+0000][2.731s] GC(8) Using 5 workers of 5 for evacuation +[2023-09-21T08:48:30.481+0000][2.746s] GC(8) Pre Evacuate Collection Set: 0.0ms +[2023-09-21T08:48:30.481+0000][2.746s] GC(8) Evacuate Collection Set: 11.1ms +[2023-09-21T08:48:30.481+0000][2.746s] GC(8) Post Evacuate Collection Set: 3.1ms +[2023-09-21T08:48:30.481+0000][2.746s] GC(8) Other: 0.3ms +[2023-09-21T08:48:30.482+0000][2.747s] GC(8) Eden regions: 107->0(185) +[2023-09-21T08:48:30.482+0000][2.747s] GC(8) Survivor regions: 7->10(15) +[2023-09-21T08:48:30.482+0000][2.747s] GC(8) Old regions: 29->29 +[2023-09-21T08:48:30.482+0000][2.747s] GC(8) Humongous regions: 6->6 +[2023-09-21T08:48:30.482+0000][2.747s] GC(8) Metaspace: 43870K(45256K)->43870K(45256K) NonClass: 38488K(39368K)->38488K(39368K) Class: 5382K(5888K)->5382K(5888K) +[2023-09-21T08:48:30.482+0000][2.747s] GC(8) Pause Young (Normal) (G1 Evacuation Pause) 146M->42M(512M) 16.116ms +[2023-09-21T08:48:30.483+0000][2.748s] GC(8) User=0.03s Sys=0.01s Real=0.01s +[2023-09-21T08:48:30.548+0000][2.813s] GC(9) Pause Young (Concurrent Start) (Metadata GC Threshold) +[2023-09-21T08:48:30.548+0000][2.813s] GC(9) Using 5 workers of 5 for evacuation +[2023-09-21T08:48:30.558+0000][2.823s] GC(9) Pre Evacuate Collection Set: 0.1ms +[2023-09-21T08:48:30.558+0000][2.823s] GC(9) Evacuate Collection Set: 8.8ms +[2023-09-21T08:48:30.558+0000][2.823s] GC(9) Post Evacuate Collection Set: 0.3ms +[2023-09-21T08:48:30.558+0000][2.823s] GC(9) Other: 0.5ms +[2023-09-21T08:48:30.558+0000][2.823s] GC(9) Eden regions: 13->0(253) +[2023-09-21T08:48:30.559+0000][2.824s] GC(9) Survivor regions: 10->12(25) +[2023-09-21T08:48:30.559+0000][2.824s] GC(9) Old regions: 29->29 +[2023-09-21T08:48:30.559+0000][2.824s] GC(9) Humongous regions: 6->6 +[2023-09-21T08:48:30.559+0000][2.824s] GC(9) Metaspace: 44800K(46152K)->44800K(46152K) NonClass: 39335K(40136K)->39335K(40136K) Class: 5465K(6016K)->5465K(6016K) +[2023-09-21T08:48:30.559+0000][2.824s] GC(9) Pause Young (Concurrent Start) (Metadata GC Threshold) 54M->44M(512M) 11.411ms +[2023-09-21T08:48:30.559+0000][2.824s] GC(9) User=0.02s Sys=0.00s Real=0.01s +[2023-09-21T08:48:30.560+0000][2.825s] GC(10) Concurrent Cycle +[2023-09-21T08:48:30.560+0000][2.825s] GC(10) Concurrent Clear Claimed Marks +[2023-09-21T08:48:30.560+0000][2.825s] GC(10) Concurrent Clear Claimed Marks 0.231ms +[2023-09-21T08:48:30.560+0000][2.825s] GC(10) Concurrent Scan Root Regions +[2023-09-21T08:48:30.563+0000][2.828s] GC(10) Concurrent Scan Root Regions 2.461ms +[2023-09-21T08:48:30.563+0000][2.828s] GC(10) Concurrent Mark (2.828s) +[2023-09-21T08:48:30.563+0000][2.828s] GC(10) Concurrent Mark From Roots +[2023-09-21T08:48:30.563+0000][2.828s] GC(10) Using 1 workers of 1 for marking +[2023-09-21T08:48:30.590+0000][2.855s] GC(10) Concurrent Mark From Roots 26.618ms +[2023-09-21T08:48:30.590+0000][2.855s] GC(10) Concurrent Preclean +[2023-09-21T08:48:30.590+0000][2.855s] GC(10) Concurrent Preclean 0.219ms +[2023-09-21T08:48:30.590+0000][2.855s] GC(10) Concurrent Mark (2.828s, 2.855s) 27.279ms +[2023-09-21T08:48:30.591+0000][2.856s] GC(10) Pause Remark +[2023-09-21T08:48:30.597+0000][2.862s] GC(10) Cleaned string and symbol table, strings: 19328 processed, 21 removed, symbols: 129352 processed, 488 removed +[2023-09-21T08:48:30.598+0000][2.863s] GC(10) Pause Remark 46M->46M(512M) 6.587ms +[2023-09-21T08:48:30.598+0000][2.863s] GC(10) User=0.02s Sys=0.00s Real=0.01s +[2023-09-21T08:48:30.598+0000][2.863s] GC(10) Concurrent Rebuild Remembered Sets +[2023-09-21T08:48:30.614+0000][2.879s] GC(10) Concurrent Rebuild Remembered Sets 15.954ms +[2023-09-21T08:48:30.614+0000][2.879s] GC(10) Pause Cleanup +[2023-09-21T08:48:30.614+0000][2.880s] GC(10) Pause Cleanup 49M->49M(512M) 0.276ms +[2023-09-21T08:48:30.615+0000][2.880s] GC(10) User=0.00s Sys=0.00s Real=0.00s +[2023-09-21T08:48:30.615+0000][2.880s] GC(10) Concurrent Cleanup for Next Mark +[2023-09-21T08:48:30.616+0000][2.881s] GC(10) Concurrent Cleanup for Next Mark 0.597ms +[2023-09-21T08:48:30.616+0000][2.881s] GC(10) Concurrent Cycle 56.108ms +[2023-09-21T08:49:50.173+0000][82.438s] GC(11) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-21T08:49:50.174+0000][82.439s] GC(11) Using 5 workers of 5 for evacuation +[2023-09-21T08:49:50.198+0000][82.463s] GC(11) Pre Evacuate Collection Set: 0.0ms +[2023-09-21T08:49:50.198+0000][82.463s] GC(11) Evacuate Collection Set: 15.8ms +[2023-09-21T08:49:50.199+0000][82.464s] GC(11) Post Evacuate Collection Set: 8.5ms +[2023-09-21T08:49:50.199+0000][82.464s] GC(11) Other: 0.6ms +[2023-09-21T08:49:50.199+0000][82.464s] GC(11) Eden regions: 253->0(289) +[2023-09-21T08:49:50.199+0000][82.464s] GC(11) Survivor regions: 12->16(34) +[2023-09-21T08:49:50.199+0000][82.464s] GC(11) Old regions: 29->29 +[2023-09-21T08:49:50.199+0000][82.464s] GC(11) Humongous regions: 6->6 +[2023-09-21T08:49:50.199+0000][82.464s] GC(11) Metaspace: 52568K(54088K)->52568K(54088K) NonClass: 46194K(47048K)->46194K(47048K) Class: 6373K(7040K)->6373K(7040K) +[2023-09-21T08:49:50.199+0000][82.464s] GC(11) Pause Young (Normal) (G1 Evacuation Pause) 297M->48M(512M) 25.904ms +[2023-09-21T08:49:50.199+0000][82.464s] GC(11) User=0.09s Sys=0.02s Real=0.03s +[2023-09-21T08:50:09.936+0000][102.201s] GC(12) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-21T08:50:09.936+0000][102.202s] GC(12) Using 5 workers of 5 for evacuation +[2023-09-21T08:50:09.946+0000][102.212s] GC(12) Pre Evacuate Collection Set: 0.0ms +[2023-09-21T08:50:09.946+0000][102.212s] GC(12) Evacuate Collection Set: 7.3ms +[2023-09-21T08:50:09.946+0000][102.212s] GC(12) Post Evacuate Collection Set: 2.5ms +[2023-09-21T08:50:09.946+0000][102.212s] GC(12) Other: 0.6ms +[2023-09-21T08:50:09.946+0000][102.212s] GC(12) Eden regions: 289->0(289) +[2023-09-21T08:50:09.947+0000][102.212s] GC(12) Survivor regions: 16->18(39) +[2023-09-21T08:50:09.947+0000][102.212s] GC(12) Old regions: 29->29 +[2023-09-21T08:50:09.947+0000][102.212s] GC(12) Humongous regions: 6->6 +[2023-09-21T08:50:09.947+0000][102.212s] GC(12) Metaspace: 53371K(55112K)->53371K(55112K) NonClass: 46993K(48072K)->46993K(48072K) Class: 6378K(7040K)->6378K(7040K) +[2023-09-21T08:50:09.947+0000][102.212s] GC(12) Pause Young (Normal) (G1 Evacuation Pause) 337M->50M(512M) 11.213ms +[2023-09-21T08:50:09.947+0000][102.212s] GC(12) User=0.03s Sys=0.01s Real=0.01s +[2023-09-21T09:41:30.052+0000][3182.267s] GC(13) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-21T09:41:30.055+0000][3182.269s] GC(13) Using 5 workers of 5 for evacuation +[2023-09-21T09:41:30.108+0000][3182.322s] GC(13) Pre Evacuate Collection Set: 1.5ms +[2023-09-21T09:41:30.108+0000][3182.322s] GC(13) Evacuate Collection Set: 38.4ms +[2023-09-21T09:41:30.108+0000][3182.322s] GC(13) Post Evacuate Collection Set: 10.4ms +[2023-09-21T09:41:30.108+0000][3182.322s] GC(13) Other: 6.8ms +[2023-09-21T09:41:30.108+0000][3182.322s] GC(13) Eden regions: 289->0(290) +[2023-09-21T09:41:30.108+0000][3182.323s] GC(13) Survivor regions: 18->17(39) +[2023-09-21T09:41:30.108+0000][3182.323s] GC(13) Old regions: 29->29 +[2023-09-21T09:41:30.108+0000][3182.323s] GC(13) Humongous regions: 6->6 +[2023-09-21T09:41:30.108+0000][3182.323s] GC(13) Metaspace: 54055K(55624K)->54055K(55624K) NonClass: 47675K(48584K)->47675K(48584K) Class: 6380K(7040K)->6380K(7040K) +[2023-09-21T09:41:30.109+0000][3182.323s] GC(13) Pause Young (Normal) (G1 Evacuation Pause) 339M->49M(512M) 56.919ms +[2023-09-21T09:41:30.109+0000][3182.323s] GC(13) User=0.24s Sys=0.00s Real=0.06s +[2023-09-22T11:27:56.346+0000][35299.701s] GC(14) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-22T11:27:56.348+0000][35299.702s] GC(14) Using 5 workers of 5 for evacuation +[2023-09-22T11:27:56.403+0000][35299.758s] GC(14) Pre Evacuate Collection Set: 2.2ms +[2023-09-22T11:27:56.404+0000][35299.758s] GC(14) Evacuate Collection Set: 44.2ms +[2023-09-22T11:27:56.404+0000][35299.758s] GC(14) Post Evacuate Collection Set: 6.5ms +[2023-09-22T11:27:56.404+0000][35299.759s] GC(14) Other: 5.2ms +[2023-09-22T11:27:56.404+0000][35299.759s] GC(14) Eden regions: 290->0(291) +[2023-09-22T11:27:56.404+0000][35299.759s] GC(14) Survivor regions: 17->16(39) +[2023-09-22T11:27:56.404+0000][35299.759s] GC(14) Old regions: 29->29 +[2023-09-22T11:27:56.405+0000][35299.759s] GC(14) Humongous regions: 6->6 +[2023-09-22T11:27:56.405+0000][35299.759s] GC(14) Metaspace: 55157K(56648K)->55157K(56648K) NonClass: 48708K(49608K)->48708K(49608K) Class: 6449K(7040K)->6449K(7040K) +[2023-09-22T11:27:56.405+0000][35299.759s] GC(14) Pause Young (Normal) (G1 Evacuation Pause) 339M->48M(512M) 59.224ms +[2023-09-22T11:27:56.405+0000][35299.759s] GC(14) User=0.25s Sys=0.00s Real=0.06s +[2023-09-30T18:27:51.181+0000][74314.673s] GC(15) Pause Young (Normal) (G1 Evacuation Pause) +[2023-09-30T18:27:51.184+0000][74314.676s] GC(15) Using 5 workers of 5 for evacuation +[2023-09-30T18:27:51.230+0000][74314.722s] GC(15) Pre Evacuate Collection Set: 0.9ms +[2023-09-30T18:27:51.230+0000][74314.722s] GC(15) Evacuate Collection Set: 42.5ms +[2023-09-30T18:27:51.231+0000][74314.723s] GC(15) Post Evacuate Collection Set: 1.9ms +[2023-09-30T18:27:51.231+0000][74314.723s] GC(15) Other: 3.5ms +[2023-09-30T18:27:51.231+0000][74314.723s] GC(15) Eden regions: 291->0(292) +[2023-09-30T18:27:51.231+0000][74314.723s] GC(15) Survivor regions: 16->15(39) +[2023-09-30T18:27:51.231+0000][74314.723s] GC(15) Old regions: 29->29 +[2023-09-30T18:27:51.232+0000][74314.723s] GC(15) Humongous regions: 6->6 +[2023-09-30T18:27:51.232+0000][74314.724s] GC(15) Metaspace: 55158K(56648K)->55158K(56648K) NonClass: 48709K(49608K)->48709K(49608K) Class: 6449K(7040K)->6449K(7040K) +[2023-09-30T18:27:51.232+0000][74314.724s] GC(15) Pause Young (Normal) (G1 Evacuation Pause) 339M->47M(512M) 50.568ms +[2023-09-30T18:27:51.232+0000][74314.724s] GC(15) User=0.21s Sys=0.00s Real=0.05s diff --git a/tests/data/test/hpc/solr_logs/solr_gc.log.5 b/tests/data/test/hpc/solr_logs/solr_gc.log.5 new file mode 100644 index 00000000..87b8bf26 --- /dev/null +++ b/tests/data/test/hpc/solr_logs/solr_gc.log.5 @@ -0,0 +1,205 @@ +[2023-10-06T13:35:40.557+0000][0.008s] Heap region size: 1M +[2023-10-06T13:35:40.570+0000][0.020s] Using G1 +[2023-10-06T13:35:40.570+0000][0.020s] Heap address: 0x00000000e0000000, size: 512 MB, Compressed Oops mode: 32-bit +[2023-10-06T13:35:40.571+0000][0.021s] Mark closed archive regions in map: [0x00000000fff00000, 0x00000000fff65ff8] +[2023-10-06T13:35:40.571+0000][0.021s] Mark open archive regions in map: [0x00000000ffe00000, 0x00000000ffe42ff8] +[2023-10-06T13:35:40.867+0000][0.317s] GC(0) Pause Young (Normal) (G1 Evacuation Pause) +[2023-10-06T13:35:40.868+0000][0.318s] GC(0) Using 5 workers of 5 for evacuation +[2023-10-06T13:35:40.874+0000][0.324s] GC(0) Pre Evacuate Collection Set: 0.2ms +[2023-10-06T13:35:40.874+0000][0.325s] GC(0) Evacuate Collection Set: 6.0ms +[2023-10-06T13:35:40.874+0000][0.325s] GC(0) Post Evacuate Collection Set: 0.3ms +[2023-10-06T13:35:40.874+0000][0.325s] GC(0) Other: 0.5ms +[2023-10-06T13:35:40.875+0000][0.325s] GC(0) Eden regions: 25->0(304) +[2023-10-06T13:35:40.875+0000][0.325s] GC(0) Survivor regions: 0->3(4) +[2023-10-06T13:35:40.875+0000][0.325s] GC(0) Old regions: 2->2 +[2023-10-06T13:35:40.875+0000][0.325s] GC(0) Humongous regions: 0->0 +[2023-10-06T13:35:40.875+0000][0.325s] GC(0) Metaspace: 6765K(8192K)->6765K(8192K) NonClass: 5928K(7168K)->5928K(7168K) Class: 836K(1024K)->836K(1024K) +[2023-10-06T13:35:40.875+0000][0.325s] GC(0) Pause Young (Normal) (G1 Evacuation Pause) 25M->3M(512M) 7.653ms +[2023-10-06T13:35:40.875+0000][0.325s] GC(0) User=0.03s Sys=0.00s Real=0.01s +[2023-10-06T13:35:41.435+0000][0.886s] GC(1) Pause Young (Normal) (G1 Evacuation Pause) +[2023-10-06T13:35:41.435+0000][0.886s] GC(1) Using 5 workers of 5 for evacuation +[2023-10-06T13:35:41.445+0000][0.895s] GC(1) Pre Evacuate Collection Set: 0.0ms +[2023-10-06T13:35:41.445+0000][0.895s] GC(1) Evacuate Collection Set: 9.0ms +[2023-10-06T13:35:41.445+0000][0.895s] GC(1) Post Evacuate Collection Set: 0.3ms +[2023-10-06T13:35:41.445+0000][0.895s] GC(1) Other: 0.3ms +[2023-10-06T13:35:41.445+0000][0.896s] GC(1) Eden regions: 87->0(59) +[2023-10-06T13:35:41.445+0000][0.896s] GC(1) Survivor regions: 3->12(12) +[2023-10-06T13:35:41.445+0000][0.896s] GC(1) Old regions: 2->9 +[2023-10-06T13:35:41.446+0000][0.896s] GC(1) Humongous regions: 4->4 +[2023-10-06T13:35:41.446+0000][0.896s] GC(1) Metaspace: 19663K(20608K)->19663K(20608K) NonClass: 17295K(17920K)->17295K(17920K) Class: 2367K(2688K)->2367K(2688K) +[2023-10-06T13:35:41.446+0000][0.896s] GC(1) Pause Young (Normal) (G1 Evacuation Pause) 94M->23M(512M) 10.367ms +[2023-10-06T13:35:41.446+0000][0.896s] GC(1) User=0.03s Sys=0.02s Real=0.01s +[2023-10-06T13:35:41.465+0000][0.915s] GC(2) Pause Young (Concurrent Start) (Metadata GC Threshold) +[2023-10-06T13:35:41.465+0000][0.915s] GC(2) Using 5 workers of 5 for evacuation +[2023-10-06T13:35:41.472+0000][0.923s] GC(2) Pre Evacuate Collection Set: 0.1ms +[2023-10-06T13:35:41.472+0000][0.923s] GC(2) Evacuate Collection Set: 6.9ms +[2023-10-06T13:35:41.473+0000][0.923s] GC(2) Post Evacuate Collection Set: 0.2ms +[2023-10-06T13:35:41.473+0000][0.923s] GC(2) Other: 0.3ms +[2023-10-06T13:35:41.473+0000][0.923s] GC(2) Eden regions: 5->0(32) +[2023-10-06T13:35:41.473+0000][0.923s] GC(2) Survivor regions: 12->1(9) +[2023-10-06T13:35:41.473+0000][0.923s] GC(2) Old regions: 9->22 +[2023-10-06T13:35:41.473+0000][0.923s] GC(2) Humongous regions: 4->4 +[2023-10-06T13:35:41.473+0000][0.923s] GC(2) Metaspace: 20448K(21248K)->20448K(21248K) NonClass: 18013K(18432K)->18013K(18432K) Class: 2434K(2816K)->2434K(2816K) +[2023-10-06T13:35:41.473+0000][0.923s] GC(2) Pause Young (Concurrent Start) (Metadata GC Threshold) 28M->24M(512M) 8.205ms +[2023-10-06T13:35:41.473+0000][0.923s] GC(2) User=0.02s Sys=0.01s Real=0.00s +[2023-10-06T13:35:41.473+0000][0.923s] GC(3) Concurrent Cycle +[2023-10-06T13:35:41.473+0000][0.923s] GC(3) Concurrent Clear Claimed Marks +[2023-10-06T13:35:41.473+0000][0.924s] GC(3) Concurrent Clear Claimed Marks 0.109ms +[2023-10-06T13:35:41.473+0000][0.924s] GC(3) Concurrent Scan Root Regions +[2023-10-06T13:35:41.474+0000][0.924s] GC(3) Concurrent Scan Root Regions 0.250ms +[2023-10-06T13:35:41.474+0000][0.924s] GC(3) Concurrent Mark (0.924s) +[2023-10-06T13:35:41.474+0000][0.924s] GC(3) Concurrent Mark From Roots +[2023-10-06T13:35:41.474+0000][0.924s] GC(3) Using 1 workers of 1 for marking +[2023-10-06T13:35:41.486+0000][0.936s] GC(3) Concurrent Mark From Roots 12.101ms +[2023-10-06T13:35:41.486+0000][0.936s] GC(3) Concurrent Preclean +[2023-10-06T13:35:41.486+0000][0.936s] GC(3) Concurrent Preclean 0.138ms +[2023-10-06T13:35:41.486+0000][0.937s] GC(3) Concurrent Mark (0.924s, 0.937s) 12.512ms +[2023-10-06T13:35:41.486+0000][0.937s] GC(3) Pause Remark +[2023-10-06T13:35:41.489+0000][0.939s] GC(3) Cleaned string and symbol table, strings: 8491 processed, 0 removed, symbols: 61912 processed, 39 removed +[2023-10-06T13:35:41.489+0000][0.939s] GC(3) Pause Remark 28M->28M(512M) 2.339ms +[2023-10-06T13:35:41.489+0000][0.939s] GC(3) User=0.01s Sys=0.00s Real=0.00s +[2023-10-06T13:35:41.489+0000][0.939s] GC(3) Concurrent Rebuild Remembered Sets +[2023-10-06T13:35:41.499+0000][0.949s] GC(3) Concurrent Rebuild Remembered Sets 9.876ms +[2023-10-06T13:35:41.500+0000][0.950s] GC(3) Pause Cleanup +[2023-10-06T13:35:41.500+0000][0.950s] GC(3) Pause Cleanup 29M->29M(512M) 0.213ms +[2023-10-06T13:35:41.500+0000][0.950s] GC(3) User=0.00s Sys=0.00s Real=0.00s +[2023-10-06T13:35:41.500+0000][0.950s] GC(3) Concurrent Cleanup for Next Mark +[2023-10-06T13:35:41.501+0000][0.952s] GC(3) Concurrent Cleanup for Next Mark 1.242ms +[2023-10-06T13:35:41.501+0000][0.952s] GC(3) Concurrent Cycle 28.249ms +[2023-10-06T13:35:41.664+0000][1.114s] GC(4) Pause Young (Concurrent Start) (G1 Evacuation Pause) +[2023-10-06T13:35:41.664+0000][1.114s] GC(4) Using 5 workers of 5 for evacuation +[2023-10-06T13:35:41.665+0000][1.115s] GC(4) Pre Evacuate Collection Set: 0.1ms +[2023-10-06T13:35:41.665+0000][1.116s] GC(4) Evacuate Collection Set: 1.0ms +[2023-10-06T13:35:41.665+0000][1.116s] GC(4) Post Evacuate Collection Set: 0.2ms +[2023-10-06T13:35:41.665+0000][1.116s] GC(4) Other: 0.3ms +[2023-10-06T13:35:41.665+0000][1.116s] GC(4) Eden regions: 32->0(64) +[2023-10-06T13:35:41.665+0000][1.116s] GC(4) Survivor regions: 1->1(5) +[2023-10-06T13:35:41.665+0000][1.116s] GC(4) Old regions: 22->22 +[2023-10-06T13:35:41.666+0000][1.116s] GC(4) Humongous regions: 4->4 +[2023-10-06T13:35:41.666+0000][1.116s] GC(4) Metaspace: 23440K(24520K)->23440K(24520K) NonClass: 20659K(21448K)->20659K(21448K) Class: 2780K(3072K)->2780K(3072K) +[2023-10-06T13:35:41.666+0000][1.116s] GC(4) Pause Young (Concurrent Start) (G1 Evacuation Pause) 56M->24M(512M) 2.069ms +[2023-10-06T13:35:41.666+0000][1.116s] GC(4) User=0.01s Sys=0.00s Real=0.01s +[2023-10-06T13:35:41.666+0000][1.116s] GC(5) Concurrent Cycle +[2023-10-06T13:35:41.666+0000][1.116s] GC(5) Concurrent Clear Claimed Marks +[2023-10-06T13:35:41.666+0000][1.116s] GC(5) Concurrent Clear Claimed Marks 0.098ms +[2023-10-06T13:35:41.666+0000][1.116s] GC(5) Concurrent Scan Root Regions +[2023-10-06T13:35:41.667+0000][1.117s] GC(5) Concurrent Scan Root Regions 0.443ms +[2023-10-06T13:35:41.667+0000][1.117s] GC(5) Concurrent Mark (1.117s) +[2023-10-06T13:35:41.667+0000][1.117s] GC(5) Concurrent Mark From Roots +[2023-10-06T13:35:41.667+0000][1.117s] GC(5) Using 1 workers of 1 for marking +[2023-10-06T13:35:41.681+0000][1.131s] GC(5) Concurrent Mark From Roots 13.971ms +[2023-10-06T13:35:41.681+0000][1.131s] GC(5) Concurrent Preclean +[2023-10-06T13:35:41.681+0000][1.131s] GC(5) Concurrent Preclean 0.139ms +[2023-10-06T13:35:41.681+0000][1.131s] GC(5) Concurrent Mark (1.117s, 1.131s) 14.467ms +[2023-10-06T13:35:41.681+0000][1.131s] GC(5) Pause Remark +[2023-10-06T13:35:41.683+0000][1.133s] GC(5) Cleaned string and symbol table, strings: 9276 processed, 28 removed, symbols: 68624 processed, 23 removed +[2023-10-06T13:35:41.683+0000][1.133s] GC(5) Pause Remark 27M->27M(512M) 1.732ms +[2023-10-06T13:35:41.683+0000][1.133s] GC(5) User=0.01s Sys=0.00s Real=0.00s +[2023-10-06T13:35:41.683+0000][1.133s] GC(5) Concurrent Rebuild Remembered Sets +[2023-10-06T13:35:41.694+0000][1.144s] GC(5) Concurrent Rebuild Remembered Sets 10.667ms +[2023-10-06T13:35:41.694+0000][1.145s] GC(5) Pause Cleanup +[2023-10-06T13:35:41.695+0000][1.145s] GC(5) Pause Cleanup 27M->27M(512M) 0.193ms +[2023-10-06T13:35:41.695+0000][1.145s] GC(5) User=0.00s Sys=0.00s Real=0.01s +[2023-10-06T13:35:41.695+0000][1.145s] GC(5) Concurrent Cleanup for Next Mark +[2023-10-06T13:35:41.696+0000][1.147s] GC(5) Concurrent Cleanup for Next Mark 1.529ms +[2023-10-06T13:35:41.696+0000][1.147s] GC(5) Concurrent Cycle 30.616ms +[2023-10-06T13:35:42.007+0000][1.457s] GC(6) Pause Young (Normal) (G1 Evacuation Pause) +[2023-10-06T13:35:42.007+0000][1.457s] GC(6) Using 5 workers of 5 for evacuation +[2023-10-06T13:35:42.010+0000][1.460s] GC(6) Pre Evacuate Collection Set: 0.0ms +[2023-10-06T13:35:42.010+0000][1.460s] GC(6) Evacuate Collection Set: 2.3ms +[2023-10-06T13:35:42.010+0000][1.460s] GC(6) Post Evacuate Collection Set: 0.3ms +[2023-10-06T13:35:42.010+0000][1.460s] GC(6) Other: 0.4ms +[2023-10-06T13:35:42.010+0000][1.460s] GC(6) Eden regions: 64->0(94) +[2023-10-06T13:35:42.010+0000][1.461s] GC(6) Survivor regions: 1->5(9) +[2023-10-06T13:35:42.010+0000][1.461s] GC(6) Old regions: 22->22 +[2023-10-06T13:35:42.011+0000][1.461s] GC(6) Humongous regions: 4->4 +[2023-10-06T13:35:42.011+0000][1.461s] GC(6) Metaspace: 31792K(32840K)->31792K(32840K) NonClass: 27982K(28616K)->27982K(28616K) Class: 3809K(4224K)->3809K(4224K) +[2023-10-06T13:35:42.011+0000][1.461s] GC(6) Pause Young (Normal) (G1 Evacuation Pause) 88M->28M(512M) 3.973ms +[2023-10-06T13:35:42.011+0000][1.461s] GC(6) User=0.02s Sys=0.00s Real=0.00s +[2023-10-06T13:35:42.416+0000][1.866s] GC(7) Pause Young (Normal) (G1 Evacuation Pause) +[2023-10-06T13:35:42.416+0000][1.866s] GC(7) Using 5 workers of 5 for evacuation +[2023-10-06T13:35:42.422+0000][1.872s] GC(7) Pre Evacuate Collection Set: 0.0ms +[2023-10-06T13:35:42.422+0000][1.872s] GC(7) Evacuate Collection Set: 5.6ms +[2023-10-06T13:35:42.422+0000][1.872s] GC(7) Post Evacuate Collection Set: 0.2ms +[2023-10-06T13:35:42.422+0000][1.872s] GC(7) Other: 0.3ms +[2023-10-06T13:35:42.422+0000][1.873s] GC(7) Eden regions: 94->0(112) +[2023-10-06T13:35:42.422+0000][1.873s] GC(7) Survivor regions: 5->13(13) +[2023-10-06T13:35:42.423+0000][1.873s] GC(7) Old regions: 22->23 +[2023-10-06T13:35:42.423+0000][1.873s] GC(7) Humongous regions: 8->6 +[2023-10-06T13:35:42.423+0000][1.873s] GC(7) Metaspace: 38951K(40264K)->38951K(40264K) NonClass: 34245K(35016K)->34245K(35016K) Class: 4705K(5248K)->4705K(5248K) +[2023-10-06T13:35:42.423+0000][1.873s] GC(7) Pause Young (Normal) (G1 Evacuation Pause) 126M->39M(512M) 6.933ms +[2023-10-06T13:35:42.423+0000][1.873s] GC(7) User=0.01s Sys=0.01s Real=0.00s +[2023-10-06T13:35:42.505+0000][1.955s] GC(8) Pause Young (Concurrent Start) (Metadata GC Threshold) +[2023-10-06T13:35:42.505+0000][1.955s] GC(8) Using 5 workers of 5 for evacuation +[2023-10-06T13:35:42.514+0000][1.964s] GC(8) Pre Evacuate Collection Set: 0.1ms +[2023-10-06T13:35:42.514+0000][1.964s] GC(8) Evacuate Collection Set: 8.4ms +[2023-10-06T13:35:42.514+0000][1.964s] GC(8) Post Evacuate Collection Set: 0.3ms +[2023-10-06T13:35:42.514+0000][1.964s] GC(8) Other: 0.2ms +[2023-10-06T13:35:42.514+0000][1.964s] GC(8) Eden regions: 20->0(106) +[2023-10-06T13:35:42.514+0000][1.964s] GC(8) Survivor regions: 13->2(16) +[2023-10-06T13:35:42.514+0000][1.964s] GC(8) Old regions: 23->35 +[2023-10-06T13:35:42.514+0000][1.964s] GC(8) Humongous regions: 6->6 +[2023-10-06T13:35:42.514+0000][1.964s] GC(8) Metaspace: 40219K(41416K)->40219K(41416K) NonClass: 35373K(36040K)->35373K(36040K) Class: 4845K(5376K)->4845K(5376K) +[2023-10-06T13:35:42.514+0000][1.964s] GC(8) Pause Young (Concurrent Start) (Metadata GC Threshold) 59M->41M(512M) 9.625ms +[2023-10-06T13:35:42.514+0000][1.964s] GC(8) User=0.01s Sys=0.00s Real=0.01s +[2023-10-06T13:35:42.514+0000][1.964s] GC(9) Concurrent Cycle +[2023-10-06T13:35:42.514+0000][1.965s] GC(9) Concurrent Clear Claimed Marks +[2023-10-06T13:35:42.514+0000][1.965s] GC(9) Concurrent Clear Claimed Marks 0.075ms +[2023-10-06T13:35:42.514+0000][1.965s] GC(9) Concurrent Scan Root Regions +[2023-10-06T13:35:42.515+0000][1.965s] GC(9) Concurrent Scan Root Regions 0.492ms +[2023-10-06T13:35:42.515+0000][1.965s] GC(9) Concurrent Mark (1.965s) +[2023-10-06T13:35:42.515+0000][1.965s] GC(9) Concurrent Mark From Roots +[2023-10-06T13:35:42.515+0000][1.965s] GC(9) Using 1 workers of 1 for marking +[2023-10-06T13:35:42.533+0000][1.983s] GC(9) Concurrent Mark From Roots 18.002ms +[2023-10-06T13:35:42.533+0000][1.984s] GC(9) Concurrent Preclean +[2023-10-06T13:35:42.533+0000][1.984s] GC(9) Concurrent Preclean 0.168ms +[2023-10-06T13:35:42.534+0000][1.984s] GC(9) Concurrent Mark (1.965s, 1.984s) 18.445ms +[2023-10-06T13:35:42.534+0000][1.984s] GC(9) Pause Remark +[2023-10-06T13:35:42.536+0000][1.986s] GC(9) Cleaned string and symbol table, strings: 17548 processed, 0 removed, symbols: 117765 processed, 163 removed +[2023-10-06T13:35:42.536+0000][1.987s] GC(9) Pause Remark 51M->51M(512M) 2.792ms +[2023-10-06T13:35:42.537+0000][1.987s] GC(9) User=0.01s Sys=0.00s Real=0.01s +[2023-10-06T13:35:42.537+0000][1.987s] GC(9) Concurrent Rebuild Remembered Sets +[2023-10-06T13:35:42.549+0000][1.999s] GC(9) Concurrent Rebuild Remembered Sets 12.348ms +[2023-10-06T13:35:42.549+0000][2.000s] GC(9) Pause Cleanup +[2023-10-06T13:35:42.549+0000][2.000s] GC(9) Pause Cleanup 57M->57M(512M) 0.168ms +[2023-10-06T13:35:42.550+0000][2.000s] GC(9) User=0.00s Sys=0.00s Real=0.00s +[2023-10-06T13:35:42.550+0000][2.000s] GC(9) Concurrent Cleanup for Next Mark +[2023-10-06T13:35:42.550+0000][2.000s] GC(9) Concurrent Cleanup for Next Mark 0.268ms +[2023-10-06T13:35:42.550+0000][2.000s] GC(9) Concurrent Cycle 35.724ms +[2023-10-06T13:35:42.747+0000][2.197s] GC(10) Pause Young (Concurrent Start) (G1 Evacuation Pause) +[2023-10-06T13:35:42.747+0000][2.197s] GC(10) Using 5 workers of 5 for evacuation +[2023-10-06T13:35:42.750+0000][2.200s] GC(10) Pre Evacuate Collection Set: 0.1ms +[2023-10-06T13:35:42.750+0000][2.200s] GC(10) Evacuate Collection Set: 2.3ms +[2023-10-06T13:35:42.750+0000][2.200s] GC(10) Post Evacuate Collection Set: 0.3ms +[2023-10-06T13:35:42.750+0000][2.200s] GC(10) Other: 0.2ms +[2023-10-06T13:35:42.750+0000][2.200s] GC(10) Eden regions: 106->0(177) +[2023-10-06T13:35:42.750+0000][2.200s] GC(10) Survivor regions: 2->6(14) +[2023-10-06T13:35:42.750+0000][2.200s] GC(10) Old regions: 35->35 +[2023-10-06T13:35:42.750+0000][2.200s] GC(10) Humongous regions: 6->6 +[2023-10-06T13:35:42.750+0000][2.200s] GC(10) Metaspace: 45562K(47048K)->45562K(47048K) NonClass: 40002K(40904K)->40002K(40904K) Class: 5559K(6144K)->5559K(6144K) +[2023-10-06T13:35:42.750+0000][2.200s] GC(10) Pause Young (Concurrent Start) (G1 Evacuation Pause) 147M->44M(512M) 3.331ms +[2023-10-06T13:35:42.750+0000][2.200s] GC(10) User=0.01s Sys=0.01s Real=0.00s +[2023-10-06T13:35:42.750+0000][2.201s] GC(11) Concurrent Cycle +[2023-10-06T13:35:42.750+0000][2.201s] GC(11) Concurrent Clear Claimed Marks +[2023-10-06T13:35:42.751+0000][2.201s] GC(11) Concurrent Clear Claimed Marks 0.104ms +[2023-10-06T13:35:42.751+0000][2.201s] GC(11) Concurrent Scan Root Regions +[2023-10-06T13:35:42.752+0000][2.202s] GC(11) Concurrent Scan Root Regions 1.458ms +[2023-10-06T13:35:42.752+0000][2.202s] GC(11) Concurrent Mark (2.202s) +[2023-10-06T13:35:42.752+0000][2.202s] GC(11) Concurrent Mark From Roots +[2023-10-06T13:35:42.752+0000][2.203s] GC(11) Using 1 workers of 1 for marking +[2023-10-06T13:35:42.771+0000][2.221s] GC(11) Concurrent Mark From Roots 18.899ms +[2023-10-06T13:35:42.771+0000][2.222s] GC(11) Concurrent Preclean +[2023-10-06T13:35:42.771+0000][2.222s] GC(11) Concurrent Preclean 0.173ms +[2023-10-06T13:35:42.772+0000][2.222s] GC(11) Concurrent Mark (2.202s, 2.222s) 19.408ms +[2023-10-06T13:35:42.772+0000][2.222s] GC(11) Pause Remark +[2023-10-06T13:35:42.777+0000][2.227s] GC(11) Cleaned string and symbol table, strings: 19675 processed, 29 removed, symbols: 130991 processed, 406 removed +[2023-10-06T13:35:42.778+0000][2.228s] GC(11) Pause Remark 51M->51M(512M) 5.854ms +[2023-10-06T13:35:42.778+0000][2.228s] GC(11) User=0.03s Sys=0.00s Real=0.01s +[2023-10-06T13:35:42.778+0000][2.229s] GC(11) Concurrent Rebuild Remembered Sets +[2023-10-06T13:35:42.790+0000][2.241s] GC(11) Concurrent Rebuild Remembered Sets 12.087ms +[2023-10-06T13:35:42.791+0000][2.241s] GC(11) Pause Cleanup +[2023-10-06T13:35:42.791+0000][2.241s] GC(11) Pause Cleanup 53M->53M(512M) 0.127ms +[2023-10-06T13:35:42.791+0000][2.241s] GC(11) User=0.00s Sys=0.00s Real=0.00s +[2023-10-06T13:35:42.791+0000][2.241s] GC(11) Concurrent Cleanup for Next Mark +[2023-10-06T13:35:42.791+0000][2.241s] GC(11) Concurrent Cleanup for Next Mark 0.278ms +[2023-10-06T13:35:42.791+0000][2.242s] GC(11) Concurrent Cycle 41.011ms diff --git a/tests/data/test/hpc/solr_logs/solr_gc.log.6 b/tests/data/test/hpc/solr_logs/solr_gc.log.6 new file mode 100644 index 00000000..36f8d4b3 --- /dev/null +++ b/tests/data/test/hpc/solr_logs/solr_gc.log.6 @@ -0,0 +1,181 @@ +[2023-10-10T07:57:54.713+0000][0.007s] Heap region size: 1M +[2023-10-10T07:57:54.727+0000][0.021s] Using G1 +[2023-10-10T07:57:54.727+0000][0.021s] Heap address: 0x00000000e0000000, size: 512 MB, Compressed Oops mode: 32-bit +[2023-10-10T07:57:54.727+0000][0.021s] Mark closed archive regions in map: [0x00000000fff00000, 0x00000000fff65ff8] +[2023-10-10T07:57:54.728+0000][0.022s] Mark open archive regions in map: [0x00000000ffe00000, 0x00000000ffe42ff8] +[2023-10-10T07:57:55.091+0000][0.385s] GC(0) Pause Young (Normal) (G1 Evacuation Pause) +[2023-10-10T07:57:55.091+0000][0.385s] GC(0) Using 5 workers of 5 for evacuation +[2023-10-10T07:57:55.104+0000][0.398s] GC(0) Pre Evacuate Collection Set: 0.2ms +[2023-10-10T07:57:55.104+0000][0.398s] GC(0) Evacuate Collection Set: 6.1ms +[2023-10-10T07:57:55.104+0000][0.398s] GC(0) Post Evacuate Collection Set: 6.5ms +[2023-10-10T07:57:55.104+0000][0.399s] GC(0) Other: 0.6ms +[2023-10-10T07:57:55.105+0000][0.399s] GC(0) Eden regions: 25->0(304) +[2023-10-10T07:57:55.105+0000][0.399s] GC(0) Survivor regions: 0->3(4) +[2023-10-10T07:57:55.105+0000][0.399s] GC(0) Old regions: 2->2 +[2023-10-10T07:57:55.105+0000][0.399s] GC(0) Humongous regions: 0->0 +[2023-10-10T07:57:55.105+0000][0.399s] GC(0) Metaspace: 6738K(8192K)->6738K(8192K) NonClass: 5902K(7168K)->5902K(7168K) Class: 836K(1024K)->836K(1024K) +[2023-10-10T07:57:55.105+0000][0.399s] GC(0) Pause Young (Normal) (G1 Evacuation Pause) 25M->3M(512M) 13.928ms +[2023-10-10T07:57:55.105+0000][0.399s] GC(0) User=0.03s Sys=0.01s Real=0.02s +[2023-10-10T07:57:55.437+0000][0.731s] GC(1) Pause Young (Normal) (G1 Evacuation Pause) +[2023-10-10T07:57:55.437+0000][0.731s] GC(1) Using 5 workers of 5 for evacuation +[2023-10-10T07:57:55.447+0000][0.741s] GC(1) Pre Evacuate Collection Set: 0.0ms +[2023-10-10T07:57:55.447+0000][0.741s] GC(1) Evacuate Collection Set: 9.5ms +[2023-10-10T07:57:55.447+0000][0.741s] GC(1) Post Evacuate Collection Set: 0.2ms +[2023-10-10T07:57:55.447+0000][0.741s] GC(1) Other: 0.2ms +[2023-10-10T07:57:55.447+0000][0.741s] GC(1) Eden regions: 23->0(42) +[2023-10-10T07:57:55.447+0000][0.741s] GC(1) Survivor regions: 3->4(4) +[2023-10-10T07:57:55.447+0000][0.741s] GC(1) Old regions: 2->10 +[2023-10-10T07:57:55.447+0000][0.741s] GC(1) Humongous regions: 4->4 +[2023-10-10T07:57:55.448+0000][0.742s] GC(1) Metaspace: 12926K(13696K)->12926K(13696K) NonClass: 11310K(11776K)->11310K(11776K) Class: 1616K(1920K)->1616K(1920K) +[2023-10-10T07:57:55.448+0000][0.742s] GC(1) Pause Young (Normal) (G1 Evacuation Pause) 30M->15M(512M) 10.635ms +[2023-10-10T07:57:55.448+0000][0.742s] GC(1) User=0.02s Sys=0.01s Real=0.01s +[2023-10-10T07:57:55.955+0000][1.249s] GC(2) Pause Young (Normal) (G1 Evacuation Pause) +[2023-10-10T07:57:55.955+0000][1.249s] GC(2) Using 5 workers of 5 for evacuation +[2023-10-10T07:57:55.968+0000][1.262s] GC(2) Pre Evacuate Collection Set: 0.0ms +[2023-10-10T07:57:55.968+0000][1.262s] GC(2) Evacuate Collection Set: 10.9ms +[2023-10-10T07:57:55.968+0000][1.262s] GC(2) Post Evacuate Collection Set: 1.8ms +[2023-10-10T07:57:55.968+0000][1.262s] GC(2) Other: 0.3ms +[2023-10-10T07:57:55.968+0000][1.262s] GC(2) Eden regions: 37->0(49) +[2023-10-10T07:57:55.968+0000][1.262s] GC(2) Survivor regions: 4->6(6) +[2023-10-10T07:57:55.968+0000][1.262s] GC(2) Old regions: 10->15 +[2023-10-10T07:57:55.969+0000][1.263s] GC(2) Humongous regions: 4->4 +[2023-10-10T07:57:55.969+0000][1.263s] GC(2) Metaspace: 16417K(17408K)->16417K(17408K) NonClass: 14402K(15104K)->14402K(15104K) Class: 2014K(2304K)->2014K(2304K) +[2023-10-10T07:57:55.969+0000][1.263s] GC(2) Pause Young (Normal) (G1 Evacuation Pause) 52M->23M(512M) 14.001ms +[2023-10-10T07:57:55.969+0000][1.263s] GC(2) User=0.03s Sys=0.00s Real=0.01s +[2023-10-10T07:57:56.148+0000][1.442s] GC(3) Pause Young (Concurrent Start) (Metadata GC Threshold) +[2023-10-10T07:57:56.148+0000][1.442s] GC(3) Using 5 workers of 5 for evacuation +[2023-10-10T07:57:56.157+0000][1.451s] GC(3) Pre Evacuate Collection Set: 0.1ms +[2023-10-10T07:57:56.157+0000][1.451s] GC(3) Evacuate Collection Set: 8.1ms +[2023-10-10T07:57:56.157+0000][1.451s] GC(3) Post Evacuate Collection Set: 0.3ms +[2023-10-10T07:57:56.157+0000][1.451s] GC(3) Other: 0.4ms +[2023-10-10T07:57:56.157+0000][1.451s] GC(3) Eden regions: 31->0(56) +[2023-10-10T07:57:56.158+0000][1.452s] GC(3) Survivor regions: 6->1(7) +[2023-10-10T07:57:56.158+0000][1.452s] GC(3) Old regions: 15->22 +[2023-10-10T07:57:56.158+0000][1.452s] GC(3) Humongous regions: 4->4 +[2023-10-10T07:57:56.158+0000][1.452s] GC(3) Metaspace: 20363K(21248K)->20363K(21248K) NonClass: 17929K(18432K)->17929K(18432K) Class: 2434K(2816K)->2434K(2816K) +[2023-10-10T07:57:56.158+0000][1.452s] GC(3) Pause Young (Concurrent Start) (Metadata GC Threshold) 54M->25M(512M) 9.913ms +[2023-10-10T07:57:56.158+0000][1.452s] GC(3) User=0.02s Sys=0.00s Real=0.01s +[2023-10-10T07:57:56.158+0000][1.452s] GC(4) Concurrent Cycle +[2023-10-10T07:57:56.158+0000][1.452s] GC(4) Concurrent Clear Claimed Marks +[2023-10-10T07:57:56.159+0000][1.453s] GC(4) Concurrent Clear Claimed Marks 0.266ms +[2023-10-10T07:57:56.159+0000][1.453s] GC(4) Concurrent Scan Root Regions +[2023-10-10T07:57:56.159+0000][1.453s] GC(4) Concurrent Scan Root Regions 0.618ms +[2023-10-10T07:57:56.159+0000][1.453s] GC(4) Concurrent Mark (1.453s) +[2023-10-10T07:57:56.160+0000][1.454s] GC(4) Concurrent Mark From Roots +[2023-10-10T07:57:56.160+0000][1.454s] GC(4) Using 1 workers of 1 for marking +[2023-10-10T07:57:56.173+0000][1.467s] GC(4) Concurrent Mark From Roots 13.931ms +[2023-10-10T07:57:56.174+0000][1.468s] GC(4) Concurrent Preclean +[2023-10-10T07:57:56.174+0000][1.468s] GC(4) Concurrent Preclean 0.252ms +[2023-10-10T07:57:56.174+0000][1.468s] GC(4) Concurrent Mark (1.453s, 1.468s) 14.887ms +[2023-10-10T07:57:56.175+0000][1.469s] GC(4) Pause Remark +[2023-10-10T07:57:56.181+0000][1.475s] GC(4) Cleaned string and symbol table, strings: 8465 processed, 24 removed, symbols: 61916 processed, 39 removed +[2023-10-10T07:57:56.182+0000][1.476s] GC(4) Pause Remark 29M->29M(512M) 6.620ms +[2023-10-10T07:57:56.182+0000][1.476s] GC(4) User=0.02s Sys=0.01s Real=0.00s +[2023-10-10T07:57:56.182+0000][1.476s] GC(4) Concurrent Rebuild Remembered Sets +[2023-10-10T07:57:56.192+0000][1.486s] GC(4) Concurrent Rebuild Remembered Sets 9.985ms +[2023-10-10T07:57:56.192+0000][1.486s] GC(4) Pause Cleanup +[2023-10-10T07:57:56.192+0000][1.486s] GC(4) Pause Cleanup 31M->31M(512M) 0.152ms +[2023-10-10T07:57:56.192+0000][1.486s] GC(4) User=0.00s Sys=0.00s Real=0.00s +[2023-10-10T07:57:56.193+0000][1.487s] GC(4) Concurrent Cleanup for Next Mark +[2023-10-10T07:57:56.195+0000][1.489s] GC(4) Concurrent Cleanup for Next Mark 2.377ms +[2023-10-10T07:57:56.195+0000][1.489s] GC(4) Concurrent Cycle 37.061ms +[2023-10-10T07:57:56.550+0000][1.844s] GC(5) Pause Young (Concurrent Start) (G1 Evacuation Pause) +[2023-10-10T07:57:56.550+0000][1.844s] GC(5) Using 5 workers of 5 for evacuation +[2023-10-10T07:57:56.555+0000][1.849s] GC(5) Pre Evacuate Collection Set: 0.1ms +[2023-10-10T07:57:56.555+0000][1.849s] GC(5) Evacuate Collection Set: 4.4ms +[2023-10-10T07:57:56.555+0000][1.849s] GC(5) Post Evacuate Collection Set: 0.4ms +[2023-10-10T07:57:56.555+0000][1.849s] GC(5) Other: 0.3ms +[2023-10-10T07:57:56.555+0000][1.849s] GC(5) Eden regions: 56->0(89) +[2023-10-10T07:57:56.555+0000][1.849s] GC(5) Survivor regions: 1->4(8) +[2023-10-10T07:57:56.555+0000][1.849s] GC(5) Old regions: 22->22 +[2023-10-10T07:57:56.556+0000][1.850s] GC(5) Humongous regions: 4->4 +[2023-10-10T07:57:56.556+0000][1.850s] GC(5) Metaspace: 27461K(28744K)->27461K(28744K) NonClass: 24176K(25032K)->24176K(25032K) Class: 3285K(3712K)->3285K(3712K) +[2023-10-10T07:57:56.556+0000][1.850s] GC(5) Pause Young (Concurrent Start) (G1 Evacuation Pause) 81M->27M(512M) 6.059ms +[2023-10-10T07:57:56.556+0000][1.850s] GC(5) User=0.01s Sys=0.00s Real=0.01s +[2023-10-10T07:57:56.556+0000][1.850s] GC(6) Concurrent Cycle +[2023-10-10T07:57:56.556+0000][1.850s] GC(6) Concurrent Clear Claimed Marks +[2023-10-10T07:57:56.556+0000][1.850s] GC(6) Concurrent Clear Claimed Marks 0.117ms +[2023-10-10T07:57:56.556+0000][1.850s] GC(6) Concurrent Scan Root Regions +[2023-10-10T07:57:56.558+0000][1.852s] GC(6) Concurrent Scan Root Regions 1.553ms +[2023-10-10T07:57:56.558+0000][1.852s] GC(6) Concurrent Mark (1.852s) +[2023-10-10T07:57:56.558+0000][1.852s] GC(6) Concurrent Mark From Roots +[2023-10-10T07:57:56.558+0000][1.852s] GC(6) Using 1 workers of 1 for marking +[2023-10-10T07:57:56.573+0000][1.867s] GC(6) Concurrent Mark From Roots 15.247ms +[2023-10-10T07:57:56.574+0000][1.868s] GC(6) Concurrent Preclean +[2023-10-10T07:57:56.574+0000][1.868s] GC(6) Concurrent Preclean 0.625ms +[2023-10-10T07:57:56.574+0000][1.868s] GC(6) Concurrent Mark (1.852s, 1.868s) 16.253ms +[2023-10-10T07:57:56.575+0000][1.869s] GC(6) Pause Remark +[2023-10-10T07:57:56.577+0000][1.871s] GC(6) Cleaned string and symbol table, strings: 11832 processed, 2 removed, symbols: 79871 processed, 34 removed +[2023-10-10T07:57:56.578+0000][1.872s] GC(6) Pause Remark 29M->29M(512M) 3.112ms +[2023-10-10T07:57:56.578+0000][1.872s] GC(6) User=0.01s Sys=0.00s Real=0.00s +[2023-10-10T07:57:56.578+0000][1.872s] GC(6) Concurrent Rebuild Remembered Sets +[2023-10-10T07:57:56.586+0000][1.880s] GC(6) Concurrent Rebuild Remembered Sets 8.502ms +[2023-10-10T07:57:56.587+0000][1.881s] GC(6) Pause Cleanup +[2023-10-10T07:57:56.587+0000][1.881s] GC(6) Pause Cleanup 30M->30M(512M) 0.132ms +[2023-10-10T07:57:56.587+0000][1.881s] GC(6) User=0.00s Sys=0.00s Real=0.00s +[2023-10-10T07:57:56.587+0000][1.881s] GC(6) Concurrent Cleanup for Next Mark +[2023-10-10T07:57:56.589+0000][1.883s] GC(6) Concurrent Cleanup for Next Mark 1.715ms +[2023-10-10T07:57:56.589+0000][1.883s] GC(6) Concurrent Cycle 32.779ms +[2023-10-10T07:57:57.049+0000][2.343s] GC(7) Pause Young (Normal) (G1 Evacuation Pause) +[2023-10-10T07:57:57.049+0000][2.343s] GC(7) Using 5 workers of 5 for evacuation +[2023-10-10T07:57:57.061+0000][2.355s] GC(7) Pre Evacuate Collection Set: 0.0ms +[2023-10-10T07:57:57.061+0000][2.355s] GC(7) Evacuate Collection Set: 7.3ms +[2023-10-10T07:57:57.061+0000][2.355s] GC(7) Post Evacuate Collection Set: 4.5ms +[2023-10-10T07:57:57.061+0000][2.355s] GC(7) Other: 0.2ms +[2023-10-10T07:57:57.061+0000][2.355s] GC(7) Eden regions: 94->0(133) +[2023-10-10T07:57:57.061+0000][2.355s] GC(7) Survivor regions: 4->12(13) +[2023-10-10T07:57:57.061+0000][2.355s] GC(7) Old regions: 22->22 +[2023-10-10T07:57:57.061+0000][2.355s] GC(7) Humongous regions: 7->5 +[2023-10-10T07:57:57.061+0000][2.355s] GC(7) Metaspace: 35745K(37064K)->35745K(37064K) NonClass: 31394K(32200K)->31394K(32200K) Class: 4351K(4864K)->4351K(4864K) +[2023-10-10T07:57:57.061+0000][2.355s] GC(7) Pause Young (Normal) (G1 Evacuation Pause) 124M->36M(512M) 12.692ms +[2023-10-10T07:57:57.061+0000][2.355s] GC(7) User=0.03s Sys=0.00s Real=0.01s +[2023-10-10T07:57:57.455+0000][2.749s] GC(8) Pause Young (Normal) (G1 Evacuation Pause) +[2023-10-10T07:57:57.455+0000][2.749s] GC(8) Using 5 workers of 5 for evacuation +[2023-10-10T07:57:57.476+0000][2.770s] GC(8) Pre Evacuate Collection Set: 0.0ms +[2023-10-10T07:57:57.476+0000][2.770s] GC(8) Evacuate Collection Set: 19.7ms +[2023-10-10T07:57:57.476+0000][2.770s] GC(8) Post Evacuate Collection Set: 0.5ms +[2023-10-10T07:57:57.476+0000][2.770s] GC(8) Other: 0.2ms +[2023-10-10T07:57:57.476+0000][2.770s] GC(8) Eden regions: 133->0(253) +[2023-10-10T07:57:57.476+0000][2.770s] GC(8) Survivor regions: 12->14(19) +[2023-10-10T07:57:57.476+0000][2.770s] GC(8) Old regions: 22->26 +[2023-10-10T07:57:57.476+0000][2.770s] GC(8) Humongous regions: 6->6 +[2023-10-10T07:57:57.476+0000][2.770s] GC(8) Metaspace: 43409K(44744K)->43409K(44744K) NonClass: 38129K(38856K)->38129K(38856K) Class: 5280K(5888K)->5280K(5888K) +[2023-10-10T07:57:57.476+0000][2.770s] GC(8) Pause Young (Normal) (G1 Evacuation Pause) 170M->43M(512M) 21.096ms +[2023-10-10T07:57:57.476+0000][2.770s] GC(8) User=0.04s Sys=0.01s Real=0.02s +[2023-10-10T07:58:56.697+0000][61.991s] GC(9) Pause Young (Concurrent Start) (Metadata GC Threshold) +[2023-10-10T07:58:56.697+0000][61.992s] GC(9) Using 5 workers of 5 for evacuation +[2023-10-10T07:58:56.708+0000][62.002s] GC(9) Pre Evacuate Collection Set: 0.3ms +[2023-10-10T07:58:56.708+0000][62.002s] GC(9) Evacuate Collection Set: 9.6ms +[2023-10-10T07:58:56.708+0000][62.002s] GC(9) Post Evacuate Collection Set: 0.4ms +[2023-10-10T07:58:56.708+0000][62.003s] GC(9) Other: 0.7ms +[2023-10-10T07:58:56.708+0000][62.003s] GC(9) Eden regions: 48->0(291) +[2023-10-10T07:58:56.709+0000][62.003s] GC(9) Survivor regions: 14->16(34) +[2023-10-10T07:58:56.709+0000][62.003s] GC(9) Old regions: 26->26 +[2023-10-10T07:58:56.709+0000][62.003s] GC(9) Humongous regions: 6->6 +[2023-10-10T07:58:56.709+0000][62.003s] GC(9) Metaspace: 46563K(47908K)->46563K(47908K) NonClass: 40882K(41636K)->40882K(41636K) Class: 5680K(6272K)->5680K(6272K) +[2023-10-10T07:58:56.709+0000][62.003s] GC(9) Pause Young (Concurrent Start) (Metadata GC Threshold) 90M->45M(512M) 12.368ms +[2023-10-10T07:58:56.709+0000][62.004s] GC(9) User=0.04s Sys=0.00s Real=0.01s +[2023-10-10T07:58:56.709+0000][62.004s] GC(10) Concurrent Cycle +[2023-10-10T07:58:56.710+0000][62.004s] GC(10) Concurrent Clear Claimed Marks +[2023-10-10T07:58:56.710+0000][62.004s] GC(10) Concurrent Clear Claimed Marks 0.250ms +[2023-10-10T07:58:56.710+0000][62.004s] GC(10) Concurrent Scan Root Regions +[2023-10-10T07:58:56.715+0000][62.009s] GC(10) Concurrent Scan Root Regions 4.647ms +[2023-10-10T07:58:56.715+0000][62.009s] GC(10) Concurrent Mark (62.009s) +[2023-10-10T07:58:56.715+0000][62.009s] GC(10) Concurrent Mark From Roots +[2023-10-10T07:58:56.715+0000][62.010s] GC(10) Using 1 workers of 1 for marking +[2023-10-10T07:58:56.735+0000][62.029s] GC(10) Concurrent Mark From Roots 19.702ms +[2023-10-10T07:58:56.735+0000][62.029s] GC(10) Concurrent Preclean +[2023-10-10T07:58:56.735+0000][62.029s] GC(10) Concurrent Preclean 0.165ms +[2023-10-10T07:58:56.735+0000][62.029s] GC(10) Concurrent Mark (62.009s, 62.029s) 20.262ms +[2023-10-10T07:58:56.735+0000][62.030s] GC(10) Pause Remark +[2023-10-10T07:58:56.739+0000][62.033s] GC(10) Cleaned string and symbol table, strings: 19987 processed, 9 removed, symbols: 133445 processed, 557 removed +[2023-10-10T07:58:56.739+0000][62.033s] GC(10) Pause Remark 48M->48M(512M) 3.452ms +[2023-10-10T07:58:56.739+0000][62.033s] GC(10) User=0.01s Sys=0.00s Real=0.00s +[2023-10-10T07:58:56.739+0000][62.033s] GC(10) Concurrent Rebuild Remembered Sets +[2023-10-10T07:58:56.749+0000][62.043s] GC(10) Concurrent Rebuild Remembered Sets 9.398ms +[2023-10-10T07:58:56.749+0000][62.043s] GC(10) Pause Cleanup +[2023-10-10T07:58:56.749+0000][62.043s] GC(10) Pause Cleanup 48M->48M(512M) 0.147ms +[2023-10-10T07:58:56.749+0000][62.043s] GC(10) User=0.00s Sys=0.00s Real=0.00s +[2023-10-10T07:58:56.749+0000][62.043s] GC(10) Concurrent Cleanup for Next Mark +[2023-10-10T07:58:56.749+0000][62.044s] GC(10) Concurrent Cleanup for Next Mark 0.306ms +[2023-10-10T07:58:56.750+0000][62.044s] GC(10) Concurrent Cycle 40.015ms diff --git a/tests/migration/migration.sql b/tests/migration/migration.sql new file mode 100644 index 00000000..6ebc8cf0 --- /dev/null +++ b/tests/migration/migration.sql @@ -0,0 +1,8392 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.7 (Debian 11.7-2.pgdg90+1) +-- Dumped by pg_dump version 11.7 (Debian 11.7-2.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Name: topology; Type: SCHEMA; Schema: -; Owner: postgres +-- + +CREATE SCHEMA topology; + + +ALTER SCHEMA topology OWNER TO postgres; + +-- +-- Name: SCHEMA topology; Type: COMMENT; Schema: -; Owner: postgres +-- + +COMMENT ON SCHEMA topology IS 'PostGIS Topology schema'; + + +-- +-- Name: unaccent; Type: EXTENSION; Schema: -; Owner: +-- + +CREATE EXTENSION IF NOT EXISTS unaccent WITH SCHEMA public; + + +-- +-- Name: EXTENSION unaccent; Type: COMMENT; Schema: -; Owner: +-- + +COMMENT ON EXTENSION unaccent IS 'text search dictionary that removes accents'; + + +-- +-- Name: enum_authGrantee_type; Type: TYPE; Schema: public; Owner: postgres +-- + +CREATE TYPE public."enum_authGrantee_type" AS ENUM ( + 'user' +); + + +ALTER TYPE public."enum_authGrantee_type" OWNER TO postgres; + +-- +-- Name: enum_authTarget_type; Type: TYPE; Schema: public; Owner: postgres +-- + +CREATE TYPE public."enum_authTarget_type" AS ENUM ( + 'global', + 'operation', + 'operationCluster', + 'plan', + 'governingEntity', + 'project' +); + + +ALTER TYPE public."enum_authTarget_type" OWNER TO postgres; + +-- +-- Name: enum_flowObject_behavior; Type: TYPE; Schema: public; Owner: postgres +-- + +CREATE TYPE public."enum_flowObject_behavior" AS ENUM ( + 'overlap', + 'shared' +); + + +ALTER TYPE public."enum_flowObject_behavior" OWNER TO postgres; + +-- +-- Name: enum_form_belongsToType; Type: TYPE; Schema: public; Owner: postgres +-- + +CREATE TYPE public."enum_form_belongsToType" AS ENUM ( + 'global', + 'operation' +); + + +ALTER TYPE public."enum_form_belongsToType" OWNER TO postgres; + +-- +-- Name: enum_iatiPublisher_fetchStatus; Type: TYPE; Schema: public; Owner: postgres +-- + +CREATE TYPE public."enum_iatiPublisher_fetchStatus" AS ENUM ( + 'queued', + 'downloading', + 'downloaded', + 'halted' +); + + +ALTER TYPE public."enum_iatiPublisher_fetchStatus" OWNER TO postgres; + +-- +-- Name: enum_job_status; Type: TYPE; Schema: public; Owner: postgres +-- + +CREATE TYPE public.enum_job_status AS ENUM ( + 'pending', + 'success', + 'failed' +); + + +ALTER TYPE public.enum_job_status OWNER TO postgres; + +-- +-- Name: enum_job_type; Type: TYPE; Schema: public; Owner: postgres +-- + +CREATE TYPE public.enum_job_type AS ENUM ( + 'projectPdfGeneration', + 'locationImport', + 'confirmableCommand' +); + + +ALTER TYPE public.enum_job_type OWNER TO postgres; + +-- +-- Name: enum_objectExclude_module; Type: TYPE; Schema: public; Owner: postgres +-- + +CREATE TYPE public."enum_objectExclude_module" AS ENUM ( + 'FTS', + 'RPM', + 'Public' +); + + +ALTER TYPE public."enum_objectExclude_module" OWNER TO postgres; + +-- +-- Name: enum_project_implementationStatus; Type: TYPE; Schema: public; Owner: postgres +-- + +CREATE TYPE public."enum_project_implementationStatus" AS ENUM ( + 'Planning', + 'Implementing', + 'Ended - Completed', + 'Ended - Terminated', + 'Ended - Not started and abandoned' +); + + +ALTER TYPE public."enum_project_implementationStatus" OWNER TO postgres; + +-- +-- Name: enum_reportingWindowAssignment_assigneeType; Type: TYPE; Schema: public; Owner: postgres +-- + +CREATE TYPE public."enum_reportingWindowAssignment_assigneeType" AS ENUM ( + 'operation', + 'operationCluster' +); + + +ALTER TYPE public."enum_reportingWindowAssignment_assigneeType" OWNER TO postgres; + +-- +-- Name: enum_reportingWindow_belongsToType; Type: TYPE; Schema: public; Owner: postgres +-- + +CREATE TYPE public."enum_reportingWindow_belongsToType" AS ENUM ( + 'global', + 'operation' +); + + +ALTER TYPE public."enum_reportingWindow_belongsToType" OWNER TO postgres; + +SET default_tablespace = ''; + +SET default_with_oids = false; + +-- +-- Name: governingEntity; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."governingEntity" ( + id integer NOT NULL, + "planId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "entityPrototypeId" integer NOT NULL, + "deletedAt" timestamp with time zone, + "currentVersion" boolean DEFAULT false NOT NULL, + "latestVersion" boolean DEFAULT false NOT NULL, + "latestTaggedVersion" boolean DEFAULT false NOT NULL, + "versionTags" character varying(8)[] DEFAULT (ARRAY[]::character varying[])::character varying(8)[] +); + + +ALTER TABLE public."governingEntity" OWNER TO postgres; + +-- +-- Name: entityType(public."governingEntity"); Type: FUNCTION; Schema: public; Owner: postgres +-- + +CREATE FUNCTION public."entityType"(public."governingEntity") RETURNS character varying + LANGUAGE sql IMMUTABLE + AS $_$ SELECT "entityPrototype"."refCode" FROM "public"."entityPrototype" WHERE "entityPrototype"."id" = $1."entityPrototypeId" $_$; + + +ALTER FUNCTION public."entityType"(public."governingEntity") OWNER TO postgres; + +-- +-- Name: projectVersion; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."projectVersion" ( + id integer NOT NULL, + "projectId" integer NOT NULL, + version integer NOT NULL, + name text NOT NULL, + "currentRequestedFunds" bigint, + "startDate" date, + "endDate" date, + objective text, + partners text, + "createdAt" timestamp with time zone, + "updatedAt" timestamp with time zone, + code character varying(255), + "editorParticipantId" integer, + tags character varying(25)[] DEFAULT (ARRAY[]::character varying[])::character varying(25)[] +); + + +ALTER TABLE public."projectVersion" OWNER TO postgres; + +-- +-- Name: implementationStatus(public."projectVersion"); Type: FUNCTION; Schema: public; Owner: postgres +-- + +CREATE FUNCTION public."implementationStatus"(public."projectVersion") RETURNS character varying + LANGUAGE sql STABLE + AS $_$ SELECT (CASE WHEN "project"."currentPublishedVersionId" = $1."id" THEN 'published' WHEN "project"."currentPublishedVersionId" IS NULL AND $1."id" = "project"."latestVersionId" THEN 'unpublished' WHEN "project"."currentPublishedVersionId" IS NOT NULL AND $1."id" = "project"."latestVersionId" THEN 'draft' ELSE 'archived' END) FROM "project" WHERE "project"."id" = $1."projectId" $_$; + + +ALTER FUNCTION public."implementationStatus"(public."projectVersion") OWNER TO postgres; + +-- +-- Name: SequelizeMeta; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."SequelizeMeta" ( + name character varying(255) NOT NULL +); + + +ALTER TABLE public."SequelizeMeta" OWNER TO postgres; + +-- +-- Name: attachment; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.attachment ( + id integer NOT NULL, + "objectId" integer NOT NULL, + "objectType" character varying(255) NOT NULL, + type character varying(255) NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "attachmentPrototypeId" integer, + "deletedAt" timestamp with time zone, + "currentVersion" boolean DEFAULT false NOT NULL, + "latestVersion" boolean DEFAULT false NOT NULL, + "latestTaggedVersion" boolean DEFAULT false NOT NULL, + "versionTags" character varying(8)[] DEFAULT (ARRAY[]::character varying[])::character varying(8)[], + "planId" integer +); + + +ALTER TABLE public.attachment OWNER TO postgres; + +-- +-- Name: attachmentPrototype; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."attachmentPrototype" ( + id integer NOT NULL, + "refCode" character varying(255), + type character varying(255), + value json, + "planId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."attachmentPrototype" OWNER TO postgres; + +-- +-- Name: attachmentPrototype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."attachmentPrototype_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."attachmentPrototype_id_seq" OWNER TO postgres; + +-- +-- Name: attachmentPrototype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."attachmentPrototype_id_seq" OWNED BY public."attachmentPrototype".id; + + +-- +-- Name: attachmentVersion; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."attachmentVersion" ( + id integer NOT NULL, + "attachmentId" integer, + "customReference" character varying(255), + value jsonb, + "currentVersion" boolean DEFAULT false NOT NULL, + "latestVersion" boolean DEFAULT false NOT NULL, + "latestTaggedVersion" boolean DEFAULT false NOT NULL, + "versionTags" character varying(8)[] DEFAULT (ARRAY[]::character varying[])::character varying(8)[], + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "hasDisaggregatedData" boolean DEFAULT false +); + + +ALTER TABLE public."attachmentVersion" OWNER TO postgres; + +-- +-- Name: attachmentVersion_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."attachmentVersion_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."attachmentVersion_id_seq" OWNER TO postgres; + +-- +-- Name: attachmentVersion_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."attachmentVersion_id_seq" OWNED BY public."attachmentVersion".id; + + +-- +-- Name: attachment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.attachment_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.attachment_id_seq OWNER TO postgres; + +-- +-- Name: attachment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.attachment_id_seq OWNED BY public.attachment.id; + + +-- +-- Name: authGrant; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."authGrant" ( + "createdAt" timestamp with time zone NOT NULL, + grantee integer NOT NULL, + roles character varying(255)[] NOT NULL, + target integer NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."authGrant" OWNER TO postgres; + +-- +-- Name: authGrantLog; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."authGrantLog" ( + actor integer NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + date timestamp with time zone NOT NULL, + grantee integer NOT NULL, + id integer NOT NULL, + "newRoles" character varying(255)[] NOT NULL, + target integer NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."authGrantLog" OWNER TO postgres; + +-- +-- Name: authGrantLog_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."authGrantLog_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."authGrantLog_id_seq" OWNER TO postgres; + +-- +-- Name: authGrantLog_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."authGrantLog_id_seq" OWNED BY public."authGrantLog".id; + + +-- +-- Name: authGrantee; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."authGrantee" ( + "createdAt" timestamp with time zone NOT NULL, + "granteeId" integer NOT NULL, + id integer NOT NULL, + type public."enum_authGrantee_type" NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."authGrantee" OWNER TO postgres; + +-- +-- Name: authGrantee_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."authGrantee_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."authGrantee_id_seq" OWNER TO postgres; + +-- +-- Name: authGrantee_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."authGrantee_id_seq" OWNED BY public."authGrantee".id; + + +-- +-- Name: authInvite; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."authInvite" ( + actor integer NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + email character varying(255) NOT NULL, + roles character varying(255)[] NOT NULL, + target integer NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."authInvite" OWNER TO postgres; + +-- +-- Name: authTarget; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."authTarget" ( + "createdAt" timestamp with time zone NOT NULL, + id integer NOT NULL, + "targetId" integer, + type public."enum_authTarget_type" NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."authTarget" OWNER TO postgres; + +-- +-- Name: authTarget_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."authTarget_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."authTarget_id_seq" OWNER TO postgres; + +-- +-- Name: authTarget_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."authTarget_id_seq" OWNED BY public."authTarget".id; + + +-- +-- Name: authToken; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."authToken" ( + "createdAt" timestamp with time zone NOT NULL, + expires timestamp with time zone, + participant integer NOT NULL, + "tokenHash" character varying(255) NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."authToken" OWNER TO postgres; + +-- +-- Name: blueprint; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.blueprint ( + id integer NOT NULL, + name character varying(255), + description text, + status character varying(255), + model json, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + type character varying(255) +); + + +ALTER TABLE public.blueprint OWNER TO postgres; + +-- +-- Name: budgetSegment; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."budgetSegment" ( + id integer NOT NULL, + "projectVersionId" integer NOT NULL, + name character varying(255), + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."budgetSegment" OWNER TO postgres; + +-- +-- Name: budgetSegmentBreakdown; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."budgetSegmentBreakdown" ( + id integer NOT NULL, + "budgetSegmentId" integer, + name character varying(255), + content jsonb, + type character varying(255), + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."budgetSegmentBreakdown" OWNER TO postgres; + +-- +-- Name: budgetSegmentBreakdownEntity; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."budgetSegmentBreakdownEntity" ( + id integer NOT NULL, + "budgetSegmentBreakdownId" integer, + "objectType" character varying(255) NOT NULL, + "objectId" integer NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."budgetSegmentBreakdownEntity" OWNER TO postgres; + +-- +-- Name: budgetSegmentBreakdownEntity_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."budgetSegmentBreakdownEntity_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."budgetSegmentBreakdownEntity_id_seq" OWNER TO postgres; + +-- +-- Name: budgetSegmentBreakdownEntity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."budgetSegmentBreakdownEntity_id_seq" OWNED BY public."budgetSegmentBreakdownEntity".id; + + +-- +-- Name: budgetSegmentBreakdown_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."budgetSegmentBreakdown_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."budgetSegmentBreakdown_id_seq" OWNER TO postgres; + +-- +-- Name: budgetSegmentBreakdown_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."budgetSegmentBreakdown_id_seq" OWNED BY public."budgetSegmentBreakdown".id; + + +-- +-- Name: budgetSegment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."budgetSegment_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."budgetSegment_id_seq" OWNER TO postgres; + +-- +-- Name: budgetSegment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."budgetSegment_id_seq" OWNED BY public."budgetSegment".id; + + +-- +-- Name: cache; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.cache ( + "createdAt" timestamp with time zone NOT NULL, + data jsonb NOT NULL, + fingerprint character varying(255) NOT NULL, + namespace character varying(255) NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + tag character varying(255) +); + + +ALTER TABLE public.cache OWNER TO postgres; + +-- +-- Name: category; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.category ( + id integer NOT NULL, + name character varying(255) NOT NULL, + description character varying(255), + "parentID" integer, + "group" character varying(255) NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + code character varying(255), + "includeTotals" boolean +); + + +ALTER TABLE public.category OWNER TO postgres; + +-- +-- Name: categoryGroup; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."categoryGroup" ( + type character varying(255) NOT NULL, + name character varying(255) NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."categoryGroup" OWNER TO postgres; + +-- +-- Name: categoryLegacy; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."categoryLegacy" ( + id integer NOT NULL, + "group" character varying(255) NOT NULL, + "legacyID" integer NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."categoryLegacy" OWNER TO postgres; + +-- +-- Name: categoryRef; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."categoryRef" ( + "objectID" integer NOT NULL, + "versionID" integer DEFAULT 1 NOT NULL, + "objectType" character varying(32) NOT NULL, + "categoryID" integer NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."categoryRef" OWNER TO postgres; + +-- +-- Name: category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.category_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.category_id_seq OWNER TO postgres; + +-- +-- Name: category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.category_id_seq OWNED BY public.category.id; + + +-- +-- Name: client; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.client ( + id integer NOT NULL, + "clientId" character varying(255), + "clientSecret" character varying(255), + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public.client OWNER TO postgres; + +-- +-- Name: client_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.client_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.client_id_seq OWNER TO postgres; + +-- +-- Name: client_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.client_id_seq OWNED BY public.client.id; + + +-- +-- Name: conditionField; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."conditionField" ( + id integer NOT NULL, + name character varying(255) NOT NULL, + "fieldType" character varying(255) NOT NULL, + rules jsonb, + required boolean NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "order" integer, + description text, + "grouping" boolean DEFAULT true NOT NULL, + label jsonb DEFAULT '{}'::jsonb NOT NULL, + "planId" integer NOT NULL +); + + +ALTER TABLE public."conditionField" OWNER TO postgres; + +-- +-- Name: conditionFieldReliesOn; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."conditionFieldReliesOn" ( + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "reliedOnById" integer NOT NULL, + "reliesOnId" integer NOT NULL +); + + +ALTER TABLE public."conditionFieldReliesOn" OWNER TO postgres; + +-- +-- Name: conditionFieldType; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."conditionFieldType" ( + type character varying(32) NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."conditionFieldType" OWNER TO postgres; + +-- +-- Name: conditionField_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."conditionField_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."conditionField_id_seq" OWNER TO postgres; + +-- +-- Name: conditionField_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."conditionField_id_seq" OWNED BY public."conditionField".id; + + +-- +-- Name: currency; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.currency ( + id integer NOT NULL, + code character varying(255) NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public.currency OWNER TO postgres; + +-- +-- Name: currency_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.currency_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.currency_id_seq OWNER TO postgres; + +-- +-- Name: currency_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.currency_id_seq OWNED BY public.currency.id; + + +-- +-- Name: disaggregationCategory; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."disaggregationCategory" ( + id integer NOT NULL, + name character varying(255), + label character varying(255), + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "disaggregationCategoryGroupId" integer, + "tagHxl" character varying(255) +); + + +ALTER TABLE public."disaggregationCategory" OWNER TO postgres; + +-- +-- Name: disaggregationCategoryGroup; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."disaggregationCategoryGroup" ( + id integer NOT NULL, + name character varying(255), + label character varying(255), + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "unitTypeId" integer, + "planId" integer +); + + +ALTER TABLE public."disaggregationCategoryGroup" OWNER TO postgres; + +-- +-- Name: disaggregationCategoryGroup_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."disaggregationCategoryGroup_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."disaggregationCategoryGroup_id_seq" OWNER TO postgres; + +-- +-- Name: disaggregationCategoryGroup_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."disaggregationCategoryGroup_id_seq" OWNED BY public."disaggregationCategoryGroup".id; + + +-- +-- Name: disaggregationCategory_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."disaggregationCategory_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."disaggregationCategory_id_seq" OWNER TO postgres; + +-- +-- Name: disaggregationCategory_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."disaggregationCategory_id_seq" OWNED BY public."disaggregationCategory".id; + + +-- +-- Name: disaggregationModel; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."disaggregationModel" ( + id integer NOT NULL, + name character varying(255), + creator json, + value json, + "planId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."disaggregationModel" OWNER TO postgres; + +-- +-- Name: disaggregationModel_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."disaggregationModel_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."disaggregationModel_id_seq" OWNER TO postgres; + +-- +-- Name: disaggregationModel_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."disaggregationModel_id_seq" OWNED BY public."disaggregationModel".id; + + +-- +-- Name: emergency; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.emergency ( + id integer NOT NULL, + name character varying(255), + description text, + date timestamp with time zone, + "glideId" character varying(255), + "levelThree" boolean, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + active boolean DEFAULT true, + restricted boolean +); + + +ALTER TABLE public.emergency OWNER TO postgres; + +-- +-- Name: emergencyLocation; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."emergencyLocation" ( + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "emergencyId" integer NOT NULL, + "locationId" integer NOT NULL +); + + +ALTER TABLE public."emergencyLocation" OWNER TO postgres; + +-- +-- Name: emergency_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.emergency_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.emergency_id_seq OWNER TO postgres; + +-- +-- Name: emergency_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.emergency_id_seq OWNED BY public.emergency.id; + + +-- +-- Name: endpointLog; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."endpointLog" ( + id integer NOT NULL, + "participantId" integer, + "entityType" character varying(255), + "entityId" integer, + "editType" character varying(255), + value jsonb, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."endpointLog" OWNER TO postgres; + +-- +-- Name: endpointLog_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."endpointLog_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."endpointLog_id_seq" OWNER TO postgres; + +-- +-- Name: endpointLog_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."endpointLog_id_seq" OWNED BY public."endpointLog".id; + + +-- +-- Name: endpointTrace; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."endpointTrace" ( + id uuid NOT NULL, + route character varying(255), + method character varying(255), + container character varying(255), + "memBefore" jsonb, + "memAfter" jsonb, + status integer, + "time" integer, + "createdAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."endpointTrace" OWNER TO postgres; + +-- +-- Name: endpointUsage; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."endpointUsage" ( + path character varying(255) NOT NULL, + method character varying(255) NOT NULL, + nb integer DEFAULT 0, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."endpointUsage" OWNER TO postgres; + +-- +-- Name: entitiesAssociation; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."entitiesAssociation" ( + "parentId" integer NOT NULL, + "parentType" character varying(255) NOT NULL, + "childId" integer NOT NULL, + "childType" character varying(255) NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."entitiesAssociation" OWNER TO postgres; + +-- +-- Name: entityCategories; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."entityCategories" ( + id integer NOT NULL, + value json, + "planId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."entityCategories" OWNER TO postgres; + +-- +-- Name: entityCategories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."entityCategories_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."entityCategories_id_seq" OWNER TO postgres; + +-- +-- Name: entityCategories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."entityCategories_id_seq" OWNED BY public."entityCategories".id; + + +-- +-- Name: entityCategory; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."entityCategory" ( + id integer NOT NULL, + value json, + "planId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."entityCategory" OWNER TO postgres; + +-- +-- Name: entityCategory_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."entityCategory_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."entityCategory_id_seq" OWNER TO postgres; + +-- +-- Name: entityCategory_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."entityCategory_id_seq" OWNED BY public."entityCategory".id; + + +-- +-- Name: entityPrototype; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."entityPrototype" ( + id integer NOT NULL, + "refCode" character varying(255), + type character varying(255), + "planId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "orderNumber" integer, + value json +); + + +ALTER TABLE public."entityPrototype" OWNER TO postgres; + +-- +-- Name: entityPrototype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."entityPrototype_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."entityPrototype_id_seq" OWNER TO postgres; + +-- +-- Name: entityPrototype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."entityPrototype_id_seq" OWNED BY public."entityPrototype".id; + + +-- +-- Name: externalData; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."externalData" ( + id integer NOT NULL, + "flowID" integer NOT NULL, + "versionID" integer, + "systemID" character varying(255) NOT NULL, + "externalRefID" character varying(255), + "externalRefDate" timestamp with time zone, + "objectType" character varying(255), + "refDirection" character varying(255), + data text, + matched boolean, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."externalData" OWNER TO postgres; + +-- +-- Name: externalData_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."externalData_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."externalData_id_seq" OWNER TO postgres; + +-- +-- Name: externalData_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."externalData_id_seq" OWNED BY public."externalData".id; + + +-- +-- Name: externalReference; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."externalReference" ( + id integer NOT NULL, + "systemID" character varying(255) NOT NULL, + "flowID" integer NOT NULL, + "versionID" integer, + "externalRecordID" character varying(255), + "externalRecordDate" timestamp with time zone, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "importInformation" json +); + + +ALTER TABLE public."externalReference" OWNER TO postgres; + +-- +-- Name: externalReference_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."externalReference_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."externalReference_id_seq" OWNER TO postgres; + +-- +-- Name: externalReference_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."externalReference_id_seq" OWNED BY public."externalReference".id; + + +-- +-- Name: fileAssetEntity; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."fileAssetEntity" ( + id integer NOT NULL, + filename character varying(255), + originalname character varying(255), + size integer, + mimetype character varying(255), + path character varying(255), + collection character varying(255), + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."fileAssetEntity" OWNER TO postgres; + +-- +-- Name: fileAssetEntity_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."fileAssetEntity_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."fileAssetEntity_id_seq" OWNER TO postgres; + +-- +-- Name: fileAssetEntity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."fileAssetEntity_id_seq" OWNED BY public."fileAssetEntity".id; + + +-- +-- Name: fileRecord; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."fileRecord" ( + "createdAt" timestamp with time zone NOT NULL, + hash character varying(255) NOT NULL, + namespace character varying(255) NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."fileRecord" OWNER TO postgres; + +-- +-- Name: flow; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.flow ( + id integer NOT NULL, + "versionID" integer DEFAULT 1 NOT NULL, + "amountUSD" bigint NOT NULL, + "flowDate" timestamp with time zone, + "decisionDate" timestamp with time zone, + "firstReportedDate" timestamp with time zone, + "budgetYear" character varying(255), + "origAmount" bigint, + "origCurrency" character varying(255), + "exchangeRate" numeric(18,6), + "activeStatus" boolean DEFAULT true NOT NULL, + restricted boolean DEFAULT false NOT NULL, + description text, + notes text, + "versionStartDate" timestamp with time zone, + "versionEndDate" timestamp with time zone, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "deletedAt" timestamp with time zone, + "newMoney" boolean DEFAULT false NOT NULL +); + + +ALTER TABLE public.flow OWNER TO postgres; + +-- +-- Name: flowLink; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."flowLink" ( + "parentID" integer NOT NULL, + "childID" integer NOT NULL, + depth integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."flowLink" OWNER TO postgres; + +-- +-- Name: flowObject; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."flowObject" ( + "flowID" integer NOT NULL, + "objectID" integer NOT NULL, + "versionID" integer DEFAULT 1 NOT NULL, + "objectType" character varying(32) NOT NULL, + "refDirection" character varying(255) NOT NULL, + behavior public."enum_flowObject_behavior", + "objectDetail" character varying(255), + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."flowObject" OWNER TO postgres; + +-- +-- Name: flowObjectType; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."flowObjectType" ( + type character varying(32) NOT NULL, + name character varying(255) NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."flowObjectType" OWNER TO postgres; + +-- +-- Name: flow_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.flow_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.flow_id_seq OWNER TO postgres; + +-- +-- Name: flow_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.flow_id_seq OWNED BY public.flow.id; + + +-- +-- Name: form; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.form ( + "belongsToId" integer, + "belongsToType" public."enum_form_belongsToType" NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + id integer NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public.form OWNER TO postgres; + +-- +-- Name: formVersion; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."formVersion" ( + "createdAt" timestamp with time zone NOT NULL, + data jsonb NOT NULL, + "isLatest" boolean NOT NULL, + "modifiedBy" integer, + root integer NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + version integer NOT NULL +); + + +ALTER TABLE public."formVersion" OWNER TO postgres; + +-- +-- Name: form_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.form_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.form_id_seq OWNER TO postgres; + +-- +-- Name: form_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.form_id_seq OWNED BY public.form.id; + + +-- +-- Name: projectVersionComment; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."projectVersionComment" ( + id integer NOT NULL, + content text, + "participantId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "projectVersionPlanId" integer, + step character varying(255) +); + + +ALTER TABLE public."projectVersionComment" OWNER TO postgres; + +-- +-- Name: fulfillmentComment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."fulfillmentComment_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."fulfillmentComment_id_seq" OWNER TO postgres; + +-- +-- Name: fulfillmentComment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."fulfillmentComment_id_seq" OWNED BY public."projectVersionComment".id; + + +-- +-- Name: globalCluster; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."globalCluster" ( + id integer NOT NULL, + "hrinfoId" integer, + type character varying(255), + name character varying(255), + code character varying(255), + homepage character varying(255), + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "parentId" integer, + "defaultIconId" character varying(255), + "displayFTSSummariesFromYear" integer +); + + +ALTER TABLE public."globalCluster" OWNER TO postgres; + +-- +-- Name: globalClusterAssociation; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."globalClusterAssociation" ( + id integer NOT NULL, + "globalClusterId" integer, + "governingEntityId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."globalClusterAssociation" OWNER TO postgres; + +-- +-- Name: globalClusterAssociation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."globalClusterAssociation_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."globalClusterAssociation_id_seq" OWNER TO postgres; + +-- +-- Name: globalClusterAssociation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."globalClusterAssociation_id_seq" OWNED BY public."globalClusterAssociation".id; + + +-- +-- Name: globalCluster_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."globalCluster_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."globalCluster_id_seq" OWNER TO postgres; + +-- +-- Name: globalCluster_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."globalCluster_id_seq" OWNED BY public."globalCluster".id; + + +-- +-- Name: globalIndicator; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."globalIndicator" ( + id integer NOT NULL, + "hrinfoId" integer, + label text, + "subDomain" character varying(255), + code character varying(255), + unit character varying(255), + "searchData" text, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."globalIndicator" OWNER TO postgres; + +-- +-- Name: globalIndicator_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."globalIndicator_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."globalIndicator_id_seq" OWNER TO postgres; + +-- +-- Name: globalIndicator_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."globalIndicator_id_seq" OWNED BY public."globalIndicator".id; + + +-- +-- Name: governingEntityVersion; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."governingEntityVersion" ( + id integer NOT NULL, + "governingEntityId" integer, + name character varying(255), + "customReference" character varying(255), + value json, + overriding boolean DEFAULT false NOT NULL, + "currentVersion" boolean DEFAULT false NOT NULL, + "latestVersion" boolean DEFAULT false NOT NULL, + "latestTaggedVersion" boolean DEFAULT false NOT NULL, + "versionTags" character varying(8)[] DEFAULT (ARRAY[]::character varying[])::character varying(8)[], + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + tags character varying(25)[] DEFAULT (ARRAY[]::character varying[])::character varying(25)[] +); + + +ALTER TABLE public."governingEntityVersion" OWNER TO postgres; + +-- +-- Name: governingEntityVersion_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."governingEntityVersion_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."governingEntityVersion_id_seq" OWNER TO postgres; + +-- +-- Name: governingEntityVersion_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."governingEntityVersion_id_seq" OWNED BY public."governingEntityVersion".id; + + +-- +-- Name: governingEntity_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."governingEntity_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."governingEntity_id_seq" OWNER TO postgres; + +-- +-- Name: governingEntity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."governingEntity_id_seq" OWNED BY public."governingEntity".id; + + +-- +-- Name: highWater; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."highWater" ( + "jobName" character varying(255) NOT NULL, + "timestamp" timestamp with time zone NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."highWater" OWNER TO postgres; + +-- +-- Name: iatiActivity; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."iatiActivity" ( + id integer NOT NULL, + "iatiIdentifier" character varying(255), + title text, + version character varying(255), + "startDate" date, + "endDate" date, + description text, + "reportingOrgRef" character varying(255), + "reportingOrgName" character varying(255), + currency character varying(255), + humanitarian boolean DEFAULT false, + "iatiHumanitarian" boolean DEFAULT false, + hash character varying(255), + "lastUpdatedAt" timestamp with time zone, + "updatedStatus" boolean DEFAULT false, + viewed boolean DEFAULT false, + "iatiPublisherId" character varying(255), + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "deletedAt" timestamp with time zone +); + + +ALTER TABLE public."iatiActivity" OWNER TO postgres; + +-- +-- Name: iatiActivity_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."iatiActivity_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."iatiActivity_id_seq" OWNER TO postgres; + +-- +-- Name: iatiActivity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."iatiActivity_id_seq" OWNED BY public."iatiActivity".id; + + +-- +-- Name: iatiFTSMap; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."iatiFTSMap" ( + id integer NOT NULL, + data json NOT NULL, + "oldData" json, + "sourceOrganizations" character varying(255)[], + "destinationOrganizations" character varying(255)[], + "recipientCountries" character varying(255)[], + updated boolean DEFAULT true NOT NULL, + added boolean DEFAULT false NOT NULL, + humanitarian boolean DEFAULT false, + active boolean DEFAULT true, + "iatiPublisherID" character varying(255), + "iatiActivityID" integer, + "flowID" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "deletedAt" timestamp with time zone +); + + +ALTER TABLE public."iatiFTSMap" OWNER TO postgres; + +-- +-- Name: iatiFTSMap_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."iatiFTSMap_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."iatiFTSMap_id_seq" OWNER TO postgres; + +-- +-- Name: iatiFTSMap_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."iatiFTSMap_id_seq" OWNED BY public."iatiFTSMap".id; + + +-- +-- Name: iatiFTSMatch; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."iatiFTSMatch" ( + id integer NOT NULL, + data json NOT NULL, + "iatiFTSMapID" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "deletedAt" timestamp with time zone +); + + +ALTER TABLE public."iatiFTSMatch" OWNER TO postgres; + +-- +-- Name: iatiFTSMatch_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."iatiFTSMatch_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."iatiFTSMatch_id_seq" OWNER TO postgres; + +-- +-- Name: iatiFTSMatch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."iatiFTSMatch_id_seq" OWNED BY public."iatiFTSMatch".id; + + +-- +-- Name: iatiHumanitarianScope; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."iatiHumanitarianScope" ( + id integer NOT NULL, + "iatiIdentifier" character varying(255), + type character varying(255), + vocabulary character varying(255), + "vocabularyUrl" character varying(255), + code character varying(255), + "iatiActivityId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "deletedAt" timestamp with time zone +); + + +ALTER TABLE public."iatiHumanitarianScope" OWNER TO postgres; + +-- +-- Name: iatiHumanitarianScope_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."iatiHumanitarianScope_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."iatiHumanitarianScope_id_seq" OWNER TO postgres; + +-- +-- Name: iatiHumanitarianScope_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."iatiHumanitarianScope_id_seq" OWNED BY public."iatiHumanitarianScope".id; + + +-- +-- Name: iatiParticipatingOrg; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."iatiParticipatingOrg" ( + id integer NOT NULL, + "iatiIdentifier" character varying(255), + ref character varying(255), + type character varying(255), + role character varying(255), + name character varying(255), + "iatiActivityId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "deletedAt" timestamp with time zone +); + + +ALTER TABLE public."iatiParticipatingOrg" OWNER TO postgres; + +-- +-- Name: iatiParticipatingOrg_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."iatiParticipatingOrg_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."iatiParticipatingOrg_id_seq" OWNER TO postgres; + +-- +-- Name: iatiParticipatingOrg_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."iatiParticipatingOrg_id_seq" OWNED BY public."iatiParticipatingOrg".id; + + +-- +-- Name: iatiPublisher; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."iatiPublisher" ( + id character varying(255) NOT NULL, + active boolean DEFAULT false, + "queuedAt" timestamp with time zone, + "fetchStatus" public."enum_iatiPublisher_fetchStatus" DEFAULT 'halted'::public."enum_iatiPublisher_fetchStatus", + "lastFetchedAt" timestamp with time zone, + name character varying(255) NOT NULL, + country character varying(255), + "organizationType" character varying(255), + datasets integer, + "xmlData" text, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone, + "deletedAt" timestamp with time zone +); + + +ALTER TABLE public."iatiPublisher" OWNER TO postgres; + +-- +-- Name: iatiRecipientCountry; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."iatiRecipientCountry" ( + id integer NOT NULL, + "iatiIdentifier" character varying(255), + code character varying(255), + iso3 character varying(255), + percentage character varying(255), + text character varying(255), + "isCountry" boolean, + "iatiActivityId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "deletedAt" timestamp with time zone +); + + +ALTER TABLE public."iatiRecipientCountry" OWNER TO postgres; + +-- +-- Name: iatiRecipientCountry_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."iatiRecipientCountry_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."iatiRecipientCountry_id_seq" OWNER TO postgres; + +-- +-- Name: iatiRecipientCountry_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."iatiRecipientCountry_id_seq" OWNED BY public."iatiRecipientCountry".id; + + +-- +-- Name: iatiSector; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."iatiSector" ( + id integer NOT NULL, + "iatiIdentifier" character varying(255), + code character varying(255), + percentage character varying(255), + text text, + "iatiActivityId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "deletedAt" timestamp with time zone, + vocabulary character varying(255) +); + + +ALTER TABLE public."iatiSector" OWNER TO postgres; + +-- +-- Name: iatiSector_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."iatiSector_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."iatiSector_id_seq" OWNER TO postgres; + +-- +-- Name: iatiSector_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."iatiSector_id_seq" OWNED BY public."iatiSector".id; + + +-- +-- Name: iatiTransaction; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."iatiTransaction" ( + id integer NOT NULL, + "iatiIdentifier" character varying(255), + ref text, + sector json, + date character varying(255), + type character varying(255), + currency character varying(255), + humanitarian boolean DEFAULT false, + value double precision, + "providerOrgRef" character varying(255), + "providerOrgName" character varying(255), + "receiverOrgRef" character varying(255), + "receiverOrgName" character varying(255), + "recipientCountry" json, + "iatiActivityId" integer, + "iatiFTSMapId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "deletedAt" timestamp with time zone, + description text +); + + +ALTER TABLE public."iatiTransaction" OWNER TO postgres; + +-- +-- Name: iatiTransaction_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."iatiTransaction_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."iatiTransaction_id_seq" OWNER TO postgres; + +-- +-- Name: iatiTransaction_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."iatiTransaction_id_seq" OWNED BY public."iatiTransaction".id; + + +-- +-- Name: icon; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.icon ( + id character varying(255) NOT NULL, + svg bytea, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public.icon OWNER TO postgres; + +-- +-- Name: job; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.job ( + id integer NOT NULL, + "startAt" timestamp with time zone NOT NULL, + "endAt" timestamp with time zone, + status public.enum_job_status DEFAULT 'pending'::public.enum_job_status NOT NULL, + type public.enum_job_type NOT NULL, + metadata jsonb, + "totalTaskCount" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public.job OWNER TO postgres; + +-- +-- Name: jobAssociation; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."jobAssociation" ( + "jobId" integer NOT NULL, + "objectId" integer NOT NULL, + "objectType" character varying(255) NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."jobAssociation" OWNER TO postgres; + +-- +-- Name: job_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.job_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.job_id_seq OWNER TO postgres; + +-- +-- Name: job_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.job_id_seq OWNED BY public.job.id; + + +-- +-- Name: legacy; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.legacy ( + "objectType" character varying(32) NOT NULL, + "objectID" integer NOT NULL, + "legacyID" integer NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public.legacy OWNER TO postgres; + +-- +-- Name: location; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.location ( + id integer NOT NULL, + "externalId" character varying(255), + name character varying(255), + "adminLevel" integer, + latitude double precision, + longitude double precision, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "parentId" integer, + iso3 character varying(3), + pcode character varying(255), + status character varying(255), + "validOn" bigint, + "itosSync" boolean DEFAULT true +); + + +ALTER TABLE public.location OWNER TO postgres; + +-- +-- Name: location_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.location_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.location_id_seq OWNER TO postgres; + +-- +-- Name: location_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.location_id_seq OWNED BY public.location.id; + + +-- +-- Name: measurement; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.measurement ( + id integer NOT NULL, + "attachmentId" integer, + "planReportingPeriodId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "deletedAt" timestamp with time zone, + "currentVersion" boolean DEFAULT false NOT NULL, + "latestVersion" boolean DEFAULT false NOT NULL, + "latestTaggedVersion" boolean DEFAULT false NOT NULL, + "versionTags" character varying(8)[] DEFAULT (ARRAY[]::character varying[])::character varying(8)[] +); + + +ALTER TABLE public.measurement OWNER TO postgres; + +-- +-- Name: measurementVersion; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."measurementVersion" ( + id integer NOT NULL, + "measurementId" integer, + value jsonb, + "currentVersion" boolean DEFAULT false NOT NULL, + "latestVersion" boolean DEFAULT false NOT NULL, + "latestTaggedVersion" boolean DEFAULT false NOT NULL, + "versionTags" character varying(8)[] DEFAULT (ARRAY[]::character varying[])::character varying(8)[], + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."measurementVersion" OWNER TO postgres; + +-- +-- Name: measurementVersion_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."measurementVersion_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."measurementVersion_id_seq" OWNER TO postgres; + +-- +-- Name: measurementVersion_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."measurementVersion_id_seq" OWNED BY public."measurementVersion".id; + + +-- +-- Name: measurement_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.measurement_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.measurement_id_seq OWNER TO postgres; + +-- +-- Name: measurement_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.measurement_id_seq OWNED BY public.measurement.id; + + +-- +-- Name: objectExclude; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."objectExclude" ( + "objectType" character varying(32) NOT NULL, + "objectID" integer NOT NULL, + module public."enum_objectExclude_module" NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."objectExclude" OWNER TO postgres; + +-- +-- Name: operation; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.operation ( + "createdAt" timestamp with time zone NOT NULL, + id integer NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public.operation OWNER TO postgres; + +-- +-- Name: operationCluster; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."operationCluster" ( + "createdAt" timestamp with time zone NOT NULL, + id integer NOT NULL, + "operationId" integer NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."operationCluster" OWNER TO postgres; + +-- +-- Name: operationClusterVersion; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."operationClusterVersion" ( + "createdAt" timestamp with time zone NOT NULL, + data jsonb NOT NULL, + "isLatest" boolean NOT NULL, + "modifiedBy" integer, + root integer NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + version integer NOT NULL +); + + +ALTER TABLE public."operationClusterVersion" OWNER TO postgres; + +-- +-- Name: operationCluster_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."operationCluster_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."operationCluster_id_seq" OWNER TO postgres; + +-- +-- Name: operationCluster_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."operationCluster_id_seq" OWNED BY public."operationCluster".id; + + +-- +-- Name: operationVersion; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."operationVersion" ( + "createdAt" timestamp with time zone NOT NULL, + data jsonb NOT NULL, + "isLatest" boolean NOT NULL, + "modifiedBy" integer, + root integer NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + version integer NOT NULL +); + + +ALTER TABLE public."operationVersion" OWNER TO postgres; + +-- +-- Name: operation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.operation_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.operation_id_seq OWNER TO postgres; + +-- +-- Name: operation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.operation_id_seq OWNED BY public.operation.id; + + +-- +-- Name: organization; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.organization ( + id integer NOT NULL, + name character varying(255) NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + abbreviation character varying(255), + url text, + "parentID" integer, + "nativeName" character varying(255), + comments text, + "collectiveInd" boolean DEFAULT false NOT NULL, + active boolean DEFAULT true NOT NULL, + "deletedAt" timestamp with time zone, + "newOrganizationId" integer, + verified boolean DEFAULT false NOT NULL, + notes text +); + + +ALTER TABLE public.organization OWNER TO postgres; + +-- +-- Name: organizationLocation; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."organizationLocation" ( + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "organizationId" integer NOT NULL, + "locationId" integer NOT NULL +); + + +ALTER TABLE public."organizationLocation" OWNER TO postgres; + +-- +-- Name: organization_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.organization_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.organization_id_seq OWNER TO postgres; + +-- +-- Name: organization_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.organization_id_seq OWNED BY public.organization.id; + + +-- +-- Name: parameterValueIndicatorGoal; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."parameterValueIndicatorGoal" ( + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "indicatorGoalId" integer NOT NULL, + "parameterValueId" integer NOT NULL +); + + +ALTER TABLE public."parameterValueIndicatorGoal" OWNER TO postgres; + +-- +-- Name: participant; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.participant ( + id integer NOT NULL, + "hidId" character varying(255), + email character varying(255), + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "hidSub" character varying(255), + "internalUse" character varying(255), + name character varying(255) +); + + +ALTER TABLE public.participant OWNER TO postgres; + +-- +-- Name: participantCountry; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."participantCountry" ( + id integer NOT NULL, + "locationId" integer, + "participantId" integer, + validated boolean DEFAULT true, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."participantCountry" OWNER TO postgres; + +-- +-- Name: participantCountry_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."participantCountry_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."participantCountry_id_seq" OWNER TO postgres; + +-- +-- Name: participantCountry_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."participantCountry_id_seq" OWNED BY public."participantCountry".id; + + +-- +-- Name: participantOrganization; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."participantOrganization" ( + id integer NOT NULL, + "organizationId" integer, + "participantId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + validated boolean DEFAULT true +); + + +ALTER TABLE public."participantOrganization" OWNER TO postgres; + +-- +-- Name: participantOrganization_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."participantOrganization_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."participantOrganization_id_seq" OWNER TO postgres; + +-- +-- Name: participantOrganization_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."participantOrganization_id_seq" OWNED BY public."participantOrganization".id; + + +-- +-- Name: participantRole; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."participantRole" ( + id integer NOT NULL, + "roleId" integer, + "participantId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "objectId" integer, + "objectType" character varying(255) +); + + +ALTER TABLE public."participantRole" OWNER TO postgres; + +-- +-- Name: participantRole_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."participantRole_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."participantRole_id_seq" OWNER TO postgres; + +-- +-- Name: participantRole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."participantRole_id_seq" OWNED BY public."participantRole".id; + + +-- +-- Name: participant_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.participant_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.participant_id_seq OWNER TO postgres; + +-- +-- Name: participant_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.participant_id_seq OWNED BY public.participant.id; + + +-- +-- Name: permittedAction; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."permittedAction" ( + id character varying(255) NOT NULL, + value jsonb, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."permittedAction" OWNER TO postgres; + +-- +-- Name: plan; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.plan ( + id integer NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + restricted boolean, + "revisionState" character varying(255) +); + + +ALTER TABLE public.plan OWNER TO postgres; + +-- +-- Name: planBlueprint_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."planBlueprint_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."planBlueprint_id_seq" OWNER TO postgres; + +-- +-- Name: planBlueprint_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."planBlueprint_id_seq" OWNED BY public.blueprint.id; + + +-- +-- Name: planEmergency; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."planEmergency" ( + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "planId" integer NOT NULL, + "emergencyId" integer NOT NULL +); + + +ALTER TABLE public."planEmergency" OWNER TO postgres; + +-- +-- Name: planEntity; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."planEntity" ( + id integer NOT NULL, + "planId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "entityPrototypeId" integer NOT NULL, + "deletedAt" timestamp with time zone, + "currentVersion" boolean DEFAULT false NOT NULL, + "latestVersion" boolean DEFAULT false NOT NULL, + "latestTaggedVersion" boolean DEFAULT false NOT NULL, + "versionTags" character varying(8)[] DEFAULT (ARRAY[]::character varying[])::character varying(8)[] +); + + +ALTER TABLE public."planEntity" OWNER TO postgres; + +-- +-- Name: planEntityVersion; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."planEntityVersion" ( + id integer NOT NULL, + "planEntityId" integer, + "customReference" character varying(255), + value json, + "currentVersion" boolean DEFAULT false NOT NULL, + "latestVersion" boolean DEFAULT false NOT NULL, + "latestTaggedVersion" boolean DEFAULT false NOT NULL, + "versionTags" character varying(8)[] DEFAULT (ARRAY[]::character varying[])::character varying(8)[], + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."planEntityVersion" OWNER TO postgres; + +-- +-- Name: planEntityVersion_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."planEntityVersion_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."planEntityVersion_id_seq" OWNER TO postgres; + +-- +-- Name: planEntityVersion_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."planEntityVersion_id_seq" OWNED BY public."planEntityVersion".id; + + +-- +-- Name: planEntity_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."planEntity_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."planEntity_id_seq" OWNER TO postgres; + +-- +-- Name: planEntity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."planEntity_id_seq" OWNED BY public."planEntity".id; + + +-- +-- Name: planLocation; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."planLocation" ( + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "planId" integer NOT NULL, + "locationId" integer NOT NULL, + id integer NOT NULL, + "deletedAt" timestamp with time zone, + "currentVersion" boolean DEFAULT false NOT NULL, + "latestVersion" boolean DEFAULT false NOT NULL, + "latestTaggedVersion" boolean DEFAULT false NOT NULL, + "versionTags" character varying(8)[] DEFAULT (ARRAY[]::character varying[])::character varying(8)[] +); + + +ALTER TABLE public."planLocation" OWNER TO postgres; + +-- +-- Name: planLocation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."planLocation_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."planLocation_id_seq" OWNER TO postgres; + +-- +-- Name: planLocation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."planLocation_id_seq" OWNED BY public."planLocation".id; + + +-- +-- Name: planReportingPeriod; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."planReportingPeriod" ( + id integer NOT NULL, + "startDate" date, + "endDate" date, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "expiryDate" date, + "periodNumber" integer, + "planId" integer, + "measurementsGenerated" boolean DEFAULT false +); + + +ALTER TABLE public."planReportingPeriod" OWNER TO postgres; + +-- +-- Name: planReportingPeriod_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."planReportingPeriod_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."planReportingPeriod_id_seq" OWNER TO postgres; + +-- +-- Name: planReportingPeriod_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."planReportingPeriod_id_seq" OWNED BY public."planReportingPeriod".id; + + +-- +-- Name: planTag; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."planTag" ( + id integer NOT NULL, + "planId" integer NOT NULL, + name character varying(255) NOT NULL, + public boolean DEFAULT false NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + comment character varying(255), + "revisionState" character varying(255) +); + + +ALTER TABLE public."planTag" OWNER TO postgres; + +-- +-- Name: planTag_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."planTag_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."planTag_id_seq" OWNER TO postgres; + +-- +-- Name: planTag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."planTag_id_seq" OWNED BY public."planTag".id; + + +-- +-- Name: planVersion; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."planVersion" ( + id integer NOT NULL, + "planId" integer, + name character varying(255), + "startDate" date, + "endDate" date, + comments text, + "isForHPCProjects" boolean DEFAULT false NOT NULL, + code character varying(255), + "customLocationCode" character varying(255), + "currentReportingPeriodId" integer, + "currentVersion" boolean DEFAULT false NOT NULL, + "latestVersion" boolean DEFAULT false NOT NULL, + "latestTaggedVersion" boolean DEFAULT false NOT NULL, + "versionTags" character varying(8)[] DEFAULT (ARRAY[]::character varying[])::character varying(8)[], + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "lastPublishedReportingPeriodId" integer, + "clusterSelectionType" character varying(255) +); + + +ALTER TABLE public."planVersion" OWNER TO postgres; + +-- +-- Name: planVersion_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."planVersion_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."planVersion_id_seq" OWNER TO postgres; + +-- +-- Name: planVersion_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."planVersion_id_seq" OWNED BY public."planVersion".id; + + +-- +-- Name: planYear; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."planYear" ( + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "planId" integer NOT NULL, + "usageYearId" integer NOT NULL, + id integer NOT NULL, + "deletedAt" timestamp with time zone, + "currentVersion" boolean DEFAULT false NOT NULL, + "latestVersion" boolean DEFAULT false NOT NULL, + "latestTaggedVersion" boolean DEFAULT false NOT NULL, + "versionTags" character varying(8)[] DEFAULT (ARRAY[]::character varying[])::character varying(8)[] +); + + +ALTER TABLE public."planYear" OWNER TO postgres; + +-- +-- Name: planYear_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."planYear_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."planYear_id_seq" OWNER TO postgres; + +-- +-- Name: planYear_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."planYear_id_seq" OWNED BY public."planYear".id; + + +-- +-- Name: plan_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.plan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.plan_id_seq OWNER TO postgres; + +-- +-- Name: plan_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.plan_id_seq OWNED BY public.plan.id; + + +-- +-- Name: procedureEntityPrototype; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."procedureEntityPrototype" ( + id integer NOT NULL, + "planId" integer NOT NULL, + "entityPrototypeId" integer NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."procedureEntityPrototype" OWNER TO postgres; + +-- +-- Name: procedureEntityPrototype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."procedureEntityPrototype_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."procedureEntityPrototype_id_seq" OWNER TO postgres; + +-- +-- Name: procedureEntityPrototype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."procedureEntityPrototype_id_seq" OWNED BY public."procedureEntityPrototype".id; + + +-- +-- Name: procedureSection; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."procedureSection" ( + id integer NOT NULL, + name character varying(255), + "order" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "planId" integer NOT NULL, + description json +); + + +ALTER TABLE public."procedureSection" OWNER TO postgres; + +-- +-- Name: procedureSectionField; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."procedureSectionField" ( + "procedureSectionId" integer NOT NULL, + "conditionFieldId" integer NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."procedureSectionField" OWNER TO postgres; + +-- +-- Name: procedureSection_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."procedureSection_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."procedureSection_id_seq" OWNER TO postgres; + +-- +-- Name: procedureSection_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."procedureSection_id_seq" OWNED BY public."procedureSection".id; + + +-- +-- Name: project; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.project ( + id integer NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + code character varying(255), + "currentPublishedVersionId" integer, + "creatorParticipantId" integer, + "latestVersionId" integer, + "implementationStatus" public."enum_project_implementationStatus", + pdf json +); + + +ALTER TABLE public.project OWNER TO postgres; + +-- +-- Name: projectContact; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."projectContact" ( + id integer NOT NULL, + "projectVersionId" integer NOT NULL, + name character varying(255) NOT NULL, + email character varying(255), + website character varying(255), + "phoneNumber" character varying(255), + "participantId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."projectContact" OWNER TO postgres; + +-- +-- Name: projectContact_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."projectContact_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."projectContact_id_seq" OWNER TO postgres; + +-- +-- Name: projectContact_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."projectContact_id_seq" OWNED BY public."projectContact".id; + + +-- +-- Name: projectVersionField; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."projectVersionField" ( + id integer NOT NULL, + "conditionFieldId" integer, + value text, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "projectVersionPlanId" integer +); + + +ALTER TABLE public."projectVersionField" OWNER TO postgres; + +-- +-- Name: projectField_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."projectField_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."projectField_id_seq" OWNER TO postgres; + +-- +-- Name: projectField_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."projectField_id_seq" OWNED BY public."projectVersionField".id; + + +-- +-- Name: projectGlobalClusters; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."projectGlobalClusters" ( + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "globalClusterId" integer NOT NULL, + "projectVersionId" integer NOT NULL +); + + +ALTER TABLE public."projectGlobalClusters" OWNER TO postgres; + +-- +-- Name: projectLocations; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."projectLocations" ( + "projectVersionId" integer NOT NULL, + "locationId" integer NOT NULL, + "createdAt" timestamp with time zone, + "updatedAt" timestamp with time zone +); + + +ALTER TABLE public."projectLocations" OWNER TO postgres; + +-- +-- Name: projectVersionAttachment; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."projectVersionAttachment" ( + "projectVersionId" integer NOT NULL, + "attachmentId" integer NOT NULL, + value jsonb, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + total double precision, + "attachmentVersionId" integer +); + + +ALTER TABLE public."projectVersionAttachment" OWNER TO postgres; + +-- +-- Name: projectVersionGoverningEntity; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."projectVersionGoverningEntity" ( + "projectVersionId" integer NOT NULL, + "governingEntityId" integer NOT NULL, + "createdAt" timestamp with time zone, + "updatedAt" timestamp with time zone, + "governingEntityVersionId" integer +); + + +ALTER TABLE public."projectVersionGoverningEntity" OWNER TO postgres; + +-- +-- Name: projectVersionHistory; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."projectVersionHistory" ( + id integer NOT NULL, + "projectVersionId" integer NOT NULL, + "participantId" integer NOT NULL, + value json, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."projectVersionHistory" OWNER TO postgres; + +-- +-- Name: projectVersionHistory_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."projectVersionHistory_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."projectVersionHistory_id_seq" OWNER TO postgres; + +-- +-- Name: projectVersionHistory_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."projectVersionHistory_id_seq" OWNED BY public."projectVersionHistory".id; + + +-- +-- Name: projectVersionOrganization; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."projectVersionOrganization" ( + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "organizationId" integer NOT NULL, + "projectVersionId" integer NOT NULL +); + + +ALTER TABLE public."projectVersionOrganization" OWNER TO postgres; + +-- +-- Name: projectVersionPlan; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."projectVersionPlan" ( + "projectVersionId" integer NOT NULL, + "planId" integer NOT NULL, + "createdAt" timestamp with time zone, + "updatedAt" timestamp with time zone, + id integer NOT NULL, + value jsonb DEFAULT '{}'::jsonb NOT NULL, + "workflowStatusOptionId" integer +); + + +ALTER TABLE public."projectVersionPlan" OWNER TO postgres; + +-- +-- Name: projectVersionPlanEntity; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."projectVersionPlanEntity" ( + "projectVersionId" integer NOT NULL, + "planEntityId" integer NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "planEntityVersionId" integer +); + + +ALTER TABLE public."projectVersionPlanEntity" OWNER TO postgres; + +-- +-- Name: projectVersionPlan_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."projectVersionPlan_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."projectVersionPlan_id_seq" OWNER TO postgres; + +-- +-- Name: projectVersionPlan_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."projectVersionPlan_id_seq" OWNED BY public."projectVersionPlan".id; + + +-- +-- Name: projectVersion_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."projectVersion_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."projectVersion_id_seq" OWNER TO postgres; + +-- +-- Name: projectVersion_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."projectVersion_id_seq" OWNED BY public."projectVersion".id; + + +-- +-- Name: project_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.project_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.project_id_seq OWNER TO postgres; + +-- +-- Name: project_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.project_id_seq OWNED BY public.project.id; + + +-- +-- Name: reportDetail; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."reportDetail" ( + id integer NOT NULL, + "flowID" integer NOT NULL, + "versionID" integer NOT NULL, + "contactInfo" text, + source character varying(255) NOT NULL, + date timestamp with time zone, + "sourceID" character varying(255), + "refCode" character varying(255), + verified boolean NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "organizationID" integer +); + + +ALTER TABLE public."reportDetail" OWNER TO postgres; + +-- +-- Name: reportDetail_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."reportDetail_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."reportDetail_id_seq" OWNER TO postgres; + +-- +-- Name: reportDetail_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."reportDetail_id_seq" OWNED BY public."reportDetail".id; + + +-- +-- Name: reportFile; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."reportFile" ( + id integer NOT NULL, + "reportID" integer, + title character varying(255) NOT NULL, + type character varying(255) NOT NULL, + url character varying(255), + "fileAssetID" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."reportFile" OWNER TO postgres; + +-- +-- Name: reportFile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."reportFile_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."reportFile_id_seq" OWNER TO postgres; + +-- +-- Name: reportFile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."reportFile_id_seq" OWNED BY public."reportFile".id; + + +-- +-- Name: reportingWindow; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."reportingWindow" ( + "belongsToId" integer, + "belongsToType" public."enum_reportingWindow_belongsToType" NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + id integer NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."reportingWindow" OWNER TO postgres; + +-- +-- Name: reportingWindowAssignment; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."reportingWindowAssignment" ( + "assigneeId" integer NOT NULL, + "assigneeOperation" integer NOT NULL, + "assigneeType" public."enum_reportingWindowAssignment_assigneeType" NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + id integer NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "reportingWindowId" integer NOT NULL +); + + +ALTER TABLE public."reportingWindowAssignment" OWNER TO postgres; + +-- +-- Name: reportingWindowAssignmentVersion; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."reportingWindowAssignmentVersion" ( + "createdAt" timestamp with time zone NOT NULL, + data jsonb NOT NULL, + "isLatest" boolean NOT NULL, + "modifiedBy" integer, + root integer NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + version integer NOT NULL +); + + +ALTER TABLE public."reportingWindowAssignmentVersion" OWNER TO postgres; + +-- +-- Name: reportingWindowAssignment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."reportingWindowAssignment_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."reportingWindowAssignment_id_seq" OWNER TO postgres; + +-- +-- Name: reportingWindowAssignment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."reportingWindowAssignment_id_seq" OWNED BY public."reportingWindowAssignment".id; + + +-- +-- Name: reportingWindowVersion; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."reportingWindowVersion" ( + "createdAt" timestamp with time zone NOT NULL, + data jsonb NOT NULL, + "isLatest" boolean NOT NULL, + "modifiedBy" integer, + root integer NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + version integer NOT NULL +); + + +ALTER TABLE public."reportingWindowVersion" OWNER TO postgres; + +-- +-- Name: reportingWindow_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."reportingWindow_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."reportingWindow_id_seq" OWNER TO postgres; + +-- +-- Name: reportingWindow_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."reportingWindow_id_seq" OWNED BY public."reportingWindow".id; + + +-- +-- Name: role; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.role ( + id integer NOT NULL, + name character varying(255), + description character varying(255), + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "targetTypes" jsonb +); + + +ALTER TABLE public.role OWNER TO postgres; + +-- +-- Name: roleAuthenticationKey; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."roleAuthenticationKey" ( + id integer NOT NULL, + "roleId" integer, + key character varying(255) NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."roleAuthenticationKey" OWNER TO postgres; + +-- +-- Name: roleAuthenticationKey_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."roleAuthenticationKey_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."roleAuthenticationKey_id_seq" OWNER TO postgres; + +-- +-- Name: roleAuthenticationKey_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."roleAuthenticationKey_id_seq" OWNED BY public."roleAuthenticationKey".id; + + +-- +-- Name: rolePermittedAction; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."rolePermittedAction" ( + id integer NOT NULL, + "roleId" integer, + "permittedActionId" character varying(255), + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."rolePermittedAction" OWNER TO postgres; + +-- +-- Name: rolePermittedAction_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."rolePermittedAction_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."rolePermittedAction_id_seq" OWNER TO postgres; + +-- +-- Name: rolePermittedAction_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."rolePermittedAction_id_seq" OWNED BY public."rolePermittedAction".id; + + +-- +-- Name: role_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.role_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.role_id_seq OWNER TO postgres; + +-- +-- Name: role_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.role_id_seq OWNED BY public.role.id; + + +-- +-- Name: tag; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.tag ( + id integer NOT NULL, + name character varying(255) NOT NULL, + "createdAt" timestamp with time zone DEFAULT now() NOT NULL, + "updatedAt" timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE public.tag OWNER TO postgres; + +-- +-- Name: tag_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.tag_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.tag_id_seq OWNER TO postgres; + +-- +-- Name: tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.tag_id_seq OWNED BY public.tag.id; + + +-- +-- Name: task; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.task ( + id integer NOT NULL, + command character varying(255) NOT NULL, + requester integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "dataFileHash" character varying(255) NOT NULL, + run boolean DEFAULT false NOT NULL +); + + +ALTER TABLE public.task OWNER TO postgres; + +-- +-- Name: task_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.task_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.task_id_seq OWNER TO postgres; + +-- +-- Name: task_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.task_id_seq OWNED BY public.task.id; + + +-- +-- Name: unit; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.unit ( + id integer NOT NULL, + name character varying(255), + label character varying(255), + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + "unitTypeId" integer +); + + +ALTER TABLE public.unit OWNER TO postgres; + +-- +-- Name: unitType; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."unitType" ( + id integer NOT NULL, + name character varying(255), + label character varying(255), + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."unitType" OWNER TO postgres; + +-- +-- Name: unitType_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."unitType_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."unitType_id_seq" OWNER TO postgres; + +-- +-- Name: unitType_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."unitType_id_seq" OWNED BY public."unitType".id; + + +-- +-- Name: unit_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.unit_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.unit_id_seq OWNER TO postgres; + +-- +-- Name: unit_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.unit_id_seq OWNED BY public.unit.id; + + +-- +-- Name: usageYear; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."usageYear" ( + id integer NOT NULL, + year character varying(255) NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."usageYear" OWNER TO postgres; + +-- +-- Name: usageYear_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."usageYear_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."usageYear_id_seq" OWNER TO postgres; + +-- +-- Name: usageYear_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."usageYear_id_seq" OWNED BY public."usageYear".id; + + +-- +-- Name: workflowRole; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."workflowRole" ( + id integer NOT NULL, + "roleId" integer, + "entityType" character varying(255), + "entityId" integer, + "permittedActionIds" jsonb, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL +); + + +ALTER TABLE public."workflowRole" OWNER TO postgres; + +-- +-- Name: workflowRole_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."workflowRole_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."workflowRole_id_seq" OWNER TO postgres; + +-- +-- Name: workflowRole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."workflowRole_id_seq" OWNED BY public."workflowRole".id; + + +-- +-- Name: workflowStatusOption; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."workflowStatusOption" ( + id integer NOT NULL, + type character varying(255) NOT NULL, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + value jsonb, + "planId" integer NOT NULL +); + + +ALTER TABLE public."workflowStatusOption" OWNER TO postgres; + +-- +-- Name: workflowStatusOptionStep; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public."workflowStatusOptionStep" ( + id integer NOT NULL, + "fromId" integer, + "toId" integer, + "createdAt" timestamp with time zone NOT NULL, + "updatedAt" timestamp with time zone NOT NULL, + value jsonb +); + + +ALTER TABLE public."workflowStatusOptionStep" OWNER TO postgres; + +-- +-- Name: workflowStatusOptionStep_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."workflowStatusOptionStep_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."workflowStatusOptionStep_id_seq" OWNER TO postgres; + +-- +-- Name: workflowStatusOptionStep_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."workflowStatusOptionStep_id_seq" OWNED BY public."workflowStatusOptionStep".id; + + +-- +-- Name: workflowStatusOption_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public."workflowStatusOption_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public."workflowStatusOption_id_seq" OWNER TO postgres; + +-- +-- Name: workflowStatusOption_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public."workflowStatusOption_id_seq" OWNED BY public."workflowStatusOption".id; + + +-- +-- Name: attachment id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.attachment ALTER COLUMN id SET DEFAULT nextval('public.attachment_id_seq'::regclass); + + +-- +-- Name: attachmentPrototype id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."attachmentPrototype" ALTER COLUMN id SET DEFAULT nextval('public."attachmentPrototype_id_seq"'::regclass); + + +-- +-- Name: attachmentVersion id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."attachmentVersion" ALTER COLUMN id SET DEFAULT nextval('public."attachmentVersion_id_seq"'::regclass); + + +-- +-- Name: authGrantLog id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authGrantLog" ALTER COLUMN id SET DEFAULT nextval('public."authGrantLog_id_seq"'::regclass); + + +-- +-- Name: authGrantee id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authGrantee" ALTER COLUMN id SET DEFAULT nextval('public."authGrantee_id_seq"'::regclass); + + +-- +-- Name: authTarget id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authTarget" ALTER COLUMN id SET DEFAULT nextval('public."authTarget_id_seq"'::regclass); + + +-- +-- Name: blueprint id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.blueprint ALTER COLUMN id SET DEFAULT nextval('public."planBlueprint_id_seq"'::regclass); + + +-- +-- Name: budgetSegment id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."budgetSegment" ALTER COLUMN id SET DEFAULT nextval('public."budgetSegment_id_seq"'::regclass); + + +-- +-- Name: budgetSegmentBreakdown id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."budgetSegmentBreakdown" ALTER COLUMN id SET DEFAULT nextval('public."budgetSegmentBreakdown_id_seq"'::regclass); + + +-- +-- Name: budgetSegmentBreakdownEntity id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."budgetSegmentBreakdownEntity" ALTER COLUMN id SET DEFAULT nextval('public."budgetSegmentBreakdownEntity_id_seq"'::regclass); + + +-- +-- Name: category id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.category ALTER COLUMN id SET DEFAULT nextval('public.category_id_seq'::regclass); + + +-- +-- Name: client id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.client ALTER COLUMN id SET DEFAULT nextval('public.client_id_seq'::regclass); + + +-- +-- Name: conditionField id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."conditionField" ALTER COLUMN id SET DEFAULT nextval('public."conditionField_id_seq"'::regclass); + + +-- +-- Name: currency id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.currency ALTER COLUMN id SET DEFAULT nextval('public.currency_id_seq'::regclass); + + +-- +-- Name: disaggregationCategory id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."disaggregationCategory" ALTER COLUMN id SET DEFAULT nextval('public."disaggregationCategory_id_seq"'::regclass); + + +-- +-- Name: disaggregationCategoryGroup id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."disaggregationCategoryGroup" ALTER COLUMN id SET DEFAULT nextval('public."disaggregationCategoryGroup_id_seq"'::regclass); + + +-- +-- Name: disaggregationModel id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."disaggregationModel" ALTER COLUMN id SET DEFAULT nextval('public."disaggregationModel_id_seq"'::regclass); + + +-- +-- Name: emergency id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.emergency ALTER COLUMN id SET DEFAULT nextval('public.emergency_id_seq'::regclass); + + +-- +-- Name: endpointLog id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."endpointLog" ALTER COLUMN id SET DEFAULT nextval('public."endpointLog_id_seq"'::regclass); + + +-- +-- Name: entityCategories id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."entityCategories" ALTER COLUMN id SET DEFAULT nextval('public."entityCategories_id_seq"'::regclass); + + +-- +-- Name: entityCategory id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."entityCategory" ALTER COLUMN id SET DEFAULT nextval('public."entityCategory_id_seq"'::regclass); + + +-- +-- Name: entityPrototype id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."entityPrototype" ALTER COLUMN id SET DEFAULT nextval('public."entityPrototype_id_seq"'::regclass); + + +-- +-- Name: externalData id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."externalData" ALTER COLUMN id SET DEFAULT nextval('public."externalData_id_seq"'::regclass); + + +-- +-- Name: externalReference id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."externalReference" ALTER COLUMN id SET DEFAULT nextval('public."externalReference_id_seq"'::regclass); + + +-- +-- Name: fileAssetEntity id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."fileAssetEntity" ALTER COLUMN id SET DEFAULT nextval('public."fileAssetEntity_id_seq"'::regclass); + + +-- +-- Name: flow id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.flow ALTER COLUMN id SET DEFAULT nextval('public.flow_id_seq'::regclass); + + +-- +-- Name: form id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.form ALTER COLUMN id SET DEFAULT nextval('public.form_id_seq'::regclass); + + +-- +-- Name: globalCluster id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."globalCluster" ALTER COLUMN id SET DEFAULT nextval('public."globalCluster_id_seq"'::regclass); + + +-- +-- Name: globalClusterAssociation id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."globalClusterAssociation" ALTER COLUMN id SET DEFAULT nextval('public."globalClusterAssociation_id_seq"'::regclass); + + +-- +-- Name: globalIndicator id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."globalIndicator" ALTER COLUMN id SET DEFAULT nextval('public."globalIndicator_id_seq"'::regclass); + + +-- +-- Name: governingEntity id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."governingEntity" ALTER COLUMN id SET DEFAULT nextval('public."governingEntity_id_seq"'::regclass); + + +-- +-- Name: governingEntityVersion id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."governingEntityVersion" ALTER COLUMN id SET DEFAULT nextval('public."governingEntityVersion_id_seq"'::regclass); + + +-- +-- Name: iatiActivity id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiActivity" ALTER COLUMN id SET DEFAULT nextval('public."iatiActivity_id_seq"'::regclass); + + +-- +-- Name: iatiFTSMap id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiFTSMap" ALTER COLUMN id SET DEFAULT nextval('public."iatiFTSMap_id_seq"'::regclass); + + +-- +-- Name: iatiFTSMatch id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiFTSMatch" ALTER COLUMN id SET DEFAULT nextval('public."iatiFTSMatch_id_seq"'::regclass); + + +-- +-- Name: iatiHumanitarianScope id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiHumanitarianScope" ALTER COLUMN id SET DEFAULT nextval('public."iatiHumanitarianScope_id_seq"'::regclass); + + +-- +-- Name: iatiParticipatingOrg id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiParticipatingOrg" ALTER COLUMN id SET DEFAULT nextval('public."iatiParticipatingOrg_id_seq"'::regclass); + + +-- +-- Name: iatiRecipientCountry id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiRecipientCountry" ALTER COLUMN id SET DEFAULT nextval('public."iatiRecipientCountry_id_seq"'::regclass); + + +-- +-- Name: iatiSector id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiSector" ALTER COLUMN id SET DEFAULT nextval('public."iatiSector_id_seq"'::regclass); + + +-- +-- Name: iatiTransaction id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiTransaction" ALTER COLUMN id SET DEFAULT nextval('public."iatiTransaction_id_seq"'::regclass); + + +-- +-- Name: job id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.job ALTER COLUMN id SET DEFAULT nextval('public.job_id_seq'::regclass); + + +-- +-- Name: location id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.location ALTER COLUMN id SET DEFAULT nextval('public.location_id_seq'::regclass); + + +-- +-- Name: measurement id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.measurement ALTER COLUMN id SET DEFAULT nextval('public.measurement_id_seq'::regclass); + + +-- +-- Name: measurementVersion id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."measurementVersion" ALTER COLUMN id SET DEFAULT nextval('public."measurementVersion_id_seq"'::regclass); + + +-- +-- Name: operation id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.operation ALTER COLUMN id SET DEFAULT nextval('public.operation_id_seq'::regclass); + + +-- +-- Name: operationCluster id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."operationCluster" ALTER COLUMN id SET DEFAULT nextval('public."operationCluster_id_seq"'::regclass); + + +-- +-- Name: organization id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.organization ALTER COLUMN id SET DEFAULT nextval('public.organization_id_seq'::regclass); + + +-- +-- Name: participant id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.participant ALTER COLUMN id SET DEFAULT nextval('public.participant_id_seq'::regclass); + + +-- +-- Name: participantCountry id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."participantCountry" ALTER COLUMN id SET DEFAULT nextval('public."participantCountry_id_seq"'::regclass); + + +-- +-- Name: participantOrganization id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."participantOrganization" ALTER COLUMN id SET DEFAULT nextval('public."participantOrganization_id_seq"'::regclass); + + +-- +-- Name: participantRole id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."participantRole" ALTER COLUMN id SET DEFAULT nextval('public."participantRole_id_seq"'::regclass); + + +-- +-- Name: plan id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.plan ALTER COLUMN id SET DEFAULT nextval('public.plan_id_seq'::regclass); + + +-- +-- Name: planEntity id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planEntity" ALTER COLUMN id SET DEFAULT nextval('public."planEntity_id_seq"'::regclass); + + +-- +-- Name: planEntityVersion id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planEntityVersion" ALTER COLUMN id SET DEFAULT nextval('public."planEntityVersion_id_seq"'::regclass); + + +-- +-- Name: planLocation id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planLocation" ALTER COLUMN id SET DEFAULT nextval('public."planLocation_id_seq"'::regclass); + + +-- +-- Name: planReportingPeriod id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planReportingPeriod" ALTER COLUMN id SET DEFAULT nextval('public."planReportingPeriod_id_seq"'::regclass); + + +-- +-- Name: planTag id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planTag" ALTER COLUMN id SET DEFAULT nextval('public."planTag_id_seq"'::regclass); + + +-- +-- Name: planVersion id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planVersion" ALTER COLUMN id SET DEFAULT nextval('public."planVersion_id_seq"'::regclass); + + +-- +-- Name: planYear id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planYear" ALTER COLUMN id SET DEFAULT nextval('public."planYear_id_seq"'::regclass); + + +-- +-- Name: procedureEntityPrototype id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."procedureEntityPrototype" ALTER COLUMN id SET DEFAULT nextval('public."procedureEntityPrototype_id_seq"'::regclass); + + +-- +-- Name: procedureSection id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."procedureSection" ALTER COLUMN id SET DEFAULT nextval('public."procedureSection_id_seq"'::regclass); + + +-- +-- Name: project id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.project ALTER COLUMN id SET DEFAULT nextval('public.project_id_seq'::regclass); + + +-- +-- Name: projectContact id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectContact" ALTER COLUMN id SET DEFAULT nextval('public."projectContact_id_seq"'::regclass); + + +-- +-- Name: projectVersion id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersion" ALTER COLUMN id SET DEFAULT nextval('public."projectVersion_id_seq"'::regclass); + + +-- +-- Name: projectVersionComment id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionComment" ALTER COLUMN id SET DEFAULT nextval('public."fulfillmentComment_id_seq"'::regclass); + + +-- +-- Name: projectVersionField id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionField" ALTER COLUMN id SET DEFAULT nextval('public."projectField_id_seq"'::regclass); + + +-- +-- Name: projectVersionHistory id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionHistory" ALTER COLUMN id SET DEFAULT nextval('public."projectVersionHistory_id_seq"'::regclass); + + +-- +-- Name: projectVersionPlan id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionPlan" ALTER COLUMN id SET DEFAULT nextval('public."projectVersionPlan_id_seq"'::regclass); + + +-- +-- Name: reportDetail id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportDetail" ALTER COLUMN id SET DEFAULT nextval('public."reportDetail_id_seq"'::regclass); + + +-- +-- Name: reportFile id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportFile" ALTER COLUMN id SET DEFAULT nextval('public."reportFile_id_seq"'::regclass); + + +-- +-- Name: reportingWindow id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportingWindow" ALTER COLUMN id SET DEFAULT nextval('public."reportingWindow_id_seq"'::regclass); + + +-- +-- Name: reportingWindowAssignment id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportingWindowAssignment" ALTER COLUMN id SET DEFAULT nextval('public."reportingWindowAssignment_id_seq"'::regclass); + + +-- +-- Name: role id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.role ALTER COLUMN id SET DEFAULT nextval('public.role_id_seq'::regclass); + + +-- +-- Name: roleAuthenticationKey id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."roleAuthenticationKey" ALTER COLUMN id SET DEFAULT nextval('public."roleAuthenticationKey_id_seq"'::regclass); + + +-- +-- Name: rolePermittedAction id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."rolePermittedAction" ALTER COLUMN id SET DEFAULT nextval('public."rolePermittedAction_id_seq"'::regclass); + + +-- +-- Name: tag id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.tag ALTER COLUMN id SET DEFAULT nextval('public.tag_id_seq'::regclass); + + +-- +-- Name: task id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.task ALTER COLUMN id SET DEFAULT nextval('public.task_id_seq'::regclass); + + +-- +-- Name: unit id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.unit ALTER COLUMN id SET DEFAULT nextval('public.unit_id_seq'::regclass); + + +-- +-- Name: unitType id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."unitType" ALTER COLUMN id SET DEFAULT nextval('public."unitType_id_seq"'::regclass); + + +-- +-- Name: usageYear id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."usageYear" ALTER COLUMN id SET DEFAULT nextval('public."usageYear_id_seq"'::regclass); + + +-- +-- Name: workflowRole id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."workflowRole" ALTER COLUMN id SET DEFAULT nextval('public."workflowRole_id_seq"'::regclass); + + +-- +-- Name: workflowStatusOption id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."workflowStatusOption" ALTER COLUMN id SET DEFAULT nextval('public."workflowStatusOption_id_seq"'::regclass); + + +-- +-- Name: workflowStatusOptionStep id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."workflowStatusOptionStep" ALTER COLUMN id SET DEFAULT nextval('public."workflowStatusOptionStep_id_seq"'::regclass); + + +-- +-- Name: SequelizeMeta SequelizeMeta_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."SequelizeMeta" + ADD CONSTRAINT "SequelizeMeta_pkey" PRIMARY KEY (name); + + +-- +-- Name: attachmentPrototype attachmentPrototype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."attachmentPrototype" + ADD CONSTRAINT "attachmentPrototype_pkey" PRIMARY KEY (id); + + +-- +-- Name: attachmentVersion attachmentVersion_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."attachmentVersion" + ADD CONSTRAINT "attachmentVersion_pkey" PRIMARY KEY (id); + + +-- +-- Name: attachment attachment_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.attachment + ADD CONSTRAINT attachment_pkey PRIMARY KEY (id); + + +-- +-- Name: authGrantLog authGrantLog_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authGrantLog" + ADD CONSTRAINT "authGrantLog_pkey" PRIMARY KEY (id); + + +-- +-- Name: authGrant authGrant_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authGrant" + ADD CONSTRAINT "authGrant_pkey" PRIMARY KEY (target, grantee); + + +-- +-- Name: authGrantee authGrantee_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authGrantee" + ADD CONSTRAINT "authGrantee_pkey" PRIMARY KEY (id); + + +-- +-- Name: authInvite authInvite_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authInvite" + ADD CONSTRAINT "authInvite_pkey" PRIMARY KEY (target, email); + + +-- +-- Name: authTarget authTarget_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authTarget" + ADD CONSTRAINT "authTarget_pkey" PRIMARY KEY (id); + + +-- +-- Name: authToken authToken_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authToken" + ADD CONSTRAINT "authToken_pkey" PRIMARY KEY ("tokenHash"); + + +-- +-- Name: budgetSegmentBreakdownEntity budgetSegmentBreakdownEntity_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."budgetSegmentBreakdownEntity" + ADD CONSTRAINT "budgetSegmentBreakdownEntity_pkey" PRIMARY KEY (id); + + +-- +-- Name: budgetSegmentBreakdown budgetSegmentBreakdown_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."budgetSegmentBreakdown" + ADD CONSTRAINT "budgetSegmentBreakdown_pkey" PRIMARY KEY (id); + + +-- +-- Name: budgetSegment budgetSegment_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."budgetSegment" + ADD CONSTRAINT "budgetSegment_pkey" PRIMARY KEY (id); + + +-- +-- Name: cache cache_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.cache + ADD CONSTRAINT cache_pkey PRIMARY KEY (namespace, fingerprint); + + +-- +-- Name: categoryGroup categoryGroup_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."categoryGroup" + ADD CONSTRAINT "categoryGroup_name_key" UNIQUE (name); + + +-- +-- Name: categoryGroup categoryGroup_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."categoryGroup" + ADD CONSTRAINT "categoryGroup_pkey" PRIMARY KEY (type); + + +-- +-- Name: categoryRef categoryRef_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."categoryRef" + ADD CONSTRAINT "categoryRef_pkey" PRIMARY KEY ("objectID", "versionID", "objectType", "categoryID"); + + +-- +-- Name: category category_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.category + ADD CONSTRAINT category_pkey PRIMARY KEY (id); + + +-- +-- Name: client client_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.client + ADD CONSTRAINT client_pkey PRIMARY KEY (id); + + +-- +-- Name: conditionFieldReliesOn conditionFieldReliesOn_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."conditionFieldReliesOn" + ADD CONSTRAINT "conditionFieldReliesOn_pkey" PRIMARY KEY ("reliedOnById", "reliesOnId"); + + +-- +-- Name: conditionFieldType conditionFieldType_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."conditionFieldType" + ADD CONSTRAINT "conditionFieldType_pkey" PRIMARY KEY (type); + + +-- +-- Name: conditionField conditionField_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."conditionField" + ADD CONSTRAINT "conditionField_pkey" PRIMARY KEY (id); + + +-- +-- Name: currency currency_code_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.currency + ADD CONSTRAINT currency_code_key UNIQUE (code); + + +-- +-- Name: currency currency_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.currency + ADD CONSTRAINT currency_pkey PRIMARY KEY (id); + + +-- +-- Name: disaggregationCategoryGroup disaggregationCategoryGroup_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."disaggregationCategoryGroup" + ADD CONSTRAINT "disaggregationCategoryGroup_id_key" UNIQUE (id); + + +-- +-- Name: disaggregationCategoryGroup disaggregationCategoryGroup_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."disaggregationCategoryGroup" + ADD CONSTRAINT "disaggregationCategoryGroup_pkey" PRIMARY KEY (id); + + +-- +-- Name: disaggregationCategory disaggregationCategory_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."disaggregationCategory" + ADD CONSTRAINT "disaggregationCategory_pkey" PRIMARY KEY (id); + + +-- +-- Name: disaggregationModel disaggregationModel_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."disaggregationModel" + ADD CONSTRAINT "disaggregationModel_pkey" PRIMARY KEY (id); + + +-- +-- Name: emergencyLocation emergencyLocation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."emergencyLocation" + ADD CONSTRAINT "emergencyLocation_pkey" PRIMARY KEY ("emergencyId", "locationId"); + + +-- +-- Name: emergency emergency_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.emergency + ADD CONSTRAINT emergency_pkey PRIMARY KEY (id); + + +-- +-- Name: endpointLog endpointLog_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."endpointLog" + ADD CONSTRAINT "endpointLog_pkey" PRIMARY KEY (id); + + +-- +-- Name: endpointTrace endpointTrace_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."endpointTrace" + ADD CONSTRAINT "endpointTrace_pkey" PRIMARY KEY (id); + + +-- +-- Name: endpointUsage endpointUsage_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."endpointUsage" + ADD CONSTRAINT "endpointUsage_pkey" PRIMARY KEY (path, method); + + +-- +-- Name: entitiesAssociation entitiesAssociation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."entitiesAssociation" + ADD CONSTRAINT "entitiesAssociation_pkey" PRIMARY KEY ("parentId", "childId"); + + +-- +-- Name: entityCategories entityCategories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."entityCategories" + ADD CONSTRAINT "entityCategories_pkey" PRIMARY KEY (id); + + +-- +-- Name: entityCategory entityCategory_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."entityCategory" + ADD CONSTRAINT "entityCategory_pkey" PRIMARY KEY (id); + + +-- +-- Name: entityPrototype entityPrototype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."entityPrototype" + ADD CONSTRAINT "entityPrototype_pkey" PRIMARY KEY (id); + + +-- +-- Name: externalData externalData_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."externalData" + ADD CONSTRAINT "externalData_pkey" PRIMARY KEY (id); + + +-- +-- Name: externalReference externalReference_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."externalReference" + ADD CONSTRAINT "externalReference_pkey" PRIMARY KEY (id); + + +-- +-- Name: fileAssetEntity fileAssetEntity_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."fileAssetEntity" + ADD CONSTRAINT "fileAssetEntity_pkey" PRIMARY KEY (id); + + +-- +-- Name: fileRecord fileRecord_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."fileRecord" + ADD CONSTRAINT "fileRecord_pkey" PRIMARY KEY (namespace, hash); + + +-- +-- Name: flowLink flowLink_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."flowLink" + ADD CONSTRAINT "flowLink_pkey" PRIMARY KEY ("parentID", "childID"); + + +-- +-- Name: flowObjectType flowObjectType_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."flowObjectType" + ADD CONSTRAINT "flowObjectType_pkey" PRIMARY KEY (type); + + +-- +-- Name: flowObject flowObject_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."flowObject" + ADD CONSTRAINT "flowObject_pkey" PRIMARY KEY ("flowID", "objectID", "versionID", "objectType", "refDirection"); + + +-- +-- Name: flow flow_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.flow + ADD CONSTRAINT flow_pkey PRIMARY KEY (id, "versionID"); + + +-- +-- Name: formVersion formVersion_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."formVersion" + ADD CONSTRAINT "formVersion_pkey" PRIMARY KEY (root, version); + + +-- +-- Name: form form_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.form + ADD CONSTRAINT form_pkey PRIMARY KEY (id); + + +-- +-- Name: projectVersionComment fulfillmentComment_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionComment" + ADD CONSTRAINT "fulfillmentComment_pkey" PRIMARY KEY (id); + + +-- +-- Name: globalClusterAssociation globalClusterAssociation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."globalClusterAssociation" + ADD CONSTRAINT "globalClusterAssociation_pkey" PRIMARY KEY (id); + + +-- +-- Name: globalCluster globalCluster_hrinfoId_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."globalCluster" + ADD CONSTRAINT "globalCluster_hrinfoId_key" UNIQUE ("hrinfoId"); + + +-- +-- Name: globalCluster globalCluster_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."globalCluster" + ADD CONSTRAINT "globalCluster_pkey" PRIMARY KEY (id); + + +-- +-- Name: globalIndicator globalIndicator_hrinfoId_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."globalIndicator" + ADD CONSTRAINT "globalIndicator_hrinfoId_key" UNIQUE ("hrinfoId"); + + +-- +-- Name: globalIndicator globalIndicator_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."globalIndicator" + ADD CONSTRAINT "globalIndicator_pkey" PRIMARY KEY (id); + + +-- +-- Name: governingEntityVersion governingEntityVersion_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."governingEntityVersion" + ADD CONSTRAINT "governingEntityVersion_pkey" PRIMARY KEY (id); + + +-- +-- Name: governingEntity governingEntity_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."governingEntity" + ADD CONSTRAINT "governingEntity_pkey" PRIMARY KEY (id); + + +-- +-- Name: highWater highWater_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."highWater" + ADD CONSTRAINT "highWater_pkey" PRIMARY KEY ("jobName"); + + +-- +-- Name: iatiActivity iatiActivity_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiActivity" + ADD CONSTRAINT "iatiActivity_pkey" PRIMARY KEY (id); + + +-- +-- Name: iatiFTSMap iatiFTSMap_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiFTSMap" + ADD CONSTRAINT "iatiFTSMap_pkey" PRIMARY KEY (id); + + +-- +-- Name: iatiFTSMatch iatiFTSMatch_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiFTSMatch" + ADD CONSTRAINT "iatiFTSMatch_pkey" PRIMARY KEY (id); + + +-- +-- Name: iatiHumanitarianScope iatiHumanitarianScope_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiHumanitarianScope" + ADD CONSTRAINT "iatiHumanitarianScope_pkey" PRIMARY KEY (id); + + +-- +-- Name: iatiParticipatingOrg iatiParticipatingOrg_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiParticipatingOrg" + ADD CONSTRAINT "iatiParticipatingOrg_pkey" PRIMARY KEY (id); + + +-- +-- Name: iatiPublisher iatiPublisher_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiPublisher" + ADD CONSTRAINT "iatiPublisher_pkey" PRIMARY KEY (id); + + +-- +-- Name: iatiRecipientCountry iatiRecipientCountry_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiRecipientCountry" + ADD CONSTRAINT "iatiRecipientCountry_pkey" PRIMARY KEY (id); + + +-- +-- Name: iatiSector iatiSector_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiSector" + ADD CONSTRAINT "iatiSector_pkey" PRIMARY KEY (id); + + +-- +-- Name: iatiTransaction iatiTransaction_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiTransaction" + ADD CONSTRAINT "iatiTransaction_pkey" PRIMARY KEY (id); + + +-- +-- Name: icon icon_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.icon + ADD CONSTRAINT icon_pkey PRIMARY KEY (id); + + +-- +-- Name: jobAssociation jobAssociation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."jobAssociation" + ADD CONSTRAINT "jobAssociation_pkey" PRIMARY KEY ("jobId", "objectId", "objectType"); + + +-- +-- Name: job job_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.job + ADD CONSTRAINT job_pkey PRIMARY KEY (id); + + +-- +-- Name: legacy legacy_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.legacy + ADD CONSTRAINT legacy_pkey PRIMARY KEY ("objectType", "objectID", "legacyID"); + + +-- +-- Name: location location_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.location + ADD CONSTRAINT location_pkey PRIMARY KEY (id); + + +-- +-- Name: measurementVersion measurementVersion_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."measurementVersion" + ADD CONSTRAINT "measurementVersion_pkey" PRIMARY KEY (id); + + +-- +-- Name: measurement measurement_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.measurement + ADD CONSTRAINT measurement_pkey PRIMARY KEY (id); + + +-- +-- Name: objectExclude objectExclude_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."objectExclude" + ADD CONSTRAINT "objectExclude_pkey" PRIMARY KEY ("objectType", "objectID", module); + + +-- +-- Name: operationClusterVersion operationClusterVersion_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."operationClusterVersion" + ADD CONSTRAINT "operationClusterVersion_pkey" PRIMARY KEY (root, version); + + +-- +-- Name: operationCluster operationCluster_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."operationCluster" + ADD CONSTRAINT "operationCluster_pkey" PRIMARY KEY (id); + + +-- +-- Name: operationVersion operationVersion_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."operationVersion" + ADD CONSTRAINT "operationVersion_pkey" PRIMARY KEY (root, version); + + +-- +-- Name: operation operation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.operation + ADD CONSTRAINT operation_pkey PRIMARY KEY (id); + + +-- +-- Name: organizationLocation organizationLocation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."organizationLocation" + ADD CONSTRAINT "organizationLocation_pkey" PRIMARY KEY ("organizationId", "locationId"); + + +-- +-- Name: organization organization_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.organization + ADD CONSTRAINT organization_name_key UNIQUE (name); + + +-- +-- Name: organization organization_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.organization + ADD CONSTRAINT organization_pkey PRIMARY KEY (id); + + +-- +-- Name: parameterValueIndicatorGoal parameterValueIndicatorGoal_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."parameterValueIndicatorGoal" + ADD CONSTRAINT "parameterValueIndicatorGoal_pkey" PRIMARY KEY ("indicatorGoalId", "parameterValueId"); + + +-- +-- Name: participantCountry participantCountry_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."participantCountry" + ADD CONSTRAINT "participantCountry_pkey" PRIMARY KEY (id); + + +-- +-- Name: participantOrganization participantOrganization_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."participantOrganization" + ADD CONSTRAINT "participantOrganization_pkey" PRIMARY KEY (id); + + +-- +-- Name: participantRole participantRole_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."participantRole" + ADD CONSTRAINT "participantRole_pkey" PRIMARY KEY (id); + + +-- +-- Name: participant participant_hidId_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.participant + ADD CONSTRAINT "participant_hidId_key" UNIQUE ("hidId"); + + +-- +-- Name: participant participant_internalUse_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.participant + ADD CONSTRAINT "participant_internalUse_key" UNIQUE ("internalUse"); + + +-- +-- Name: participant participant_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.participant + ADD CONSTRAINT participant_pkey PRIMARY KEY (id); + + +-- +-- Name: permittedAction permittedAction_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."permittedAction" + ADD CONSTRAINT "permittedAction_pkey" PRIMARY KEY (id); + + +-- +-- Name: blueprint planBlueprint_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.blueprint + ADD CONSTRAINT "planBlueprint_pkey" PRIMARY KEY (id); + + +-- +-- Name: planEmergency planEmergency_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planEmergency" + ADD CONSTRAINT "planEmergency_pkey" PRIMARY KEY ("planId", "emergencyId"); + + +-- +-- Name: planEntityVersion planEntityVersion_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planEntityVersion" + ADD CONSTRAINT "planEntityVersion_pkey" PRIMARY KEY (id); + + +-- +-- Name: planEntity planEntity_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planEntity" + ADD CONSTRAINT "planEntity_pkey" PRIMARY KEY (id); + + +-- +-- Name: planLocation planLocation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planLocation" + ADD CONSTRAINT "planLocation_pkey" PRIMARY KEY (id); + + +-- +-- Name: planReportingPeriod planReportingPeriod_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planReportingPeriod" + ADD CONSTRAINT "planReportingPeriod_pkey" PRIMARY KEY (id); + + +-- +-- Name: planTag planTag_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planTag" + ADD CONSTRAINT "planTag_pkey" PRIMARY KEY (id); + + +-- +-- Name: planVersion planVersion_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planVersion" + ADD CONSTRAINT "planVersion_pkey" PRIMARY KEY (id); + + +-- +-- Name: planYear planYear_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planYear" + ADD CONSTRAINT "planYear_pkey" PRIMARY KEY (id); + + +-- +-- Name: plan plan_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.plan + ADD CONSTRAINT plan_pkey PRIMARY KEY (id); + + +-- +-- Name: procedureEntityPrototype procedureEntityPrototype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."procedureEntityPrototype" + ADD CONSTRAINT "procedureEntityPrototype_pkey" PRIMARY KEY (id); + + +-- +-- Name: procedureEntityPrototype procedureEntityPrototype_planId_entityPrototypeId_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."procedureEntityPrototype" + ADD CONSTRAINT "procedureEntityPrototype_planId_entityPrototypeId_key" UNIQUE ("planId", "entityPrototypeId"); + + +-- +-- Name: procedureSectionField procedureSectionField_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."procedureSectionField" + ADD CONSTRAINT "procedureSectionField_pkey" PRIMARY KEY ("procedureSectionId", "conditionFieldId"); + + +-- +-- Name: procedureSection procedureSection_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."procedureSection" + ADD CONSTRAINT "procedureSection_pkey" PRIMARY KEY (id); + + +-- +-- Name: projectVersionAttachment projectAttachment_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionAttachment" + ADD CONSTRAINT "projectAttachment_pkey" PRIMARY KEY ("projectVersionId", "attachmentId"); + + +-- +-- Name: projectContact projectContact_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectContact" + ADD CONSTRAINT "projectContact_pkey" PRIMARY KEY (id); + + +-- +-- Name: projectVersionField projectField_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionField" + ADD CONSTRAINT "projectField_pkey" PRIMARY KEY (id); + + +-- +-- Name: projectGlobalClusters projectGlobalClusters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectGlobalClusters" + ADD CONSTRAINT "projectGlobalClusters_pkey" PRIMARY KEY ("projectVersionId", "globalClusterId"); + + +-- +-- Name: projectVersionGoverningEntity projectGoverningEntities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionGoverningEntity" + ADD CONSTRAINT "projectGoverningEntities_pkey" PRIMARY KEY ("projectVersionId", "governingEntityId"); + + +-- +-- Name: projectLocations projectLocations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectLocations" + ADD CONSTRAINT "projectLocations_pkey" PRIMARY KEY ("projectVersionId", "locationId"); + + +-- +-- Name: projectVersionOrganization projectOrganizations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionOrganization" + ADD CONSTRAINT "projectOrganizations_pkey" PRIMARY KEY ("projectVersionId", "organizationId"); + + +-- +-- Name: projectVersionPlanEntity projectPlanEntities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionPlanEntity" + ADD CONSTRAINT "projectPlanEntities_pkey" PRIMARY KEY ("projectVersionId", "planEntityId"); + + +-- +-- Name: projectVersionPlan projectPlans_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionPlan" + ADD CONSTRAINT "projectPlans_pkey" PRIMARY KEY ("projectVersionId", "planId"); + + +-- +-- Name: projectVersionAttachment projectVersionAttachment_attachmentId_projectVersionId_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionAttachment" + ADD CONSTRAINT "projectVersionAttachment_attachmentId_projectVersionId_key" UNIQUE ("attachmentId", "projectVersionId"); + + +-- +-- Name: projectVersionGoverningEntity projectVersionGoverningEntity_governingEntityId_projectVers_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionGoverningEntity" + ADD CONSTRAINT "projectVersionGoverningEntity_governingEntityId_projectVers_key" UNIQUE ("governingEntityId", "projectVersionId"); + + +-- +-- Name: projectVersionHistory projectVersionHistory_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionHistory" + ADD CONSTRAINT "projectVersionHistory_pkey" PRIMARY KEY (id); + + +-- +-- Name: projectVersionPlanEntity projectVersionPlanEntity_planEntityId_projectVersionId_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionPlanEntity" + ADD CONSTRAINT "projectVersionPlanEntity_planEntityId_projectVersionId_key" UNIQUE ("planEntityId", "projectVersionId"); + + +-- +-- Name: projectVersionPlan projectVersionPlan_unique_id; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionPlan" + ADD CONSTRAINT "projectVersionPlan_unique_id" UNIQUE (id); + + +-- +-- Name: projectVersion projectVersion_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersion" + ADD CONSTRAINT "projectVersion_pkey" PRIMARY KEY (id); + + +-- +-- Name: project project_code_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.project + ADD CONSTRAINT project_code_key UNIQUE (code); + + +-- +-- Name: project project_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.project + ADD CONSTRAINT project_pkey PRIMARY KEY (id); + + +-- +-- Name: reportDetail reportDetail_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportDetail" + ADD CONSTRAINT "reportDetail_pkey" PRIMARY KEY (id); + + +-- +-- Name: reportFile reportFile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportFile" + ADD CONSTRAINT "reportFile_pkey" PRIMARY KEY (id); + + +-- +-- Name: reportingWindowAssignmentVersion reportingWindowAssignmentVersion_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportingWindowAssignmentVersion" + ADD CONSTRAINT "reportingWindowAssignmentVersion_pkey" PRIMARY KEY (root, version); + + +-- +-- Name: reportingWindowAssignment reportingWindowAssignment_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportingWindowAssignment" + ADD CONSTRAINT "reportingWindowAssignment_pkey" PRIMARY KEY (id); + + +-- +-- Name: reportingWindowVersion reportingWindowVersion_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportingWindowVersion" + ADD CONSTRAINT "reportingWindowVersion_pkey" PRIMARY KEY (root, version); + + +-- +-- Name: reportingWindow reportingwindow_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportingWindow" + ADD CONSTRAINT reportingwindow_pkey PRIMARY KEY (id); + + +-- +-- Name: roleAuthenticationKey roleAuthenticationKey_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."roleAuthenticationKey" + ADD CONSTRAINT "roleAuthenticationKey_pkey" PRIMARY KEY (id); + + +-- +-- Name: rolePermittedAction rolePermittedAction_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."rolePermittedAction" + ADD CONSTRAINT "rolePermittedAction_pkey" PRIMARY KEY (id); + + +-- +-- Name: role role_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.role + ADD CONSTRAINT role_pkey PRIMARY KEY (id); + + +-- +-- Name: tag tag_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.tag + ADD CONSTRAINT tag_name_key UNIQUE (name); + + +-- +-- Name: tag tag_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.tag + ADD CONSTRAINT tag_pkey PRIMARY KEY (id); + + +-- +-- Name: task task_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.task + ADD CONSTRAINT task_pkey PRIMARY KEY (id); + + +-- +-- Name: unitType unitType_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."unitType" + ADD CONSTRAINT "unitType_pkey" PRIMARY KEY (id); + + +-- +-- Name: unit unit_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.unit + ADD CONSTRAINT unit_pkey PRIMARY KEY (id); + + +-- +-- Name: usageYear usageYear_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."usageYear" + ADD CONSTRAINT "usageYear_pkey" PRIMARY KEY (id); + + +-- +-- Name: usageYear usageYear_year_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."usageYear" + ADD CONSTRAINT "usageYear_year_key" UNIQUE (year); + + +-- +-- Name: workflowRole workflowRole_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."workflowRole" + ADD CONSTRAINT "workflowRole_pkey" PRIMARY KEY (id); + + +-- +-- Name: workflowStatusOptionStep workflowStatusOptionStep_fromId_toId_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."workflowStatusOptionStep" + ADD CONSTRAINT "workflowStatusOptionStep_fromId_toId_key" UNIQUE ("fromId", "toId"); + + +-- +-- Name: workflowStatusOptionStep workflowStatusOptionStep_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."workflowStatusOptionStep" + ADD CONSTRAINT "workflowStatusOptionStep_pkey" PRIMARY KEY (id); + + +-- +-- Name: workflowStatusOption workflowStatusOption_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."workflowStatusOption" + ADD CONSTRAINT "workflowStatusOption_pkey" PRIMARY KEY (id); + + +-- +-- Name: attachmentPrototype_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "attachmentPrototype_plan_index" ON public."attachmentPrototype" USING btree ("planId"); + + +-- +-- Name: attachmentPrototype_refCode_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "attachmentPrototype_refCode_index" ON public."attachmentPrototype" USING btree ("refCode"); + + +-- +-- Name: attachmentVersion_attachmentId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "attachmentVersion_attachmentId_idx" ON public."attachmentVersion" USING btree ("attachmentId"); + + +-- +-- Name: attachmentVersion_current_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "attachmentVersion_current_index" ON public."attachmentVersion" USING btree ("currentVersion") WHERE ("currentVersion" = true); + + +-- +-- Name: attachmentVersion_latestTagged_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "attachmentVersion_latestTagged_index" ON public."attachmentVersion" USING btree ("latestTaggedVersion") WHERE ("latestTaggedVersion" = true); + + +-- +-- Name: attachmentVersion_latest_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "attachmentVersion_latest_index" ON public."attachmentVersion" USING btree ("latestVersion") WHERE ("latestVersion" = true); + + +-- +-- Name: attachmentVersion_versionTags_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "attachmentVersion_versionTags_index" ON public."attachmentVersion" USING gin ("versionTags"); + + +-- +-- Name: attachment_attachmentPrototypeId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "attachment_attachmentPrototypeId_idx" ON public.attachment USING btree ("attachmentPrototypeId"); + + +-- +-- Name: attachment_current_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX attachment_current_index ON public.attachment USING btree ("currentVersion") WHERE ("currentVersion" = true); + + +-- +-- Name: attachment_latestTagged_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "attachment_latestTagged_index" ON public.attachment USING btree ("latestTaggedVersion") WHERE ("latestTaggedVersion" = true); + + +-- +-- Name: attachment_latest_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX attachment_latest_index ON public.attachment USING btree ("latestVersion") WHERE ("latestVersion" = true); + + +-- +-- Name: attachment_object_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX attachment_object_index ON public.attachment USING btree ("objectId", "objectType"); + + +-- +-- Name: attachment_planId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "attachment_planId_idx" ON public.attachment USING btree ("planId"); + + +-- +-- Name: attachment_versionTags_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "attachment_versionTags_index" ON public.attachment USING gin ("versionTags"); + + +-- +-- Name: auth_grant_grantee; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX auth_grant_grantee ON public."authGrant" USING btree (grantee); + + +-- +-- Name: auth_grant_log_grantee; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX auth_grant_log_grantee ON public."authGrantLog" USING btree (grantee); + + +-- +-- Name: auth_grant_log_target; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX auth_grant_log_target ON public."authGrantLog" USING btree (target); + + +-- +-- Name: auth_grant_target; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX auth_grant_target ON public."authGrant" USING btree (target); + + +-- +-- Name: auth_grantee_type_grantee_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX auth_grantee_type_grantee_id ON public."authGrantee" USING btree (type, "granteeId"); + + +-- +-- Name: auth_invite_email; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX auth_invite_email ON public."authInvite" USING btree (email); + + +-- +-- Name: auth_invite_target; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX auth_invite_target ON public."authInvite" USING btree (target); + + +-- +-- Name: auth_target_type_target_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX auth_target_type_target_id ON public."authTarget" USING btree (type, "targetId"); + + +-- +-- Name: budgetSegmentBreakdownEntity_budgetSegmentBreakdownId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "budgetSegmentBreakdownEntity_budgetSegmentBreakdownId_idx" ON public."budgetSegmentBreakdownEntity" USING btree ("budgetSegmentBreakdownId"); + + +-- +-- Name: budgetSegmentBreakdownEntity_budgetSegmentBreakdownId_objec_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "budgetSegmentBreakdownEntity_budgetSegmentBreakdownId_objec_idx" ON public."budgetSegmentBreakdownEntity" USING btree ("budgetSegmentBreakdownId", "objectType"); + + +-- +-- Name: budgetSegmentBreakdown_budgetSegmentId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "budgetSegmentBreakdown_budgetSegmentId_idx" ON public."budgetSegmentBreakdown" USING btree ("budgetSegmentId"); + + +-- +-- Name: budgetSegment_projectVersionId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "budgetSegment_projectVersionId_idx" ON public."budgetSegment" USING btree ("projectVersionId"); + + +-- +-- Name: cache_namespace_fingerprint; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX cache_namespace_fingerprint ON public.cache USING btree (namespace, fingerprint); + + +-- +-- Name: categoryLegacy_group_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "categoryLegacy_group_idx" ON public."categoryLegacy" USING btree ("group"); + + +-- +-- Name: categoryLegacy_pkey; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX "categoryLegacy_pkey" ON public."categoryLegacy" USING btree (id, "group", "legacyID"); + + +-- +-- Name: categoryRef_categoryID_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "categoryRef_categoryID_idx" ON public."categoryRef" USING btree ("categoryID"); + + +-- +-- Name: category_group_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX category_group_idx ON public.category USING btree ("group"); + + +-- +-- Name: category_name_group; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX category_name_group ON public.category USING btree (name, "group"); + + +-- +-- Name: category_parent_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX category_parent_index ON public.category USING btree ("parentID"); + + +-- +-- Name: childID; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "childID" ON public."flowLink" USING btree ("childID"); + + +-- +-- Name: client_id_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX client_id_index ON public.client USING btree ("clientId"); + + +-- +-- Name: conditionFieldReliesOn_reliesOnId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "conditionFieldReliesOn_reliesOnId_idx" ON public."conditionFieldReliesOn" USING btree ("reliesOnId"); + + +-- +-- Name: conditionField_fieldType_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "conditionField_fieldType_idx" ON public."conditionField" USING btree ("fieldType"); + + +-- +-- Name: conditionField_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "conditionField_plan_index" ON public."conditionField" USING btree ("planId"); + + +-- +-- Name: conditionfield_lowercase_name_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX conditionfield_lowercase_name_index ON public."conditionField" USING btree (lower((name)::text)); + + +-- +-- Name: disaggregationCategoryGroup_planId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "disaggregationCategoryGroup_planId_idx" ON public."disaggregationCategoryGroup" USING btree ("planId"); + + +-- +-- Name: disaggregationCategoryGroup_unitTypeId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "disaggregationCategoryGroup_unitTypeId_idx" ON public."disaggregationCategoryGroup" USING btree ("unitTypeId"); + + +-- +-- Name: disaggregationCategory_disaggregationCategoryGroupId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "disaggregationCategory_disaggregationCategoryGroupId_idx" ON public."disaggregationCategory" USING btree ("disaggregationCategoryGroupId"); + + +-- +-- Name: disaggregationModel_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "disaggregationModel_plan_index" ON public."disaggregationModel" USING btree ("planId"); + + +-- +-- Name: emergencyLocation_locationId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "emergencyLocation_locationId_idx" ON public."emergencyLocation" USING btree ("locationId"); + + +-- +-- Name: emergency_name_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX emergency_name_index ON public.emergency USING btree (name); + + +-- +-- Name: emergency_status_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX emergency_status_index ON public.emergency USING btree (active DESC NULLS LAST, restricted NULLS FIRST); + + +-- +-- Name: endpointLog_entity_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "endpointLog_entity_index" ON public."endpointLog" USING btree ("entityId", "entityType"); + + +-- +-- Name: endpointLog_participantId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "endpointLog_participantId_idx" ON public."endpointLog" USING btree ("participantId"); + + +-- +-- Name: entitiesAssociation_child_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "entitiesAssociation_child_index" ON public."entitiesAssociation" USING btree ("childId", "childType"); + + +-- +-- Name: entitiesAssociation_parent_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "entitiesAssociation_parent_index" ON public."entitiesAssociation" USING btree ("parentId", "parentType"); + + +-- +-- Name: entityCategories_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "entityCategories_plan_index" ON public."entityCategories" USING btree ("planId"); + + +-- +-- Name: entityCategory_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "entityCategory_plan_index" ON public."entityCategory" USING btree ("planId"); + + +-- +-- Name: entityPrototype_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "entityPrototype_plan_index" ON public."entityPrototype" USING btree ("planId"); + + +-- +-- Name: entityPrototype_refCode_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "entityPrototype_refCode_index" ON public."entityPrototype" USING btree ("refCode"); + + +-- +-- Name: externalData_flow_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "externalData_flow_index" ON public."externalData" USING btree ("flowID", "versionID"); + + +-- +-- Name: externalData_system_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "externalData_system_index" ON public."externalData" USING btree ("systemID"); + + +-- +-- Name: externalReference_flow_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "externalReference_flow_index" ON public."externalReference" USING btree ("flowID", "versionID"); + + +-- +-- Name: externalReference_system_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "externalReference_system_index" ON public."externalReference" USING btree ("systemID"); + + +-- +-- Name: file_record_hash; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX file_record_hash ON public."fileRecord" USING btree (hash); + + +-- +-- Name: file_record_namespace; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX file_record_namespace ON public."fileRecord" USING btree (namespace); + + +-- +-- Name: flowObject_directional_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "flowObject_directional_index" ON public."flowObject" USING btree ("flowID", "objectID", "objectType", "refDirection"); + + +-- +-- Name: flowObject_objectID_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "flowObject_objectID_idx" ON public."flowObject" USING btree ("objectID"); + + +-- +-- Name: flowObject_objectType_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "flowObject_objectType_index" ON public."flowObject" USING btree ("objectType"); + + +-- +-- Name: flowObject_referential_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "flowObject_referential_index" ON public."flowObject" USING btree ("flowID", "versionID", "objectType"); + + +-- +-- Name: flow_object_flow_i_d_object_i_d_object_type_ref_direction; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX flow_object_flow_i_d_object_i_d_object_type_ref_direction ON public."flowObject" USING btree ("flowID", "objectID", "objectType", "refDirection"); + + +-- +-- Name: flow_referential_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX flow_referential_index ON public.flow USING btree (id, "versionID"); + + +-- +-- Name: flow_status_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX flow_status_index ON public.flow USING btree ("deletedAt" NULLS FIRST, "activeStatus" DESC NULLS LAST, restricted NULLS FIRST); + + +-- +-- Name: flow_updated_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX flow_updated_index ON public.flow USING btree ("updatedAt"); + + +-- +-- Name: formLatestVersions; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX "formLatestVersions" ON public."formVersion" USING btree ("isLatest", root) WHERE ("isLatest" = true); + + +-- +-- Name: globalClusterAssociation_globalCluster_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "globalClusterAssociation_globalCluster_index" ON public."globalClusterAssociation" USING btree ("globalClusterId"); + + +-- +-- Name: globalClusterAssociation_governingEntity_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "globalClusterAssociation_governingEntity_index" ON public."globalClusterAssociation" USING btree ("governingEntityId"); + + +-- +-- Name: globalCluster_code_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "globalCluster_code_index" ON public."globalCluster" USING btree (code); + + +-- +-- Name: globalCluster_name_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "globalCluster_name_index" ON public."globalCluster" USING btree (name); + + +-- +-- Name: globalCluster_parent_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "globalCluster_parent_index" ON public."globalCluster" USING btree ("parentId"); + + +-- +-- Name: governingEntityVersion_current_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "governingEntityVersion_current_index" ON public."governingEntityVersion" USING btree ("currentVersion") WHERE ("currentVersion" = true); + + +-- +-- Name: governingEntityVersion_governingEntityId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "governingEntityVersion_governingEntityId_idx" ON public."governingEntityVersion" USING btree ("governingEntityId"); + + +-- +-- Name: governingEntityVersion_latestTagged_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "governingEntityVersion_latestTagged_index" ON public."governingEntityVersion" USING btree ("latestTaggedVersion") WHERE ("latestTaggedVersion" = true); + + +-- +-- Name: governingEntityVersion_latest_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "governingEntityVersion_latest_index" ON public."governingEntityVersion" USING btree ("latestVersion") WHERE ("latestVersion" = true); + + +-- +-- Name: governingEntityVersion_updated_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "governingEntityVersion_updated_index" ON public."governingEntityVersion" USING btree ("updatedAt"); + + +-- +-- Name: governingEntityVersion_versionTags_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "governingEntityVersion_versionTags_index" ON public."governingEntityVersion" USING gin ("versionTags"); + + +-- +-- Name: governingEntity_current_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "governingEntity_current_index" ON public."governingEntity" USING btree ("currentVersion") WHERE ("currentVersion" = true); + + +-- +-- Name: governingEntity_entityPrototypeId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "governingEntity_entityPrototypeId_idx" ON public."governingEntity" USING btree ("entityPrototypeId"); + + +-- +-- Name: governingEntity_entityType_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "governingEntity_entityType_index" ON public."governingEntity" USING btree (((public."entityType"("governingEntity".*))::text)); + + +-- +-- Name: governingEntity_latestTagged_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "governingEntity_latestTagged_index" ON public."governingEntity" USING btree ("latestTaggedVersion") WHERE ("latestTaggedVersion" = true); + + +-- +-- Name: governingEntity_latest_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "governingEntity_latest_index" ON public."governingEntity" USING btree ("latestVersion") WHERE ("latestVersion" = true); + + +-- +-- Name: governingEntity_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "governingEntity_plan_index" ON public."governingEntity" USING btree ("planId"); + + +-- +-- Name: governingEntity_updated_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "governingEntity_updated_index" ON public."governingEntity" USING btree ("updatedAt"); + + +-- +-- Name: governingEntity_versionTags_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "governingEntity_versionTags_index" ON public."governingEntity" USING gin ("versionTags"); + + +-- +-- Name: iatiActivity_iatiPublisherId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "iatiActivity_iatiPublisherId_idx" ON public."iatiActivity" USING btree ("iatiPublisherId"); + + +-- +-- Name: iatiFTSMap_iatiActivityID_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "iatiFTSMap_iatiActivityID_idx" ON public."iatiFTSMap" USING btree ("iatiActivityID"); + + +-- +-- Name: iatiFTSMap_iatiPublisherID_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "iatiFTSMap_iatiPublisherID_idx" ON public."iatiFTSMap" USING btree ("iatiPublisherID"); + + +-- +-- Name: iatiFTSMatch_iatiFTSMapID_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "iatiFTSMatch_iatiFTSMapID_idx" ON public."iatiFTSMatch" USING btree ("iatiFTSMapID"); + + +-- +-- Name: iatiHumanitarianScope_iatiActivityId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "iatiHumanitarianScope_iatiActivityId_idx" ON public."iatiHumanitarianScope" USING btree ("iatiActivityId"); + + +-- +-- Name: iatiParticipatingOrg_iatiActivityId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "iatiParticipatingOrg_iatiActivityId_idx" ON public."iatiParticipatingOrg" USING btree ("iatiActivityId"); + + +-- +-- Name: iatiRecipientCountry_iatiActivityId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "iatiRecipientCountry_iatiActivityId_idx" ON public."iatiRecipientCountry" USING btree ("iatiActivityId"); + + +-- +-- Name: iatiSector_iatiActivityId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "iatiSector_iatiActivityId_idx" ON public."iatiSector" USING btree ("iatiActivityId"); + + +-- +-- Name: iatiTransaction_iatiActivityId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "iatiTransaction_iatiActivityId_idx" ON public."iatiTransaction" USING btree ("iatiActivityId"); + + +-- +-- Name: iatiTransaction_iatiFTSMapId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "iatiTransaction_iatiFTSMapId_idx" ON public."iatiTransaction" USING btree ("iatiFTSMapId"); + + +-- +-- Name: location_iso3_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX location_iso3_index ON public.location USING btree (iso3); + + +-- +-- Name: location_name_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX location_name_index ON public.location USING btree (name); + + +-- +-- Name: location_parentId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "location_parentId_idx" ON public.location USING btree ("parentId"); + + +-- +-- Name: measurementVersion_current_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "measurementVersion_current_index" ON public."measurementVersion" USING btree ("currentVersion") WHERE ("currentVersion" = true); + + +-- +-- Name: measurementVersion_latestTagged_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "measurementVersion_latestTagged_index" ON public."measurementVersion" USING btree ("latestTaggedVersion") WHERE ("latestTaggedVersion" = true); + + +-- +-- Name: measurementVersion_latest_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "measurementVersion_latest_index" ON public."measurementVersion" USING btree ("latestVersion") WHERE ("latestVersion" = true); + + +-- +-- Name: measurementVersion_measurementId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "measurementVersion_measurementId_idx" ON public."measurementVersion" USING btree ("measurementId"); + + +-- +-- Name: measurementVersion_versionTags_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "measurementVersion_versionTags_index" ON public."measurementVersion" USING gin ("versionTags"); + + +-- +-- Name: measurement_attachment_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX measurement_attachment_index ON public.measurement USING btree ("attachmentId"); + + +-- +-- Name: measurement_current_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX measurement_current_index ON public.measurement USING btree ("currentVersion") WHERE ("currentVersion" = true); + + +-- +-- Name: measurement_latestTagged_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "measurement_latestTagged_index" ON public.measurement USING btree ("latestTaggedVersion") WHERE ("latestTaggedVersion" = true); + + +-- +-- Name: measurement_latest_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX measurement_latest_index ON public.measurement USING btree ("latestVersion") WHERE ("latestVersion" = true); + + +-- +-- Name: measurement_planReportingPeriod_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "measurement_planReportingPeriod_index" ON public.measurement USING btree ("planReportingPeriodId"); + + +-- +-- Name: measurement_versionTags_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "measurement_versionTags_index" ON public.measurement USING gin ("versionTags"); + + +-- +-- Name: operationClusterLatestVersions; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX "operationClusterLatestVersions" ON public."operationClusterVersion" USING btree ("isLatest", root) WHERE ("isLatest" = true); + + +-- +-- Name: operationLatestVersions; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX "operationLatestVersions" ON public."operationVersion" USING btree ("isLatest", root) WHERE ("isLatest" = true); + + +-- +-- Name: organizationLocation_locationId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "organizationLocation_locationId_idx" ON public."organizationLocation" USING btree ("locationId"); + + +-- +-- Name: organization_abbreviation_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX organization_abbreviation_index ON public.organization USING btree (abbreviation); + + +-- +-- Name: organization_name_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX organization_name_index ON public.organization USING btree (name); + + +-- +-- Name: organization_nativeName_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "organization_nativeName_index" ON public.organization USING btree ("nativeName"); + + +-- +-- Name: organization_newOrganizationId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "organization_newOrganizationId_idx" ON public.organization USING btree ("newOrganizationId"); + + +-- +-- Name: organization_parent_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX organization_parent_index ON public.organization USING btree ("parentID"); + + +-- +-- Name: parentID; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "parentID" ON public."flowLink" USING btree ("parentID"); + + +-- +-- Name: participantCountry_location_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "participantCountry_location_index" ON public."participantCountry" USING btree ("locationId"); + + +-- +-- Name: participantCountry_participant_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "participantCountry_participant_index" ON public."participantCountry" USING btree ("participantId"); + + +-- +-- Name: participantOrganization_organization_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "participantOrganization_organization_index" ON public."participantOrganization" USING btree ("organizationId"); + + +-- +-- Name: participantOrganization_participant_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "participantOrganization_participant_index" ON public."participantOrganization" USING btree ("participantId"); + + +-- +-- Name: participantRole_object_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "participantRole_object_index" ON public."participantRole" USING btree ("objectId", "objectType"); + + +-- +-- Name: participantRole_participant_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "participantRole_participant_index" ON public."participantRole" USING btree ("participantId"); + + +-- +-- Name: participantRole_permittedAction_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "participantRole_permittedAction_index" ON public."rolePermittedAction" USING btree ("permittedActionId"); + + +-- +-- Name: participantRole_role_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "participantRole_role_index" ON public."participantRole" USING btree ("roleId"); + + +-- +-- Name: participantRole_role_index2; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "participantRole_role_index2" ON public."rolePermittedAction" USING btree ("roleId"); + + +-- +-- Name: participant_hidSub_key; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX "participant_hidSub_key" ON public.participant USING btree ("hidSub"); + + +-- +-- Name: planEmergency_emergencyId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planEmergency_emergencyId_idx" ON public."planEmergency" USING btree ("emergencyId"); + + +-- +-- Name: planEntityVersion_current_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planEntityVersion_current_index" ON public."planEntityVersion" USING btree ("currentVersion") WHERE ("currentVersion" = true); + + +-- +-- Name: planEntityVersion_latestTagged_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planEntityVersion_latestTagged_index" ON public."planEntityVersion" USING btree ("latestTaggedVersion") WHERE ("latestTaggedVersion" = true); + + +-- +-- Name: planEntityVersion_latest_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planEntityVersion_latest_index" ON public."planEntityVersion" USING btree ("latestVersion") WHERE ("latestVersion" = true); + + +-- +-- Name: planEntityVersion_planEntityId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planEntityVersion_planEntityId_idx" ON public."planEntityVersion" USING btree ("planEntityId"); + + +-- +-- Name: planEntityVersion_versionTags_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planEntityVersion_versionTags_index" ON public."planEntityVersion" USING gin ("versionTags"); + + +-- +-- Name: planEntity_current_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planEntity_current_index" ON public."planEntity" USING btree ("currentVersion") WHERE ("currentVersion" = true); + + +-- +-- Name: planEntity_entityPrototypeId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planEntity_entityPrototypeId_idx" ON public."planEntity" USING btree ("entityPrototypeId"); + + +-- +-- Name: planEntity_latestTagged_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planEntity_latestTagged_index" ON public."planEntity" USING btree ("latestTaggedVersion") WHERE ("latestTaggedVersion" = true); + + +-- +-- Name: planEntity_latest_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planEntity_latest_index" ON public."planEntity" USING btree ("latestVersion") WHERE ("latestVersion" = true); + + +-- +-- Name: planEntity_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planEntity_plan_index" ON public."planEntity" USING btree ("planId"); + + +-- +-- Name: planEntity_versionTags_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planEntity_versionTags_index" ON public."planEntity" USING gin ("versionTags"); + + +-- +-- Name: planLocation_current_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planLocation_current_index" ON public."planLocation" USING btree ("currentVersion") WHERE ("currentVersion" = true); + + +-- +-- Name: planLocation_latestTagged_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planLocation_latestTagged_index" ON public."planLocation" USING btree ("latestTaggedVersion") WHERE ("latestTaggedVersion" = true); + + +-- +-- Name: planLocation_latest_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planLocation_latest_index" ON public."planLocation" USING btree ("latestVersion") WHERE ("latestVersion" = true); + + +-- +-- Name: planLocation_location_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planLocation_location_index" ON public."planLocation" USING btree ("locationId"); + + +-- +-- Name: planLocation_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planLocation_plan_index" ON public."planLocation" USING btree ("planId"); + + +-- +-- Name: planLocation_versionTags_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planLocation_versionTags_index" ON public."planLocation" USING gin ("versionTags"); + + +-- +-- Name: planReportingPeriod_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planReportingPeriod_plan_index" ON public."planReportingPeriod" USING btree ("planId"); + + +-- +-- Name: planTag_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planTag_plan_index" ON public."planTag" USING btree ("planId"); + + +-- +-- Name: planTag_public_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planTag_public_index" ON public."planTag" USING btree (public); + + +-- +-- Name: planVersion_current_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planVersion_current_index" ON public."planVersion" USING btree ("currentVersion") WHERE ("currentVersion" = true); + + +-- +-- Name: planVersion_latestTagged_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planVersion_latestTagged_index" ON public."planVersion" USING btree ("latestTaggedVersion") WHERE ("latestTaggedVersion" = true); + + +-- +-- Name: planVersion_latest_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planVersion_latest_index" ON public."planVersion" USING btree ("latestVersion") WHERE ("latestVersion" = true); + + +-- +-- Name: planVersion_name_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planVersion_name_index" ON public."planVersion" USING btree (name); + + +-- +-- Name: planVersion_planReportingPeriod_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planVersion_planReportingPeriod_index" ON public."planVersion" USING btree ("currentReportingPeriodId"); + + +-- +-- Name: planVersion_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planVersion_plan_index" ON public."planVersion" USING btree ("planId"); + + +-- +-- Name: planVersion_versionTags_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planVersion_versionTags_index" ON public."planVersion" USING gin ("versionTags"); + + +-- +-- Name: planYear_current_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planYear_current_index" ON public."planYear" USING btree ("currentVersion") WHERE ("currentVersion" = true); + + +-- +-- Name: planYear_latestTagged_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planYear_latestTagged_index" ON public."planYear" USING btree ("latestTaggedVersion") WHERE ("latestTaggedVersion" = true); + + +-- +-- Name: planYear_latest_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planYear_latest_index" ON public."planYear" USING btree ("latestVersion") WHERE ("latestVersion" = true); + + +-- +-- Name: planYear_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planYear_plan_index" ON public."planYear" USING btree ("planId"); + + +-- +-- Name: planYear_usageYear_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planYear_usageYear_index" ON public."planYear" USING btree ("usageYearId"); + + +-- +-- Name: planYear_versionTags_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "planYear_versionTags_index" ON public."planYear" USING gin ("versionTags"); + + +-- +-- Name: procedureEntityPrototype_entityPrototype_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "procedureEntityPrototype_entityPrototype_index" ON public."procedureEntityPrototype" USING btree ("entityPrototypeId"); + + +-- +-- Name: procedureEntityPrototype_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "procedureEntityPrototype_plan_index" ON public."procedureEntityPrototype" USING btree ("planId"); + + +-- +-- Name: procedureSectionField_conditionField_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "procedureSectionField_conditionField_index" ON public."procedureSectionField" USING btree ("conditionFieldId"); + + +-- +-- Name: procedureSectionField_procedureSection_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "procedureSectionField_procedureSection_index" ON public."procedureSectionField" USING btree ("procedureSectionId"); + + +-- +-- Name: procedureSection_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "procedureSection_plan_index" ON public."procedureSection" USING btree ("planId"); + + +-- +-- Name: projectAttachment_attachment_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectAttachment_attachment_index" ON public."projectVersionAttachment" USING btree ("attachmentId"); + + +-- +-- Name: projectAttachment_projectVersion_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectAttachment_projectVersion_index" ON public."projectVersionAttachment" USING btree ("projectVersionId"); + + +-- +-- Name: projectContact_participantId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectContact_participantId_idx" ON public."projectContact" USING btree ("participantId"); + + +-- +-- Name: projectContact_projectVersionId_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectContact_projectVersionId_index" ON public."projectContact" USING btree ("projectVersionId"); + + +-- +-- Name: projectField_value_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectField_value_index" ON public."projectVersionField" USING gin (to_tsvector('english'::regconfig, value)); + + +-- +-- Name: projectGlobalClusters_globalClusterId_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectGlobalClusters_globalClusterId_index" ON public."projectGlobalClusters" USING btree ("globalClusterId"); + + +-- +-- Name: projectGlobalClusters_projectVersionId_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectGlobalClusters_projectVersionId_index" ON public."projectGlobalClusters" USING btree ("projectVersionId"); + + +-- +-- Name: projectGoverningEntities_governingEntityId_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectGoverningEntities_governingEntityId_index" ON public."projectVersionGoverningEntity" USING btree ("governingEntityId"); + + +-- +-- Name: projectGoverningEntities_projectVersionId_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectGoverningEntities_projectVersionId_index" ON public."projectVersionGoverningEntity" USING btree ("projectVersionId"); + + +-- +-- Name: projectLocations_locationId_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectLocations_locationId_index" ON public."projectLocations" USING btree ("locationId"); + + +-- +-- Name: projectLocations_projectVersionId_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectLocations_projectVersionId_index" ON public."projectLocations" USING btree ("projectVersionId"); + + +-- +-- Name: projectOrganizations_organizationId_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectOrganizations_organizationId_index" ON public."projectVersionOrganization" USING btree ("organizationId"); + + +-- +-- Name: projectOrganizations_projectVersionId_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectOrganizations_projectVersionId_index" ON public."projectVersionOrganization" USING btree ("projectVersionId"); + + +-- +-- Name: projectPlans_planId_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectPlans_planId_index" ON public."projectVersionPlan" USING btree ("planId"); + + +-- +-- Name: projectPlans_projectVersionId_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectPlans_projectVersionId_index" ON public."projectVersionPlan" USING btree ("projectVersionId"); + + +-- +-- Name: projectPlans_projectVersionId_planId_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectPlans_projectVersionId_planId_index" ON public."projectVersionPlan" USING btree ("planId", "projectVersionId"); + + +-- +-- Name: projectVersionAttachment_attachmentVersionId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectVersionAttachment_attachmentVersionId_idx" ON public."projectVersionAttachment" USING btree ("attachmentVersionId"); + + +-- +-- Name: projectVersionComment_participantId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectVersionComment_participantId_idx" ON public."projectVersionComment" USING btree ("participantId"); + + +-- +-- Name: projectVersionComment_projectVersionPlanId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectVersionComment_projectVersionPlanId_idx" ON public."projectVersionComment" USING btree ("projectVersionPlanId"); + + +-- +-- Name: projectVersionGoverningEntity_governingEntityVersionId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectVersionGoverningEntity_governingEntityVersionId_idx" ON public."projectVersionGoverningEntity" USING btree ("governingEntityVersionId"); + + +-- +-- Name: projectVersionPlanEntity_planEntityId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectVersionPlanEntity_planEntityId_idx" ON public."projectVersionPlanEntity" USING btree ("planEntityId"); + + +-- +-- Name: projectVersionPlanEntity_planEntityVersionId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectVersionPlanEntity_planEntityVersionId_idx" ON public."projectVersionPlanEntity" USING btree ("planEntityVersionId"); + + +-- +-- Name: projectVersionPlan_id_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectVersionPlan_id_idx" ON public."projectVersionPlan" USING btree (id); + + +-- +-- Name: projectVersionPlan_workflowStatusOptionId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectVersionPlan_workflowStatusOptionId_idx" ON public."projectVersionPlan" USING btree ("workflowStatusOptionId"); + + +-- +-- Name: projectVersion_startDate_endDate_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "projectVersion_startDate_endDate_index" ON public."projectVersion" USING btree ("startDate", "endDate"); + + +-- +-- Name: projectVersion_version_projectId_key; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX "projectVersion_version_projectId_key" ON public."projectVersion" USING btree (version, "projectId"); + + +-- +-- Name: project_code_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX project_code_index ON public.project USING btree (code); + + +-- +-- Name: project_creatorParticipant_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "project_creatorParticipant_index" ON public.project USING btree ("creatorParticipantId"); + + +-- +-- Name: project_currentPublishedVersion_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "project_currentPublishedVersion_index" ON public.project USING btree ("currentPublishedVersionId"); + + +-- +-- Name: project_latestVersion_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "project_latestVersion_index" ON public.project USING btree ("latestVersionId"); + + +-- +-- Name: projectversion_name_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX projectversion_name_index ON public."projectVersion" USING btree (name); + + +-- +-- Name: projectversion_project_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX projectversion_project_index ON public."projectVersion" USING btree ("projectId"); + + +-- +-- Name: projectversionfield_conditionfieldid_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX projectversionfield_conditionfieldid_idx ON public."projectVersionField" USING btree ("conditionFieldId"); + + +-- +-- Name: projectversionfield_projectversionplanid_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX projectversionfield_projectversionplanid_idx ON public."projectVersionField" USING btree ("projectVersionPlanId"); + + +-- +-- Name: reportDetail_flow_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "reportDetail_flow_index" ON public."reportDetail" USING btree ("flowID", "versionID"); + + +-- +-- Name: reportDetail_organizationID_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "reportDetail_organizationID_idx" ON public."reportDetail" USING btree ("organizationID"); + + +-- +-- Name: reportFile_fileAsset_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "reportFile_fileAsset_index" ON public."reportFile" USING btree ("fileAssetID"); + + +-- +-- Name: reportFile_report_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "reportFile_report_index" ON public."reportFile" USING btree ("reportID"); + + +-- +-- Name: reportingWindowAssignmentLatestVersions; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX "reportingWindowAssignmentLatestVersions" ON public."reportingWindowAssignmentVersion" USING btree ("isLatest", root) WHERE ("isLatest" = true); + + +-- +-- Name: reportingWindowLatestVersions; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX "reportingWindowLatestVersions" ON public."reportingWindowVersion" USING btree ("isLatest", root) WHERE ("isLatest" = true); + + +-- +-- Name: roleAuthenticationKey_roleId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "roleAuthenticationKey_roleId_idx" ON public."roleAuthenticationKey" USING btree ("roleId"); + + +-- +-- Name: role_name_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX role_name_index ON public.role USING btree (name); + + +-- +-- Name: unit_unitTypeId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "unit_unitTypeId_idx" ON public.unit USING btree ("unitTypeId"); + + +-- +-- Name: upper_case_category_name; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX upper_case_category_name ON public.category USING btree (lower((name)::text)); + + +-- +-- Name: workflowRole_role_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "workflowRole_role_index" ON public."workflowRole" USING btree ("roleId"); + + +-- +-- Name: workflowStatusOptionStep_toId_idx; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "workflowStatusOptionStep_toId_idx" ON public."workflowStatusOptionStep" USING btree ("toId"); + + +-- +-- Name: workflowStatusOption_plan_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX "workflowStatusOption_plan_index" ON public."workflowStatusOption" USING btree ("planId"); + + +-- +-- Name: attachmentPrototype attachmentPrototype_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."attachmentPrototype" + ADD CONSTRAINT "attachmentPrototype_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id) ON DELETE CASCADE; + + +-- +-- Name: attachmentVersion attachmentVersion_attachmentId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."attachmentVersion" + ADD CONSTRAINT "attachmentVersion_attachmentId_fkey" FOREIGN KEY ("attachmentId") REFERENCES public.attachment(id); + + +-- +-- Name: attachment attachment_attachmentPrototypeId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.attachment + ADD CONSTRAINT "attachment_attachmentPrototypeId_fkey" FOREIGN KEY ("attachmentPrototypeId") REFERENCES public."attachmentPrototype"(id) ON UPDATE CASCADE ON DELETE SET NULL; + + +-- +-- Name: attachment attachment_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.attachment + ADD CONSTRAINT "attachment_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id); + + +-- +-- Name: authGrantLog authGrantLog_actor_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authGrantLog" + ADD CONSTRAINT "authGrantLog_actor_fkey" FOREIGN KEY (actor) REFERENCES public.participant(id); + + +-- +-- Name: authGrantLog authGrantLog_grantee_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authGrantLog" + ADD CONSTRAINT "authGrantLog_grantee_fkey" FOREIGN KEY (grantee) REFERENCES public."authGrantee"(id); + + +-- +-- Name: authGrantLog authGrantLog_target_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authGrantLog" + ADD CONSTRAINT "authGrantLog_target_fkey" FOREIGN KEY (target) REFERENCES public."authTarget"(id); + + +-- +-- Name: authGrant authGrant_grantee_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authGrant" + ADD CONSTRAINT "authGrant_grantee_fkey" FOREIGN KEY (grantee) REFERENCES public."authGrantee"(id) ON UPDATE CASCADE; + + +-- +-- Name: authGrant authGrant_target_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authGrant" + ADD CONSTRAINT "authGrant_target_fkey" FOREIGN KEY (target) REFERENCES public."authTarget"(id) ON UPDATE CASCADE; + + +-- +-- Name: authInvite authInvite_actor_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authInvite" + ADD CONSTRAINT "authInvite_actor_fkey" FOREIGN KEY (actor) REFERENCES public.participant(id); + + +-- +-- Name: authInvite authInvite_target_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authInvite" + ADD CONSTRAINT "authInvite_target_fkey" FOREIGN KEY (target) REFERENCES public."authTarget"(id); + + +-- +-- Name: authToken authToken_participant_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."authToken" + ADD CONSTRAINT "authToken_participant_fkey" FOREIGN KEY (participant) REFERENCES public.participant(id); + + +-- +-- Name: budgetSegmentBreakdownEntity budgetSegmentBreakdownEntity_budgetSegmentBreakdownId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."budgetSegmentBreakdownEntity" + ADD CONSTRAINT "budgetSegmentBreakdownEntity_budgetSegmentBreakdownId_fkey" FOREIGN KEY ("budgetSegmentBreakdownId") REFERENCES public."budgetSegmentBreakdown"(id) ON DELETE CASCADE; + + +-- +-- Name: budgetSegmentBreakdown budgetSegmentBreakdown_budgetSegmentId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."budgetSegmentBreakdown" + ADD CONSTRAINT "budgetSegmentBreakdown_budgetSegmentId_fkey" FOREIGN KEY ("budgetSegmentId") REFERENCES public."budgetSegment"(id) ON DELETE CASCADE; + + +-- +-- Name: budgetSegment budgetSegment_projectVersionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."budgetSegment" + ADD CONSTRAINT "budgetSegment_projectVersionId_fkey" FOREIGN KEY ("projectVersionId") REFERENCES public."projectVersion"(id) ON DELETE CASCADE; + + +-- +-- Name: categoryLegacy categoryLegacy_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."categoryLegacy" + ADD CONSTRAINT "categoryLegacy_group_fkey" FOREIGN KEY ("group") REFERENCES public."categoryGroup"(type) DEFERRABLE; + + +-- +-- Name: categoryLegacy categoryLegacy_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."categoryLegacy" + ADD CONSTRAINT "categoryLegacy_id_fkey" FOREIGN KEY (id) REFERENCES public.category(id) ON UPDATE CASCADE ON DELETE SET NULL; + + +-- +-- Name: categoryRef categoryRef_categoryID_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."categoryRef" + ADD CONSTRAINT "categoryRef_categoryID_fkey" FOREIGN KEY ("categoryID") REFERENCES public.category(id) ON DELETE CASCADE; + + +-- +-- Name: category category_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.category + ADD CONSTRAINT category_group_fkey FOREIGN KEY ("group") REFERENCES public."categoryGroup"(type) ON UPDATE CASCADE DEFERRABLE; + + +-- +-- Name: category category_parentID_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.category + ADD CONSTRAINT "category_parentID_fkey" FOREIGN KEY ("parentID") REFERENCES public.category(id) ON UPDATE CASCADE; + + +-- +-- Name: conditionFieldReliesOn conditionFieldReliesOn_reliedOnById_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."conditionFieldReliesOn" + ADD CONSTRAINT "conditionFieldReliesOn_reliedOnById_fkey" FOREIGN KEY ("reliedOnById") REFERENCES public."conditionField"(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: conditionFieldReliesOn conditionFieldReliesOn_reliesOnId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."conditionFieldReliesOn" + ADD CONSTRAINT "conditionFieldReliesOn_reliesOnId_fkey" FOREIGN KEY ("reliesOnId") REFERENCES public."conditionField"(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: conditionField conditionField_fieldType_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."conditionField" + ADD CONSTRAINT "conditionField_fieldType_fkey" FOREIGN KEY ("fieldType") REFERENCES public."conditionFieldType"(type) ON UPDATE CASCADE DEFERRABLE; + + +-- +-- Name: conditionField conditionField_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."conditionField" + ADD CONSTRAINT "conditionField_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: disaggregationCategoryGroup disaggregationCategoryGroup_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."disaggregationCategoryGroup" + ADD CONSTRAINT "disaggregationCategoryGroup_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id) ON DELETE CASCADE; + + +-- +-- Name: disaggregationCategoryGroup disaggregationCategoryGroup_unitTypeId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."disaggregationCategoryGroup" + ADD CONSTRAINT "disaggregationCategoryGroup_unitTypeId_fkey" FOREIGN KEY ("unitTypeId") REFERENCES public."unitType"(id) ON UPDATE CASCADE ON DELETE SET NULL; + + +-- +-- Name: disaggregationCategory disaggregationCategory_disaggregationCategoryGroupId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."disaggregationCategory" + ADD CONSTRAINT "disaggregationCategory_disaggregationCategoryGroupId_fkey" FOREIGN KEY ("disaggregationCategoryGroupId") REFERENCES public."disaggregationCategoryGroup"(id) ON UPDATE CASCADE ON DELETE SET NULL; + + +-- +-- Name: disaggregationModel disaggregationModel_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."disaggregationModel" + ADD CONSTRAINT "disaggregationModel_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id) ON DELETE CASCADE; + + +-- +-- Name: emergencyLocation emergencyLocation_emergencyId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."emergencyLocation" + ADD CONSTRAINT "emergencyLocation_emergencyId_fkey" FOREIGN KEY ("emergencyId") REFERENCES public.emergency(id) ON DELETE CASCADE; + + +-- +-- Name: emergencyLocation emergencyLocation_locationId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."emergencyLocation" + ADD CONSTRAINT "emergencyLocation_locationId_fkey" FOREIGN KEY ("locationId") REFERENCES public.location(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: endpointLog endpointLog_participantId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."endpointLog" + ADD CONSTRAINT "endpointLog_participantId_fkey" FOREIGN KEY ("participantId") REFERENCES public.participant(id) ON DELETE CASCADE; + + +-- +-- Name: entityPrototype entityPrototype_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."entityPrototype" + ADD CONSTRAINT "entityPrototype_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id) ON DELETE CASCADE; + + +-- +-- Name: flowObject flowObject_objectType_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."flowObject" + ADD CONSTRAINT "flowObject_objectType_fkey" FOREIGN KEY ("objectType") REFERENCES public."flowObjectType"(type) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE; + + +-- +-- Name: formVersion formVersion_modifiedBy_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."formVersion" + ADD CONSTRAINT "formVersion_modifiedBy_fkey" FOREIGN KEY ("modifiedBy") REFERENCES public.participant(id); + + +-- +-- Name: formVersion formVersion_root_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."formVersion" + ADD CONSTRAINT "formVersion_root_fkey" FOREIGN KEY (root) REFERENCES public.form(id); + + +-- +-- Name: projectVersionComment fulfillmentComment_participantId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionComment" + ADD CONSTRAINT "fulfillmentComment_participantId_fkey" FOREIGN KEY ("participantId") REFERENCES public.participant(id); + + +-- +-- Name: globalClusterAssociation globalClusterAssociation_globalClusterId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."globalClusterAssociation" + ADD CONSTRAINT "globalClusterAssociation_globalClusterId_fkey" FOREIGN KEY ("globalClusterId") REFERENCES public."globalCluster"(id) ON UPDATE CASCADE; + + +-- +-- Name: globalClusterAssociation globalClusterAssociation_governingEntityId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."globalClusterAssociation" + ADD CONSTRAINT "globalClusterAssociation_governingEntityId_fkey" FOREIGN KEY ("governingEntityId") REFERENCES public."governingEntity"(id) ON UPDATE CASCADE; + + +-- +-- Name: governingEntityVersion governingEntityVersion_governingEntityId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."governingEntityVersion" + ADD CONSTRAINT "governingEntityVersion_governingEntityId_fkey" FOREIGN KEY ("governingEntityId") REFERENCES public."governingEntity"(id); + + +-- +-- Name: governingEntity governingEntity_entityPrototypeId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."governingEntity" + ADD CONSTRAINT "governingEntity_entityPrototypeId_fkey" FOREIGN KEY ("entityPrototypeId") REFERENCES public."entityPrototype"(id) ON UPDATE CASCADE ON DELETE SET NULL; + + +-- +-- Name: governingEntity governingEntity_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."governingEntity" + ADD CONSTRAINT "governingEntity_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id) ON DELETE CASCADE; + + +-- +-- Name: iatiActivity iatiActivity_iatiPublisherId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiActivity" + ADD CONSTRAINT "iatiActivity_iatiPublisherId_fkey" FOREIGN KEY ("iatiPublisherId") REFERENCES public."iatiPublisher"(id); + + +-- +-- Name: iatiFTSMap iatiFTSMap_iatiActivityID_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiFTSMap" + ADD CONSTRAINT "iatiFTSMap_iatiActivityID_fkey" FOREIGN KEY ("iatiActivityID") REFERENCES public."iatiActivity"(id); + + +-- +-- Name: iatiFTSMap iatiFTSMap_iatiPublisherID_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiFTSMap" + ADD CONSTRAINT "iatiFTSMap_iatiPublisherID_fkey" FOREIGN KEY ("iatiPublisherID") REFERENCES public."iatiPublisher"(id); + + +-- +-- Name: iatiFTSMatch iatiFTSMatch_iatiFTSMapID_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiFTSMatch" + ADD CONSTRAINT "iatiFTSMatch_iatiFTSMapID_fkey" FOREIGN KEY ("iatiFTSMapID") REFERENCES public."iatiFTSMap"(id); + + +-- +-- Name: iatiHumanitarianScope iatiHumanitarianScope_iatiActivityId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiHumanitarianScope" + ADD CONSTRAINT "iatiHumanitarianScope_iatiActivityId_fkey" FOREIGN KEY ("iatiActivityId") REFERENCES public."iatiActivity"(id); + + +-- +-- Name: iatiParticipatingOrg iatiParticipatingOrg_iatiActivityId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiParticipatingOrg" + ADD CONSTRAINT "iatiParticipatingOrg_iatiActivityId_fkey" FOREIGN KEY ("iatiActivityId") REFERENCES public."iatiActivity"(id); + + +-- +-- Name: iatiRecipientCountry iatiRecipientCountry_iatiActivityId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiRecipientCountry" + ADD CONSTRAINT "iatiRecipientCountry_iatiActivityId_fkey" FOREIGN KEY ("iatiActivityId") REFERENCES public."iatiActivity"(id); + + +-- +-- Name: iatiSector iatiSector_iatiActivityId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiSector" + ADD CONSTRAINT "iatiSector_iatiActivityId_fkey" FOREIGN KEY ("iatiActivityId") REFERENCES public."iatiActivity"(id); + + +-- +-- Name: iatiTransaction iatiTransaction_iatiActivityId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiTransaction" + ADD CONSTRAINT "iatiTransaction_iatiActivityId_fkey" FOREIGN KEY ("iatiActivityId") REFERENCES public."iatiActivity"(id); + + +-- +-- Name: iatiTransaction iatiTransaction_iatiFTSMapId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."iatiTransaction" + ADD CONSTRAINT "iatiTransaction_iatiFTSMapId_fkey" FOREIGN KEY ("iatiFTSMapId") REFERENCES public."iatiFTSMap"(id); + + +-- +-- Name: jobAssociation jobAssociation_jobId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."jobAssociation" + ADD CONSTRAINT "jobAssociation_jobId_fkey" FOREIGN KEY ("jobId") REFERENCES public.job(id); + + +-- +-- Name: legacy legacy_objectType_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.legacy + ADD CONSTRAINT "legacy_objectType_fkey" FOREIGN KEY ("objectType") REFERENCES public."flowObjectType"(type) DEFERRABLE; + + +-- +-- Name: location location_parentId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.location + ADD CONSTRAINT "location_parentId_fkey" FOREIGN KEY ("parentId") REFERENCES public.location(id) ON UPDATE CASCADE ON DELETE SET NULL; + + +-- +-- Name: measurementVersion measurementVersion_measurementId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."measurementVersion" + ADD CONSTRAINT "measurementVersion_measurementId_fkey" FOREIGN KEY ("measurementId") REFERENCES public.measurement(id) ON DELETE CASCADE; + + +-- +-- Name: measurement measurement_attachmentId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.measurement + ADD CONSTRAINT "measurement_attachmentId_fkey" FOREIGN KEY ("attachmentId") REFERENCES public.attachment(id) ON DELETE CASCADE; + + +-- +-- Name: measurement measurement_planReportingPeriodId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.measurement + ADD CONSTRAINT "measurement_planReportingPeriodId_fkey" FOREIGN KEY ("planReportingPeriodId") REFERENCES public."planReportingPeriod"(id) ON DELETE CASCADE; + + +-- +-- Name: objectExclude objectExclude_objectType_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."objectExclude" + ADD CONSTRAINT "objectExclude_objectType_fkey" FOREIGN KEY ("objectType") REFERENCES public."flowObjectType"(type) DEFERRABLE; + + +-- +-- Name: operationClusterVersion operationClusterVersion_modifiedBy_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."operationClusterVersion" + ADD CONSTRAINT "operationClusterVersion_modifiedBy_fkey" FOREIGN KEY ("modifiedBy") REFERENCES public.participant(id); + + +-- +-- Name: operationClusterVersion operationClusterVersion_root_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."operationClusterVersion" + ADD CONSTRAINT "operationClusterVersion_root_fkey" FOREIGN KEY (root) REFERENCES public."operationCluster"(id); + + +-- +-- Name: operationVersion operationVersion_modifiedBy_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."operationVersion" + ADD CONSTRAINT "operationVersion_modifiedBy_fkey" FOREIGN KEY ("modifiedBy") REFERENCES public.participant(id); + + +-- +-- Name: operationVersion operationVersion_root_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."operationVersion" + ADD CONSTRAINT "operationVersion_root_fkey" FOREIGN KEY (root) REFERENCES public.operation(id); + + +-- +-- Name: organizationLocation organizationLocation_locationId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."organizationLocation" + ADD CONSTRAINT "organizationLocation_locationId_fkey" FOREIGN KEY ("locationId") REFERENCES public.location(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: organizationLocation organizationLocation_organizationId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."organizationLocation" + ADD CONSTRAINT "organizationLocation_organizationId_fkey" FOREIGN KEY ("organizationId") REFERENCES public.organization(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: organization organization_newOrganizationId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.organization + ADD CONSTRAINT "organization_newOrganizationId_fkey" FOREIGN KEY ("newOrganizationId") REFERENCES public.organization(id); + + +-- +-- Name: participantCountry participantCountry_locationId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."participantCountry" + ADD CONSTRAINT "participantCountry_locationId_fkey" FOREIGN KEY ("locationId") REFERENCES public.location(id); + + +-- +-- Name: participantCountry participantCountry_participantId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."participantCountry" + ADD CONSTRAINT "participantCountry_participantId_fkey" FOREIGN KEY ("participantId") REFERENCES public.participant(id) ON DELETE CASCADE; + + +-- +-- Name: participantOrganization participantOrganization_organizationId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."participantOrganization" + ADD CONSTRAINT "participantOrganization_organizationId_fkey" FOREIGN KEY ("organizationId") REFERENCES public.organization(id); + + +-- +-- Name: participantOrganization participantOrganization_participantId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."participantOrganization" + ADD CONSTRAINT "participantOrganization_participantId_fkey" FOREIGN KEY ("participantId") REFERENCES public.participant(id) ON DELETE CASCADE; + + +-- +-- Name: participantRole participantRole_participantId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."participantRole" + ADD CONSTRAINT "participantRole_participantId_fkey" FOREIGN KEY ("participantId") REFERENCES public.participant(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: participantRole participantRole_roleId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."participantRole" + ADD CONSTRAINT "participantRole_roleId_fkey" FOREIGN KEY ("roleId") REFERENCES public.role(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: planEmergency planEmergency_emergencyId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planEmergency" + ADD CONSTRAINT "planEmergency_emergencyId_fkey" FOREIGN KEY ("emergencyId") REFERENCES public.emergency(id) ON DELETE CASCADE; + + +-- +-- Name: planEmergency planEmergency_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planEmergency" + ADD CONSTRAINT "planEmergency_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: planEntityVersion planEntityVersion_planEntityId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planEntityVersion" + ADD CONSTRAINT "planEntityVersion_planEntityId_fkey" FOREIGN KEY ("planEntityId") REFERENCES public."planEntity"(id); + + +-- +-- Name: planEntity planEntity_entityPrototypeId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planEntity" + ADD CONSTRAINT "planEntity_entityPrototypeId_fkey" FOREIGN KEY ("entityPrototypeId") REFERENCES public."entityPrototype"(id) ON UPDATE CASCADE ON DELETE SET NULL; + + +-- +-- Name: planEntity planEntity_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planEntity" + ADD CONSTRAINT "planEntity_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id) ON DELETE CASCADE; + + +-- +-- Name: planLocation planLocation_locationId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planLocation" + ADD CONSTRAINT "planLocation_locationId_fkey" FOREIGN KEY ("locationId") REFERENCES public.location(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: planLocation planLocation_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planLocation" + ADD CONSTRAINT "planLocation_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: planReportingPeriod planReportingPeriod_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planReportingPeriod" + ADD CONSTRAINT "planReportingPeriod_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id) ON DELETE CASCADE; + + +-- +-- Name: planTag planTag_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planTag" + ADD CONSTRAINT "planTag_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id); + + +-- +-- Name: planVersion planVersion_currentReportingPeriodId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planVersion" + ADD CONSTRAINT "planVersion_currentReportingPeriodId_fkey" FOREIGN KEY ("currentReportingPeriodId") REFERENCES public."planReportingPeriod"(id); + + +-- +-- Name: planVersion planVersion_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planVersion" + ADD CONSTRAINT "planVersion_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id); + + +-- +-- Name: planYear planYear_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planYear" + ADD CONSTRAINT "planYear_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: planYear planYear_usageYearId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."planYear" + ADD CONSTRAINT "planYear_usageYearId_fkey" FOREIGN KEY ("usageYearId") REFERENCES public."usageYear"(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: procedureEntityPrototype procedureEntityPrototype_entityPrototypeId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."procedureEntityPrototype" + ADD CONSTRAINT "procedureEntityPrototype_entityPrototypeId_fkey" FOREIGN KEY ("entityPrototypeId") REFERENCES public."entityPrototype"(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: procedureEntityPrototype procedureEntityPrototype_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."procedureEntityPrototype" + ADD CONSTRAINT "procedureEntityPrototype_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: procedureSectionField procedureSectionField_conditionFieldId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."procedureSectionField" + ADD CONSTRAINT "procedureSectionField_conditionFieldId_fkey" FOREIGN KEY ("conditionFieldId") REFERENCES public."conditionField"(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: procedureSectionField procedureSectionField_procedureSectionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."procedureSectionField" + ADD CONSTRAINT "procedureSectionField_procedureSectionId_fkey" FOREIGN KEY ("procedureSectionId") REFERENCES public."procedureSection"(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: procedureSection procedureSection_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."procedureSection" + ADD CONSTRAINT "procedureSection_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: projectVersionAttachment projectAttachment_attachmentId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionAttachment" + ADD CONSTRAINT "projectAttachment_attachmentId_fkey" FOREIGN KEY ("attachmentId") REFERENCES public.attachment(id) ON DELETE CASCADE; + + +-- +-- Name: projectVersionAttachment projectAttachment_projectVersionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionAttachment" + ADD CONSTRAINT "projectAttachment_projectVersionId_fkey" FOREIGN KEY ("projectVersionId") REFERENCES public."projectVersion"(id) ON DELETE CASCADE; + + +-- +-- Name: projectContact projectContact_participantId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectContact" + ADD CONSTRAINT "projectContact_participantId_fkey" FOREIGN KEY ("participantId") REFERENCES public.participant(id) ON UPDATE CASCADE; + + +-- +-- Name: projectContact projectContact_projectVersionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectContact" + ADD CONSTRAINT "projectContact_projectVersionId_fkey" FOREIGN KEY ("projectVersionId") REFERENCES public."projectVersion"(id) ON DELETE CASCADE; + + +-- +-- Name: projectVersionField projectField_conditionFieldId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionField" + ADD CONSTRAINT "projectField_conditionFieldId_fkey" FOREIGN KEY ("conditionFieldId") REFERENCES public."conditionField"(id) ON UPDATE CASCADE ON DELETE RESTRICT; + + +-- +-- Name: projectGlobalClusters projectGlobalClusters_globalClusterId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectGlobalClusters" + ADD CONSTRAINT "projectGlobalClusters_globalClusterId_fkey" FOREIGN KEY ("globalClusterId") REFERENCES public."globalCluster"(id) ON DELETE CASCADE; + + +-- +-- Name: projectGlobalClusters projectGlobalClusters_projectVersionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectGlobalClusters" + ADD CONSTRAINT "projectGlobalClusters_projectVersionId_fkey" FOREIGN KEY ("projectVersionId") REFERENCES public."projectVersion"(id) ON DELETE CASCADE; + + +-- +-- Name: projectVersionGoverningEntity projectGoverningEntities_governingEntityId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionGoverningEntity" + ADD CONSTRAINT "projectGoverningEntities_governingEntityId_fkey" FOREIGN KEY ("governingEntityId") REFERENCES public."governingEntity"(id) ON DELETE CASCADE; + + +-- +-- Name: projectVersionGoverningEntity projectGoverningEntities_projectVersionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionGoverningEntity" + ADD CONSTRAINT "projectGoverningEntities_projectVersionId_fkey" FOREIGN KEY ("projectVersionId") REFERENCES public."projectVersion"(id) ON DELETE CASCADE; + + +-- +-- Name: projectLocations projectLocations_locationId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectLocations" + ADD CONSTRAINT "projectLocations_locationId_fkey" FOREIGN KEY ("locationId") REFERENCES public.location(id) ON DELETE CASCADE; + + +-- +-- Name: projectLocations projectLocations_projectVersionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectLocations" + ADD CONSTRAINT "projectLocations_projectVersionId_fkey" FOREIGN KEY ("projectVersionId") REFERENCES public."projectVersion"(id) ON DELETE CASCADE; + + +-- +-- Name: projectVersionOrganization projectOrganizations_organizationId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionOrganization" + ADD CONSTRAINT "projectOrganizations_organizationId_fkey" FOREIGN KEY ("organizationId") REFERENCES public.organization(id) ON DELETE CASCADE; + + +-- +-- Name: projectVersionOrganization projectOrganizations_projectVersionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionOrganization" + ADD CONSTRAINT "projectOrganizations_projectVersionId_fkey" FOREIGN KEY ("projectVersionId") REFERENCES public."projectVersion"(id) ON DELETE CASCADE; + + +-- +-- Name: projectVersionPlanEntity projectPlanEntities_planEntityId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionPlanEntity" + ADD CONSTRAINT "projectPlanEntities_planEntityId_fkey" FOREIGN KEY ("planEntityId") REFERENCES public."planEntity"(id) ON DELETE CASCADE; + + +-- +-- Name: projectVersionPlanEntity projectPlanEntities_projectVersionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionPlanEntity" + ADD CONSTRAINT "projectPlanEntities_projectVersionId_fkey" FOREIGN KEY ("projectVersionId") REFERENCES public."projectVersion"(id) ON DELETE CASCADE; + + +-- +-- Name: projectVersionAttachment projectVersionAttachment_attachmentVersionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionAttachment" + ADD CONSTRAINT "projectVersionAttachment_attachmentVersionId_fkey" FOREIGN KEY ("attachmentVersionId") REFERENCES public."attachmentVersion"(id) ON DELETE CASCADE; + + +-- +-- Name: projectVersionComment projectVersionComment_projectVersionPlanId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionComment" + ADD CONSTRAINT "projectVersionComment_projectVersionPlanId_fkey" FOREIGN KEY ("projectVersionPlanId") REFERENCES public."projectVersionPlan"(id) ON DELETE CASCADE; + + +-- +-- Name: projectVersionField projectVersionField_projectVersionPlanId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionField" + ADD CONSTRAINT "projectVersionField_projectVersionPlanId_fkey" FOREIGN KEY ("projectVersionPlanId") REFERENCES public."projectVersionPlan"(id) ON DELETE CASCADE; + + +-- +-- Name: projectVersionGoverningEntity projectVersionGoverningEntity_governingEntityVersionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionGoverningEntity" + ADD CONSTRAINT "projectVersionGoverningEntity_governingEntityVersionId_fkey" FOREIGN KEY ("governingEntityVersionId") REFERENCES public."governingEntityVersion"(id) ON DELETE CASCADE; + + +-- +-- Name: projectVersionHistory projectVersionHistory_participantId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionHistory" + ADD CONSTRAINT "projectVersionHistory_participantId_fkey" FOREIGN KEY ("participantId") REFERENCES public.participant(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: projectVersionHistory projectVersionHistory_projectVersionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionHistory" + ADD CONSTRAINT "projectVersionHistory_projectVersionId_fkey" FOREIGN KEY ("projectVersionId") REFERENCES public."projectVersion"(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: projectVersionPlanEntity projectVersionPlanEntity_planEntityVersionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionPlanEntity" + ADD CONSTRAINT "projectVersionPlanEntity_planEntityVersionId_fkey" FOREIGN KEY ("planEntityVersionId") REFERENCES public."planEntityVersion"(id) ON DELETE CASCADE; + + +-- +-- Name: projectVersionPlan projectVersionPlan_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionPlan" + ADD CONSTRAINT "projectVersionPlan_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: projectVersionPlan projectVersionPlan_projectVersionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionPlan" + ADD CONSTRAINT "projectVersionPlan_projectVersionId_fkey" FOREIGN KEY ("projectVersionId") REFERENCES public."projectVersion"(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: projectVersionPlan projectVersionPlan_workflowStatusOptionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersionPlan" + ADD CONSTRAINT "projectVersionPlan_workflowStatusOptionId_fkey" FOREIGN KEY ("workflowStatusOptionId") REFERENCES public."workflowStatusOption"(id) ON DELETE CASCADE; + + +-- +-- Name: projectVersion projectVersion_projectId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."projectVersion" + ADD CONSTRAINT "projectVersion_projectId_fkey" FOREIGN KEY ("projectId") REFERENCES public.project(id) ON DELETE CASCADE; + + +-- +-- Name: project project_creatorParticipantId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.project + ADD CONSTRAINT "project_creatorParticipantId_fkey" FOREIGN KEY ("creatorParticipantId") REFERENCES public.participant(id); + + +-- +-- Name: project project_currentPublishedVersionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.project + ADD CONSTRAINT "project_currentPublishedVersionId_fkey" FOREIGN KEY ("currentPublishedVersionId") REFERENCES public."projectVersion"(id) ON DELETE CASCADE; + + +-- +-- Name: project project_latestVersionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.project + ADD CONSTRAINT "project_latestVersionId_fkey" FOREIGN KEY ("latestVersionId") REFERENCES public."projectVersion"(id) ON DELETE CASCADE; + + +-- +-- Name: reportDetail reportDetail_organizationID_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportDetail" + ADD CONSTRAINT "reportDetail_organizationID_fkey" FOREIGN KEY ("organizationID") REFERENCES public.organization(id) ON UPDATE CASCADE ON DELETE SET NULL; + + +-- +-- Name: reportFile reportFile_fileAssetID_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportFile" + ADD CONSTRAINT "reportFile_fileAssetID_fkey" FOREIGN KEY ("fileAssetID") REFERENCES public."fileAssetEntity"(id) ON UPDATE CASCADE; + + +-- +-- Name: reportFile reportFile_reportID_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportFile" + ADD CONSTRAINT "reportFile_reportID_fkey" FOREIGN KEY ("reportID") REFERENCES public."reportDetail"(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: reportingWindowAssignmentVersion reportingWindowAssignmentVersion_modifiedBy_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportingWindowAssignmentVersion" + ADD CONSTRAINT "reportingWindowAssignmentVersion_modifiedBy_fkey" FOREIGN KEY ("modifiedBy") REFERENCES public.participant(id); + + +-- +-- Name: reportingWindowAssignmentVersion reportingWindowAssignmentVersion_root_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportingWindowAssignmentVersion" + ADD CONSTRAINT "reportingWindowAssignmentVersion_root_fkey" FOREIGN KEY (root) REFERENCES public."reportingWindowAssignment"(id); + + +-- +-- Name: reportingWindowVersion reportingWindowVersion_modifiedBy_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportingWindowVersion" + ADD CONSTRAINT "reportingWindowVersion_modifiedBy_fkey" FOREIGN KEY ("modifiedBy") REFERENCES public.participant(id); + + +-- +-- Name: reportingWindowVersion reportingWindowVersion_root_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."reportingWindowVersion" + ADD CONSTRAINT "reportingWindowVersion_root_fkey" FOREIGN KEY (root) REFERENCES public."reportingWindow"(id); + + +-- +-- Name: roleAuthenticationKey roleAuthenticationKey_roleId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."roleAuthenticationKey" + ADD CONSTRAINT "roleAuthenticationKey_roleId_fkey" FOREIGN KEY ("roleId") REFERENCES public.role(id); + + +-- +-- Name: rolePermittedAction rolePermittedAction_permittedActionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."rolePermittedAction" + ADD CONSTRAINT "rolePermittedAction_permittedActionId_fkey" FOREIGN KEY ("permittedActionId") REFERENCES public."permittedAction"(id); + + +-- +-- Name: rolePermittedAction rolePermittedAction_roleId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."rolePermittedAction" + ADD CONSTRAINT "rolePermittedAction_roleId_fkey" FOREIGN KEY ("roleId") REFERENCES public.role(id); + + +-- +-- Name: task task_requester_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.task + ADD CONSTRAINT task_requester_fkey FOREIGN KEY (requester) REFERENCES public.participant(id); + + +-- +-- Name: unit unit_unitTypeId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.unit + ADD CONSTRAINT "unit_unitTypeId_fkey" FOREIGN KEY ("unitTypeId") REFERENCES public."unitType"(id) ON UPDATE CASCADE ON DELETE SET NULL; + + +-- +-- Name: workflowRole workflowRole_roleId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."workflowRole" + ADD CONSTRAINT "workflowRole_roleId_fkey" FOREIGN KEY ("roleId") REFERENCES public.role(id) ON UPDATE CASCADE; + + +-- +-- Name: workflowStatusOptionStep workflowStatusOptionStep_fromId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."workflowStatusOptionStep" + ADD CONSTRAINT "workflowStatusOptionStep_fromId_fkey" FOREIGN KEY ("fromId") REFERENCES public."workflowStatusOption"(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: workflowStatusOptionStep workflowStatusOptionStep_toId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."workflowStatusOptionStep" + ADD CONSTRAINT "workflowStatusOptionStep_toId_fkey" FOREIGN KEY ("toId") REFERENCES public."workflowStatusOption"(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: workflowStatusOption workflowStatusOption_planId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public."workflowStatusOption" + ADD CONSTRAINT "workflowStatusOption_planId_fkey" FOREIGN KEY ("planId") REFERENCES public.plan(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- PostgreSQL database dump complete +-- From de86bcd678e0d6094e2c73521b2145af755f09a5 Mon Sep 17 00:00:00 2001 From: manelcecs Date: Thu, 26 Oct 2023 08:47:48 +0200 Subject: [PATCH 04/19] Add utils for tests --- tests/testContext.ts | 64 +++++++++++++++++++++++++++++++++++++++ tests/utils/connection.ts | 46 ++++++++++++++++++++++++++++ tests/utils/server.ts | 59 ++++++++++++++++++++++++++++++++++++ tsconfig.json | 3 +- 4 files changed, 171 insertions(+), 1 deletion(-) create mode 100644 tests/testContext.ts create mode 100644 tests/utils/connection.ts create mode 100644 tests/utils/server.ts diff --git a/tests/testContext.ts b/tests/testContext.ts new file mode 100644 index 00000000..fdfc8748 --- /dev/null +++ b/tests/testContext.ts @@ -0,0 +1,64 @@ +import { ApolloServer } from 'apollo-server-hapi'; +import Knex from 'knex'; +import v4Models, { Database } from '@unocha/hpc-api-core/src/db'; +import createApolloTestServer from './utils/server'; +import { createDbConnetion } from './utils/connection'; + +interface IContext { + models?: Database; + conn: Knex; + transactions: Record; + apolloTestServer: ApolloServer; +} + +export default class ContextProvider implements IContext { + private static _instance: ContextProvider; + + models?: Database; + conn: Knex; + transactions: Record; + apolloTestServer: ApolloServer; + + private constructor() { + this.models = {} as Database; + this.transactions = {}; + this.conn = {} as Knex; + this.apolloTestServer = {} as ApolloServer; + } + + public static get Instance(): ContextProvider { + if (this._instance) { + return this._instance; + } else { + this._instance = new ContextProvider(); + return this._instance; + } + } + + public async setUpContext(): Promise { + const connection = await this.createDbTestConection(); + this.conn = connection; + this.models = v4Models(this.conn); + this.apolloTestServer = await createApolloTestServer( + this.conn, + this.models + ); + } + + private async createDbTestConection(): Promise> { + return await createDbConnetion({ + db: { + poolMin: 1, + poolMax: 1, + poolIdle: 1, + connection: { + host: 'localhost', + port: 6432, + user: 'postgres', + password: 'test', + database: 'test', + }, + }, + }); + } +} diff --git a/tests/utils/connection.ts b/tests/utils/connection.ts new file mode 100644 index 00000000..83ed3eca --- /dev/null +++ b/tests/utils/connection.ts @@ -0,0 +1,46 @@ +import * as t from 'io-ts'; +import Knex from 'knex'; +// TODO: apply singleton pattern to avoid creating the same connection for each test +const CONFIG = t.type({ + db: t.type({ + poolMin: t.number, + poolMax: t.number, + connection: t.type({ + host: t.string, + port: t.number, + user: t.string, + password: t.string, + database: t.string, + }), + poolIdle: t.number, + }), +}); + +/** + * Initialize a new Postgres provider + */ +export async function createDbConnetion(config: t.TypeOf) { + const knex = Knex({ + client: 'pg', + connection: config.db.connection, + pool: { + min: config.db.poolMin, + max: config.db.poolMax, + idleTimeoutMillis: config.db.poolIdle, + }, + acquireConnectionTimeout: 2000, + }); + + // Verify the connection before proceeding + try { + await knex.raw('SELECT now()'); + + return knex; + } catch (error) { + throw new Error( + 'Unable to connect to Postgres via Knex. Ensure a valid connection.' + ); + } +} + +export default { createDbConnetion }; diff --git a/tests/utils/server.ts b/tests/utils/server.ts new file mode 100644 index 00000000..4128aac7 --- /dev/null +++ b/tests/utils/server.ts @@ -0,0 +1,59 @@ +import { + ApolloServer, + ApolloServerPluginStopHapiServer, +} from 'apollo-server-hapi'; +import { CONFIG } from '../../config'; +import { buildSchema } from 'type-graphql'; +import 'reflect-metadata'; +import * as Hapi from '@hapi/hapi'; +import { ApolloServerPluginLandingPageGraphQLPlayground } from 'apollo-server-core'; +import { join } from 'path'; +import { Container } from 'typedi'; +import { Database } from '@unocha/hpc-api-core/src/db'; +import { getTokenFromRequest } from '../../src/common-libs/auth'; +import Knex from 'knex'; + +export default async function createApolloTestServer( + connection: Knex, + models: Database, + auth?: boolean +) { + const schema = await buildSchema({ + resolvers: [ + join(__dirname, '../../src/domain-services/**/resolver.{ts,js}'), + ], + container: Container, // Register the 3rd party IOC container + }); + + const hapiServer = Hapi.server({ + port: CONFIG.httpPort, + app: { + config: CONFIG, + connection, + }, + }); + + const apolloServerConfig = { + connection, + models, + config: CONFIG, + }; + + return new ApolloServer({ + schema, + context: ({ request }: { request: Hapi.Request }) => ({ + ...apolloServerConfig, + token: auth ? getTokenFromRequest(request) : undefined, + }), + plugins: [ + ApolloServerPluginStopHapiServer({ hapiServer }), + /** + * Don't use sandbox explorer hosted on https://studio.apollographql.com + * but use local sandbox instead. Even though GraphQL playground is + * retired, it is much more useful for local development + * https://github.com/graphql/graphql-playground/issues/1143 + */ + ApolloServerPluginLandingPageGraphQLPlayground(), + ], + }); +} diff --git a/tsconfig.json b/tsconfig.json index d39d5a01..d4caaf1b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,7 +22,8 @@ "src/**/*.js", "start.js", "bin", - "jest.config.ts" + "jest.config.ts", + "tests/**/*.ts" ], "exclude": ["node_modules"] } From 2401d12c57cc39395fe2e8da1048e6722c2c78cc Mon Sep 17 00:00:00 2001 From: manelcecs Date: Thu, 26 Oct 2023 08:50:28 +0200 Subject: [PATCH 05/19] Add tests setup and example tests --- tests/resolvers/software-info.spec.ts | 78 +++++++++++++++++++++++++++ tests/test-environment-setup.ts | 5 ++ tests/test-environment.spec.ts | 30 +++++++++++ 3 files changed, 113 insertions(+) create mode 100644 tests/resolvers/software-info.spec.ts create mode 100644 tests/test-environment-setup.ts create mode 100644 tests/test-environment.spec.ts diff --git a/tests/resolvers/software-info.spec.ts b/tests/resolvers/software-info.spec.ts new file mode 100644 index 00000000..0e051baf --- /dev/null +++ b/tests/resolvers/software-info.spec.ts @@ -0,0 +1,78 @@ +// For clarity in this example we included our typeDefs and resolvers above our test, + +import { version } from '../../package.json'; +import ContextProvider from '../testContext'; + +describe('Query should return Software info', () => { + it('All data should be returned', async () => { + const response = + await ContextProvider.Instance.apolloTestServer.executeOperation({ + query: 'query { softwareInfo { title status version } }', + }); + + expect(response).toBeDefined(); + expect(response.errors).toBeUndefined(); + expect(response.data).toBeDefined(); + const data = response.data as any; + expect(data.softwareInfo).toBeDefined(); + expect(data.softwareInfo.length).toBeGreaterThan(0); + const softwareInfo = data.softwareInfo[0]; + expect(softwareInfo.version).toBe(version); + expect(softwareInfo.title).toBeDefined(); + expect(softwareInfo.status).toBeDefined(); + }); + + it('Only version should be returned', async () => { + const response = + await ContextProvider.Instance.apolloTestServer.executeOperation({ + query: 'query { softwareInfo { version } }', + }); + + expect(response).toBeDefined(); + expect(response.errors).toBeUndefined(); + expect(response.data).toBeDefined(); + const data = response.data as any; + expect(data.softwareInfo).toBeDefined(); + expect(data.softwareInfo.length).toBeGreaterThan(0); + const softwareInfo = data.softwareInfo[0]; + expect(softwareInfo.version).toBe(version); + expect(softwareInfo.title).toBeUndefined(); + expect(softwareInfo.status).toBeUndefined(); + }); + + it('Only title should be returned', async () => { + const response = + await ContextProvider.Instance.apolloTestServer.executeOperation({ + query: 'query { softwareInfo { title } }', + }); + + expect(response).toBeDefined(); + expect(response.errors).toBeUndefined(); + expect(response.data).toBeDefined(); + const data = response.data as any; + expect(data.softwareInfo).toBeDefined(); + expect(data.softwareInfo.length).toBeGreaterThan(0); + const softwareInfo = data.softwareInfo[0]; + expect(softwareInfo.title).toBeDefined(); + expect(softwareInfo.version).toBeUndefined(); + expect(softwareInfo.status).toBeUndefined(); + }); + + it('Only status should be returned', async () => { + const response = + await ContextProvider.Instance.apolloTestServer.executeOperation({ + query: 'query { softwareInfo { status } }', + }); + + expect(response).toBeDefined(); + expect(response.errors).toBeUndefined(); + expect(response.data).toBeDefined(); + const data = response.data as any; + expect(data.softwareInfo).toBeDefined(); + expect(data.softwareInfo.length).toBeGreaterThan(0); + const softwareInfo = data.softwareInfo[0]; + expect(softwareInfo.status).toBeDefined(); + expect(softwareInfo.version).toBeUndefined(); + expect(softwareInfo.title).toBeUndefined(); + }); +}); diff --git a/tests/test-environment-setup.ts b/tests/test-environment-setup.ts new file mode 100644 index 00000000..f6d566c5 --- /dev/null +++ b/tests/test-environment-setup.ts @@ -0,0 +1,5 @@ +import ContextProvider from './testContext'; + +beforeAll(async () => { + await ContextProvider.Instance.setUpContext(); +}); diff --git a/tests/test-environment.spec.ts b/tests/test-environment.spec.ts new file mode 100644 index 00000000..1d237e80 --- /dev/null +++ b/tests/test-environment.spec.ts @@ -0,0 +1,30 @@ +import ContextProvider from './testContext'; + +const context = ContextProvider.Instance; + +describe('Ensure test Environment is setup correctly', () => { + it('should be able to run a test', () => { + expect(true).toBe(true); + }); +}); + +describe('ContextProvider should be defined', () => { + it('should be defined', () => { + expect(context).toBeDefined(); + }); + + it('should have a connection', () => { + expect(context.conn).toBeDefined(); + }); + + it('connection should be a knex connection', () => { + expect(context.conn).toBeDefined(); + expect(context.conn?.client.config.client).toEqual('pg'); + }); + + it('knex connection should be connected', async () => { + expect(context.conn).toBeDefined(); + const res = await context.conn?.raw('SELECT NOW()'); + expect(res.rows[0].now).toBeDefined(); + }); +}); From 45dab77a7506c1b8550c94e0079f6c299b2dff2a Mon Sep 17 00:00:00 2001 From: manelcecs Date: Thu, 26 Oct 2023 08:54:18 +0200 Subject: [PATCH 06/19] Add run files for VSCode --- .gitignore | 1 - .vscode/launch.json | 18 ++++++++++++++++++ .vscode/tasks.json | 13 +++++++++++++ bin/test.sh | 22 +++++++++++++--------- tests/docker-compose.yml | 17 +++-------------- 5 files changed, 47 insertions(+), 24 deletions(-) create mode 100644 .vscode/launch.json create mode 100644 .vscode/tasks.json diff --git a/.gitignore b/.gitignore index 8ee5ef57..d8dddb01 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,5 @@ package-lock.json .smbdelete* test-data/* .env -.vscode *.sublime-project *.sublime-workspace diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..7bb1de3a --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Debug Jest Tests", + "type": "node", + "preLaunchTask": "start-containers", + "request": "launch", + "runtimeArgs": [ + "--inspect-brk", + "${workspaceRoot}/node_modules/.bin/jest", + "--runInBand" + ], + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen" + } + ] +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..7130fa7c --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,13 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "start-containers", + "type": "shell", + "command": "${workspaceRoot}/bin/test.sh", + "args": ["-oc"] + } + ] +} diff --git a/bin/test.sh b/bin/test.sh index b2dc31ac..78e62e65 100755 --- a/bin/test.sh +++ b/bin/test.sh @@ -1,12 +1,12 @@ root=$(pwd) #Global variables -USAGE='this is the usage' -DEBUG_USAGE='this is the debug usage' +USAGE='Usage: test.sh [options] [-- [options]].\n Options:\n -oc, --only-containers: only start docker containers\n -sc, --stop-containers: stop docker containers\n -k, --keep: keep jest runing after the completion of the tests suites\n -c: run tests with coverage\n -h, --help: show this help message\n --: pass extra options' KEEP=0 +FORCE_STOP_JEST='--forceExit' ONLY_CONTAINERS=0 STOP_CONTAINERSq=0 -COMMAND_ARGS='--' +COMMAND_ARGS='' function moveToTestDir { echo 'Moving to tests dir' @@ -21,22 +21,21 @@ function moveToRootDir { ## obtain options while [ "$1" != "" ]; do case $1 in - -d | --debug ) echo "Debug usage" - echo "$DEBUG_USAGE" - exit 0 - ;; -oc | --only-containers ) ONLY_CONTAINERS=1 ;; -sc | --stop-containers ) STOP_CONTAINERS=1 ;; -k | --keep ) KEEP=1 ;; + -c) shift + COMMAND_ARGS="${COMMAND_ARGS} --coverage" + ;; -h | --help ) echo "$USAGE" exit ;; --) shift while [ "$1" != "" ]; do - COMMAND_ARGS="${COMMAND_ARGS} $1" + COMMAND_ARGS="${COMMAND_ARGS} -- $1" shift done ;; @@ -73,7 +72,12 @@ fi ## run tests echo 'Running tests' moveToRootDir -yarn jest + +if [ $KEEP -eq 0 ]; then + FORCE_STOP_JEST='' +fi + +yarn jest $COMMAND_ARGS $FORCE_STOP_JEST if [ $KEEP -eq 0 ]; then ## stop docker containers diff --git a/tests/docker-compose.yml b/tests/docker-compose.yml index 511f63d2..b47ad977 100644 --- a/tests/docker-compose.yml +++ b/tests/docker-compose.yml @@ -2,7 +2,7 @@ version: '3.8' services: db: image: postgres:14-alpine3.18 - container_name: hpc_postgres_test + container_name: hpc_postgres_test_api ports: - 6432:5432 environment: @@ -11,24 +11,18 @@ services: - POSTGRES_DB=test volumes: - ./migration/migration.sql:/docker-entrypoint-initdb.d/init.sql - #command: -p 5432 solr: image: solr:8.11.2-slim environment: DNSDOCK_NAME: solr DNSDOCK_IMAGE: hpc SOLR_CORE: fts ## take it as env var SOLR_CORE: ${SOLR_CORE} - container_name: hpcservice_solr_1 + container_name: hpcservice_solr_1_test_api volumes: - './config/services/solr:/opt/hpc-solr:rw' - './data/test/hpc/solr_logs:/var/solr/logs:rw' - './data/test/hpc/solr_backups:/var/solr/data/backups:rw' - './data/test/hpc/solr:/var/solr/data:rw' - # networks: - # service: - # aliases: - # - solr - # - solr.hpc.vm entrypoint: /opt/hpc-solr/run/entrypoint user: root ulimits: @@ -44,9 +38,4 @@ services: environment: PORT: 80 hostname: hidapi - container_name: test_hidservice - # networks: - # service: - # aliases: - # - hidapi - # - api.hid.vm \ No newline at end of file + container_name: test_hidservice_test_api \ No newline at end of file From d9ff45576c32fa8d9ee67b7b7f1bfbb0b94a3178 Mon Sep 17 00:00:00 2001 From: manelcecs Date: Thu, 26 Oct 2023 10:53:03 +0200 Subject: [PATCH 07/19] Add utils2 --- tests/docker-compose.yml | 22 +- tests/utils/connection.ts | 2 +- tests/utils/util2.ts | 459 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 471 insertions(+), 12 deletions(-) create mode 100644 tests/utils/util2.ts diff --git a/tests/docker-compose.yml b/tests/docker-compose.yml index b47ad977..69cd3ef5 100644 --- a/tests/docker-compose.yml +++ b/tests/docker-compose.yml @@ -1,16 +1,16 @@ version: '3.8' services: db: - image: postgres:14-alpine3.18 - container_name: hpc_postgres_test_api - ports: - - 6432:5432 - environment: - - POSTGRES_USER=postgres - - POSTGRES_PASSWORD=test - - POSTGRES_DB=test - volumes: - - ./migration/migration.sql:/docker-entrypoint-initdb.d/init.sql + image: postgres:14-alpine3.18 + container_name: hpc_postgres_test_api + ports: + - 6432:5432 + environment: + - POSTGRES_USER=postgres + - POSTGRES_PASSWORD=test + - POSTGRES_DB=test + volumes: + - ./migration/migration.sql:/docker-entrypoint-initdb.d/init.sql solr: image: solr:8.11.2-slim environment: @@ -38,4 +38,4 @@ services: environment: PORT: 80 hostname: hidapi - container_name: test_hidservice_test_api \ No newline at end of file + container_name: test_hidservice_test_api diff --git a/tests/utils/connection.ts b/tests/utils/connection.ts index 83ed3eca..91b52a0c 100644 --- a/tests/utils/connection.ts +++ b/tests/utils/connection.ts @@ -1,6 +1,6 @@ import * as t from 'io-ts'; import Knex from 'knex'; -// TODO: apply singleton pattern to avoid creating the same connection for each test + const CONFIG = t.type({ db: t.type({ poolMin: t.number, diff --git a/tests/utils/util2.ts b/tests/utils/util2.ts new file mode 100644 index 00000000..62131bbb --- /dev/null +++ b/tests/utils/util2.ts @@ -0,0 +1,459 @@ +// TODO: fix this file with proper utils +// import * as t from 'io-ts'; +// import bunyan from 'bunyan'; + +// import models, { Database as db } from '@unocha/hpc-api-core/src/db'; + +// import { initializeLogging } from '../../src/common-libs/logging'; + +// import { ioTsErrorFormatter } from '@unocha/hpc-api-core/src/util/io-ts'; + +// import * as solr from './solr'; +// import { createRootContext, LogContext, LoggerData } from '../../app/logging'; +// import { LogObject } from '../../app/lib/logging'; +// import sequelize from 'sequelize'; +// import { isRight } from 'fp-ts/lib/Either'; + +/** + * Sleep for the given number of milliseconds, then resolve. + */ +// export const sleep = (timeMs: number): Promise => +// new Promise((resolve) => setTimeout(resolve, timeMs)); + +// /** +// * Try a particular task repeatedly until it succeeds, +// * with exponential backoff between retries, +// * and a maximum timeout. +// */ +// export const tryUntilSuccess = async ( +// /** +// * Maximum number of milliseconds to repeatedly try this task for +// */ +// maxTimeout: number, +// /** +// * The asynchronous task to be attempted +// */ +// task: () => Promise, +// /** +// * Additional optional options +// */ +// options?: { +// /** +// * If set, write to the console when waiting for the task, +// * and include the name of this task +// */ +// logName?: string; +// /** +// * How many milliseconds should the first wait be? +// * @default 200 +// */ +// initialWait?: number; +// } +// ): Promise => { +// const start = new Date().getTime(); +// const waitUntil = start + maxTimeout; +// let waitMs = options?.initialWait || 200; +// while (true) { +// const response = await task() +// .then((data) => ({ response: 'ok' as const, data })) +// .catch((e) => ({ response: 'error' as const, error: e as Error })); +// if (response.response === 'ok') { +// return response.data; +// } +// if (new Date().getTime() + waitMs > waitUntil) { +// if (options?.logName) { +// console.log( +// `tryUntilSuccess(${options?.logName}) did not succeed ` + +// 'in reasonable amount of time' +// ); +// } +// throw response.error; +// } else { +// if (options?.logName) { +// console.log( +// `tryUntilSuccess(${options?.logName}) did not succeed, ` + +// `trying again in ${waitMs}ms` +// ); +// } +// await sleep(waitMs); +// waitMs *= 2; +// } +// } +// }; + +// /** +// * Return true if it looks like jest was started with a debugger +// */ +// export const isDebugging = (): boolean => { +// return ( +// process.execArgv.indexOf('--debug') > -1 || +// process.execArgv.indexOf('--debug-brk') > -1 || +// process.execArgv.indexOf('--inspect') > -1 || +// process.execArgv.indexOf('--inspect-brk') > -1 +// ); +// }; + +// /** +// * Return true if timeouts are disabled +// * +// * (this is true when the tests are run in CI, +// * to prevent failing due to slower hardware.) +// */ +// const timeoutIsDisabled = () => { +// return process.env.TEST_DISABLE_TIMEOUT === 'true'; +// }; + +// export const setJestTimeoutWhenNotDebugging = (timeout: number): void => { +// if (!isDebugging() && !timeoutIsDisabled()) { +// jest.setTimeout(timeout); +// } +// }; + +// export const setupInitialTimeout = (): void => { +// if (isDebugging()) { +// console.log('Debugger attached, setting a very long timeout!'); +// jest.setTimeout(1000 * 3600 * 24); +// } else if (timeoutIsDisabled()) { +// console.log('Disabling Timeout'); +// jest.setTimeout(1000 * 3600 * 24); +// } else { +// jest.setTimeout(10000); +// } +// }; + +// /** +// * Create a group of unit tests that automatically clear database +// * tables before and after execution as appropriate. +// */ +// export const tidyGroup = ( +// opts: { +// /** +// * What is the name of this group (passed to jest using describe()) +// */ +// name: string; +// /** +// * What tables are touched during these unit tests +// */ +// tables: { +// /** +// * Tables that are touched by individual unit-tests, and need to be cleaned +// * between each test. +// * +// * These are cleaned once before running any tests, +// * and after each test is run. +// */ +// individual: string[]; +// /** +// * Tables that are only touched once (i.e. in `beforeAll()` or `afterAll()`) +// * +// * These are cleaned once before running any tests, +// * and once after all tests have run. +// */ +// all: string[]; +// }; +// /** +// * Clear solr data before running any tests, and after each test. +// */ +// clearSolr?: boolean; +// /** +// * Do you want to print out the console logs for this test? +// */ +// printLogs?: boolean; +// }, +// tests: (params: { +// models: typeof models; +// solr: typeof solr; +// /** +// * Return a list of the logs that have been produced for the current test, +// * excluding certain volatile information such as timestamp and PID. +// * +// * This allows us to make unit tests that ensure required info is logged. +// */ +// currentLogs: () => (LoggerData & LogObject)[]; +// clearLogs: () => void; +// logContext: LogContext; +// }) => void +// ): void => +// describe(opts.name, () => { +// const logger = jest.fn(); + +// const debug = (msg: string) => +// logging.printLog({ level: bunyan.DEBUG, msg, time: new Date() }, true); + +// const printer: logging.LoggingListener | null = opts.printLogs +// ? (obj) => logging.printLog(obj, true) +// : null; + +// beforeAll(async () => { +// logging.addLoggingListener(logger); +// if (printer) { +// logging.addLoggingListener(printer); +// } +// debug(`beforeAll: clearing tables: ${opts.tables.individual.join(', ')}`); +// await db.clear(opts.tables.individual); +// debug(`beforeAll: clearing tables: ${opts.tables.all.join(', ')}`); +// await db.clear(opts.tables.all); +// debug('beforeAll: cleared tables'); +// if (opts.clearSolr) { +// await solr.clearAllData(); +// } +// }); + +// beforeEach(() => { +// logger.mockClear(); +// }); + +// afterEach(async () => { +// await db.clear(opts.tables.individual); +// if (opts.clearSolr) { +// await solr.clearAllData(); +// } +// }); + +// afterAll(async () => { +// debug(`afterAll: clearing tables: ${opts.tables.individual.join(', ')}`); +// await db.clear(opts.tables.individual); +// debug(`afterAll: clearing tables: ${opts.tables.all.join(', ')}`); +// await db.clear(opts.tables.all); +// debug('afterAll: cleared tables'); +// logging.removeLoggingListener(logger); +// if (printer) { +// logging.removeLoggingListener(printer); +// } +// }); + +// const currentLogs = () => { +// return logger.mock.calls.map((args) => { +// const obj = { ...args[0] }; +// delete obj.time; +// delete obj.hostname; +// delete obj.pid; +// delete obj.name; +// delete obj.v; + +// return obj; +// }); +// }; + +// const clearLogs = () => { +// logger.mockClear(); +// }; + +// const logContext = createRootContext({ +// context: `test: tidyGroup(${opts.name})`, +// }); + +// tests({ models, solr, currentLogs, clearLogs, logContext }); +// }); + +// export const printLogs = (): void => { +// const printer: logging.LoggingListener = (obj) => logging.printLog(obj, true); + +// beforeAll(() => { +// logging.addLoggingListener(printer); +// }); + +// afterAll(() => { +// logging.removeLoggingListener(printer); +// }); +// }; + +// export const str2ab = (str: string): ArrayBuffer => { +// const buf = new ArrayBuffer(str.length * 2); // 2 bytes for each char +// const bufView = new Uint16Array(buf); +// for (let i = 0, strLen = str.length; i < strLen; i++) { +// bufView[i] = str.charCodeAt(i); +// } +// return buf; +// }; + +// type Arguments = F extends (...args: infer A) => any +// ? A +// : never; + +// /** +// * For the duration of the context of the current unit test describe block, +// * replace a particuar function with a mock implementation, +// * and then return it back to it's original implementation +// */ +// export const mockFunction = unknown>( +// get: () => T, +// set: (mock: T) => void, +// implementation?: T +// ): jest.Mock, Arguments> => { +// const original = get(); + +// const mock: jest.Mock, Arguments> = jest.fn( +// implementation || original +// ) as any; + +// beforeAll(() => { +// set(mock as any); +// }); + +// beforeEach(() => { +// mock.mockClear(); +// }); + +// afterAll(() => { +// set(original); +// }); + +// return mock; +// }; + +// /** +// * Mock a particular function of a module by specifying the module and the +// * name of the function to mock. +// */ +// export const mockModuleFunction = < +// M, +// K extends keyof M, +// T extends ((...args: any[]) => unknown) & M[K] +// >( +// module: M, +// functionName: K, +// implementation?: T +// ): M extends { [Key in K]: T } +// ? jest.Mock, Arguments> +// : never => { +// if (typeof module[functionName] === 'function') { +// return mockFunction( +// () => module[functionName] as unknown as T, +// (mock) => (module[functionName] = mock), +// implementation +// ) as any; +// } +// throw new Error( +// `${functionName.toString()} is not a valid method for this module` +// ); +// }; + +// /** +// * Temporarily mock sequelize's query interface to intercept calls to the +// * database to either check they're working as expected, +// * or to simulate failures. +// */ +// export const mockSequelizeQueryInterface = () => { +// const originalQueryInterface = models.sequelize.getQueryInterface(); + +// const mocks = { +// rawSelect: jest.fn( +// originalQueryInterface.rawSelect.bind(originalQueryInterface) +// ), +// // Data Modifications +// bulkDelete: jest.fn( +// originalQueryInterface.bulkDelete.bind(originalQueryInterface) +// ), +// bulkInsert: jest.fn( +// originalQueryInterface.bulkInsert.bind(originalQueryInterface) +// ), +// bulkUpdate: jest.fn( +// originalQueryInterface.bulkUpdate.bind(originalQueryInterface) +// ), +// delete: jest.fn(originalQueryInterface.delete.bind(originalQueryInterface)), +// insert: jest.fn(originalQueryInterface.insert.bind(originalQueryInterface)), +// select: jest.fn(originalQueryInterface.select.bind(originalQueryInterface)), +// update: jest.fn(originalQueryInterface.update.bind(originalQueryInterface)), +// upsert: jest.fn(originalQueryInterface.upsert.bind(originalQueryInterface)), +// // Transactions +// setIsolationLevel: jest.fn( +// originalQueryInterface.setIsolationLevel.bind(originalQueryInterface) +// ), +// startTransaction: jest.fn( +// originalQueryInterface.startTransaction.bind(originalQueryInterface) +// ), +// commitTransaction: jest.fn( +// originalQueryInterface.commitTransaction.bind(originalQueryInterface) +// ), +// rollbackTransaction: jest.fn( +// originalQueryInterface.rollbackTransaction.bind(originalQueryInterface) +// ), +// } as const; + +// const queryInterface: Partial & typeof mocks = { +// QueryGenerator: originalQueryInterface.QueryGenerator, +// ...mocks, +// }; + +// beforeAll(() => { +// models.sequelize.getQueryInterface = () => +// queryInterface as sequelize.QueryInterface; +// }); + +// afterAll(() => { +// models.sequelize.getQueryInterface = () => originalQueryInterface; +// }); + +// const clearAll = () => { +// for (const mock of Object.values(mocks)) { +// mock.mockClear(); +// } +// }; + +// return { +// originalQueryInterface, +// queryInterface: mocks, +// clearAll, +// }; +// }; + +// export type MockFor any> = F extends ( +// ...args: infer Y +// ) => infer T +// ? jest.Mock +// : never; + +// /** +// * To test concurrent behaviour, +// * a checkpoint allows you to delay mocked asynchronous functions until +// * other things have run. +// */ +// export const createCheckpoint = (): [() => void, () => Promise] => { +// let resolve: (() => void) | null = null; +// const promise = new Promise((r) => (resolve = r)); +// if (resolve === null) { +// throw new Error('Unable to setup checkpoint'); +// } +// return [resolve as () => void, () => promise]; +// }; + +// /** +// * Run the given asynchronous function to create data once for multiple tests +// * (using `beforeAll()`) and return a function that when called will return the +// * result of that function immediately. +// * +// * This simplifies bootstrapping data for multiple tests. +// */ +// export const createTestDataForAll = ( +// create: () => Promise +// ): (() => T) => { +// let data: T | null = null; + +// beforeAll(async () => { +// data = await create(); +// }); + +// return () => { +// if (!data) { +// throw new Error('Unexpected missing data'); +// } +// return data; +// }; +// }; + +// /* +// * Use io-ts to return the value as the given type, +// * or throw an error if the data is invalid. +// * +// * This is a utility function in the test folder as most of the time when we +// * have invalid data, we want to return a specific error message to the user +// * rather than fail. However in unit tests this can result in unnecessary code. +// */ +// export const getValue = (type: t.Type, value: any): T => { +// const decode = type.decode(value); +// if (isRight(decode)) { +// return decode.right; +// } +// throw new Error(ioTsErrorFormatter(decode).join(', ')); +// }; From 805a0aaecdae203dc53bb981b81ec323a397b109 Mon Sep 17 00:00:00 2001 From: manelcecs Date: Tue, 17 Oct 2023 08:48:04 +0200 Subject: [PATCH 08/19] Add hpc-hid info --- tools/hid_api_mock/package.json | 1 + tools/hid_api_mock/server.js | 1 + 2 files changed, 2 insertions(+) create mode 120000 tools/hid_api_mock/package.json create mode 120000 tools/hid_api_mock/server.js diff --git a/tools/hid_api_mock/package.json b/tools/hid_api_mock/package.json new file mode 120000 index 00000000..56c37479 --- /dev/null +++ b/tools/hid_api_mock/package.json @@ -0,0 +1 @@ +/srv/example/package.json \ No newline at end of file diff --git a/tools/hid_api_mock/server.js b/tools/hid_api_mock/server.js new file mode 120000 index 00000000..e913c5a8 --- /dev/null +++ b/tools/hid_api_mock/server.js @@ -0,0 +1 @@ +/srv/example/server.js \ No newline at end of file From 9fec221d7c259892f42dc5c47244cd5ff6a9a82f Mon Sep 17 00:00:00 2001 From: manelcecs Date: Mon, 23 Oct 2023 08:40:03 +0200 Subject: [PATCH 09/19] Create basic structure for GraphQL Flows resolver Add test file for flow resolver --- src/domain-services/flows/flow-service.ts | 113 ++++++++++++++++++ src/domain-services/flows/graphql/resolver.ts | 49 ++++++++ src/domain-services/flows/graphql/types.ts | 110 +++++++++++++++++ tests/resolvers/flows.spec.ts | 22 ++++ 4 files changed, 294 insertions(+) create mode 100644 src/domain-services/flows/flow-service.ts create mode 100644 src/domain-services/flows/graphql/resolver.ts create mode 100644 src/domain-services/flows/graphql/types.ts create mode 100644 tests/resolvers/flows.spec.ts diff --git a/src/domain-services/flows/flow-service.ts b/src/domain-services/flows/flow-service.ts new file mode 100644 index 00000000..58db60f9 --- /dev/null +++ b/src/domain-services/flows/flow-service.ts @@ -0,0 +1,113 @@ +import { Service } from 'typedi'; +import { FlowSearchResult, FlowSortField } from './graphql/types'; +import { Database } from '@unocha/hpc-api-core/src/db/type'; +import { Brand, createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; +import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; +import { FlowId } from '@unocha/hpc-api-core/src/db/models/flow'; +@Service() +export class FlowService { + async search( + models: Database, + first: number, + afterCursor: string, + sortField: FlowSortField, + sortOrder: 'asc' | 'desc' + ): Promise { + let afterIndex = 0; + + const sortCondition = { + column: sortField ?? 'id', + order: sortOrder ?? 'ASC', + }; + + let flows = await models.flow.find({ + orderBy: sortCondition, + }); + const count = flows.length; + + if (afterCursor) { + const after = flows.findIndex( + (flow) => flow.id.toString() === afterCursor + ); + if (after < 0) { + throw new Error('Cursor not found'); + } + afterIndex = after + 1; + } + + const pagedData = flows.slice(afterIndex, afterIndex + first); + const edges = await Promise.all( + pagedData.map(async (flow) => { + const categories: string[] = await this.getFlowCategories(flow, models); + + return { + node: { + id: flow.id.valueOf(), + amountUSD: flow.amountUSD.toString(), + createdAt: flow.createdAt, + category: categories[0], + }, + cursor: flow.id.toString(), + }; + }) + ); + + return { + edges, + pageInfo: { + hasNextPage: count > first, + hasPreviousPage: afterIndex > 0, + startCursor: pagedData.length ? pagedData[0].id.toString() : '', + endCursor: pagedData.length + ? pagedData[pagedData.length - 1].id.toString() + : '', + pageSize: pagedData.length, + sortField: sortCondition.column, + sortOrder: sortCondition.order, + }, + totalCount: count, + }; + } + + private async getFlowTypeCategory(models: Database): Promise { + return models.category.find({ + where: { group: 'flowType', name: 'Parked' }, + }); + } + + private async getFlowCategories(flow: any, models: Database): Promise { + const flowIdBranded = createBrandedValue(flow.id); + const flowLinks = await models.flowLink.find({ + where: { + childID: flowIdBranded, + }, + }); + + //const flowTypeCategory = await this.getFlowTypeCategory(models); + const flowLinksBrandedIds = flowLinks.map((flowLink) => + createBrandedValue(flowLink.parentID) + ); + + const categoriesRef = await models.categoryRef.find({ + where: { + objectID: { + [Op.IN]: flowLinksBrandedIds, + }, + versionID: flow.versionID, + categoryID: createBrandedValue(1051), + }, + }); + + const categories = await models.category.find({ + where: { + id: { + [Op.IN]: categoriesRef.map((catRef) => catRef.categoryID), + }, + }, + }); + + return categories.map((cat) => { + return cat.name; + }); + } +} diff --git a/src/domain-services/flows/graphql/resolver.ts b/src/domain-services/flows/graphql/resolver.ts new file mode 100644 index 00000000..baebb962 --- /dev/null +++ b/src/domain-services/flows/graphql/resolver.ts @@ -0,0 +1,49 @@ +import Flow, { FlowSearchResult, FlowSortField } from './types'; +import { Service } from 'typedi'; +import { Arg, Args, Ctx, Query, Resolver } from 'type-graphql'; +import { FlowService } from '../flow-service'; +import Context from '../../Context'; + +@Service() +@Resolver(Flow) +export default class FlowResolver { + constructor(private flowService: FlowService) {} + + @Query(() => FlowSearchResult) + async searchFlows( + @Ctx() context: Context, + @Arg('first', { nullable: false }) first: number, + @Arg('afterCursor', { nullable: true }) afterCursor: string, + @Arg('sortField', { nullable: true }) + sortField: + | 'id' + | 'amountUSD' + | 'versionID' + | 'activeStatus' + | 'restricted' + | 'newMoney' + | 'flowDate' + | 'decisionDate' + | 'firstReportedDate' + | 'budgetYear' + | 'origAmount' + | 'origCurrency' + | 'exchangeRate' + | 'description' + | 'notes' + | 'versionStartDate' + | 'versionEndDate' + | 'createdAt' + | 'updatedAt' + | 'deletedAt', + @Arg('sortOrder', { nullable: true }) sortOrder: 'asc' | 'desc' + ): Promise { + return await this.flowService.search( + context.models, + first, + afterCursor, + sortField, + sortOrder + ); + } +} diff --git a/src/domain-services/flows/graphql/types.ts b/src/domain-services/flows/graphql/types.ts new file mode 100644 index 00000000..c99642c0 --- /dev/null +++ b/src/domain-services/flows/graphql/types.ts @@ -0,0 +1,110 @@ +import { Field, ObjectType } from 'type-graphql'; + +@ObjectType() +export default class Flow { + @Field({ nullable: false }) + id: number; + + @Field({ nullable: false }) + amountUSD: string; + + @Field({ nullable: false }) + createdAt: Date; + + @Field({ nullable: true }) + category: string; +} + +@ObjectType() +export class FlowCategory { + @Field({ nullable: false }) + id: number; + + @Field({ nullable: false }) + name: string; +} + +@ObjectType() +export class FlowEdge { + @Field({ nullable: false }) + node: Flow; + + @Field({ nullable: false }) + cursor: string; +} +@ObjectType() +export class PageInfo { + @Field({ nullable: false }) + hasNextPage: boolean; + + @Field({ nullable: false }) + hasPreviousPage: boolean; + + @Field({ nullable: false }) + startCursor: string; + + @Field({ nullable: false }) + endCursor: string; + + @Field({ nullable: false }) + pageSize: number; + + @Field({ nullable: false }) + sortField: + | 'id' + | 'amountUSD' + | 'versionID' + | 'activeStatus' + | 'restricted' + | 'newMoney' + | 'flowDate' + | 'decisionDate' + | 'firstReportedDate' + | 'budgetYear' + | 'origAmount' + | 'origCurrency' + | 'exchangeRate' + | 'description' + | 'notes' + | 'versionStartDate' + | 'versionEndDate' + | 'createdAt' + | 'updatedAt' + | 'deletedAt'; + + @Field({ nullable: false }) + sortOrder: string; +} +@ObjectType() +export class FlowSearchResult { + @Field(() => [FlowEdge], { nullable: false }) + edges: FlowEdge[]; + + @Field(() => PageInfo, { nullable: false }) + pageInfo: PageInfo; + + @Field({ nullable: false }) + totalCount: number; +} + +export type FlowSortField = + | 'id' + | 'amountUSD' + | 'versionID' + | 'activeStatus' + | 'restricted' + | 'newMoney' + | 'flowDate' + | 'decisionDate' + | 'firstReportedDate' + | 'budgetYear' + | 'origAmount' + | 'origCurrency' + | 'exchangeRate' + | 'description' + | 'notes' + | 'versionStartDate' + | 'versionEndDate' + | 'createdAt' + | 'updatedAt' + | 'deletedAt'; diff --git a/tests/resolvers/flows.spec.ts b/tests/resolvers/flows.spec.ts new file mode 100644 index 00000000..53f9957d --- /dev/null +++ b/tests/resolvers/flows.spec.ts @@ -0,0 +1,22 @@ +import ContextProvider from '../testContext'; + + +describe('Query should return Flow search', () => { + + it('All data should be returned', async () => { + const response = await ContextProvider.Instance.apolloTestServer.executeOperation({ + query: 'query { searchFlows (first:10) { totalCount edges { node { id createdAt amountUSD category } cursor } pageInfo { startCursor hasNextPage endCursor hasPreviousPage pageSize } } }', + + }); + + expect(response).toBeDefined(); + expect(response.errors).toBeUndefined(); + expect(response.data).toBeDefined(); + const data = response.data as any; + expect(data.flows).toBeDefined(); + expect(data.flows.length).toBeGreaterThan(0); + const flows = data.flows[0]; + expect(flows.id).toBeDefined(); + }); +}); + From d8b83d2dc15b164696036061199ca7f8de40ff5d Mon Sep 17 00:00:00 2001 From: manelcecs Date: Thu, 26 Oct 2023 11:12:11 +0200 Subject: [PATCH 10/19] Minor refactor --- src/domain-services/flows/flow-service.ts | 10 ++++++++-- src/server.ts | 6 +++++- tests/testContext.ts | 6 +++--- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/src/domain-services/flows/flow-service.ts b/src/domain-services/flows/flow-service.ts index 58db60f9..514d5ed6 100644 --- a/src/domain-services/flows/flow-service.ts +++ b/src/domain-services/flows/flow-service.ts @@ -4,6 +4,8 @@ import { Database } from '@unocha/hpc-api-core/src/db/type'; import { Brand, createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; import { FlowId } from '@unocha/hpc-api-core/src/db/models/flow'; + +import { dbConnection } from '../../server'; @Service() export class FlowService { async search( @@ -22,8 +24,9 @@ export class FlowService { let flows = await models.flow.find({ orderBy: sortCondition, + limit: first, }); - const count = flows.length; + const count = await dbConnection.raw('SELECT COUNT(*) FROM flow'); if (afterCursor) { const after = flows.findIndex( @@ -75,7 +78,10 @@ export class FlowService { }); } - private async getFlowCategories(flow: any, models: Database): Promise { + private async getFlowCategories( + flow: any, + models: Database + ): Promise { const flowIdBranded = createBrandedValue(flow.id); const flowLinks = await models.flowLink.find({ where: { diff --git a/src/server.ts b/src/server.ts index 9bf3be49..1b56c493 100644 --- a/src/server.ts +++ b/src/server.ts @@ -30,6 +30,8 @@ declare module '@hapi/hapi' { } } +let dbConnection: Knex; + async function startServer() { const rootLogContext = await initializeLogging(); @@ -38,7 +40,7 @@ async function startServer() { container: Container, // Register the 3rd party IOC container }); - const dbConnection = await createDbConnetion(); + dbConnection = await createDbConnetion(); const hapiServer = Hapi.server({ port: CONFIG.httpPort, @@ -79,3 +81,5 @@ async function startServer() { } startServer().catch((error) => console.error(error)); + +export { dbConnection }; diff --git a/tests/testContext.ts b/tests/testContext.ts index fdfc8748..31072705 100644 --- a/tests/testContext.ts +++ b/tests/testContext.ts @@ -53,10 +53,10 @@ export default class ContextProvider implements IContext { poolIdle: 1, connection: { host: 'localhost', - port: 6432, + port: 5432, user: 'postgres', - password: 'test', - database: 'test', + password: '', + database: 'hpc', }, }, }); From cd398483258c15ddadbfdbf54f7d01dc21f385cb Mon Sep 17 00:00:00 2001 From: manelcecs Date: Fri, 27 Oct 2023 10:51:27 +0200 Subject: [PATCH 11/19] Add fetch for flow categories --- src/domain-services/flows/flow-service.ts | 34 +++++++++------------- src/domain-services/flows/graphql/types.ts | 20 ++++++++----- 2 files changed, 26 insertions(+), 28 deletions(-) diff --git a/src/domain-services/flows/flow-service.ts b/src/domain-services/flows/flow-service.ts index 514d5ed6..a4110c25 100644 --- a/src/domain-services/flows/flow-service.ts +++ b/src/domain-services/flows/flow-service.ts @@ -1,11 +1,10 @@ import { Service } from 'typedi'; -import { FlowSearchResult, FlowSortField } from './graphql/types'; +import { FlowCategory, FlowSearchResult, FlowSortField } from './graphql/types'; import { Database } from '@unocha/hpc-api-core/src/db/type'; import { Brand, createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; import { FlowId } from '@unocha/hpc-api-core/src/db/models/flow'; -import { dbConnection } from '../../server'; @Service() export class FlowService { async search( @@ -19,14 +18,15 @@ export class FlowService { const sortCondition = { column: sortField ?? 'id', - order: sortOrder ?? 'ASC', + order: sortOrder ?? 'DESC', }; let flows = await models.flow.find({ orderBy: sortCondition, limit: first, }); - const count = await dbConnection.raw('SELECT COUNT(*) FROM flow'); + const countRes = await models.flow.count(); + const count = countRes[0] as { count: number }; if (afterCursor) { const after = flows.findIndex( @@ -41,14 +41,14 @@ export class FlowService { const pagedData = flows.slice(afterIndex, afterIndex + first); const edges = await Promise.all( pagedData.map(async (flow) => { - const categories: string[] = await this.getFlowCategories(flow, models); + const categories: FlowCategory[] = await this.getFlowCategories(flow, models); return { node: { id: flow.id.valueOf(), amountUSD: flow.amountUSD.toString(), createdAt: flow.createdAt, - category: categories[0], + categories: categories, }, cursor: flow.id.toString(), }; @@ -58,7 +58,7 @@ export class FlowService { return { edges, pageInfo: { - hasNextPage: count > first, + hasNextPage: count.count > afterIndex, hasPreviousPage: afterIndex > 0, startCursor: pagedData.length ? pagedData[0].id.toString() : '', endCursor: pagedData.length @@ -68,20 +68,14 @@ export class FlowService { sortField: sortCondition.column, sortOrder: sortCondition.order, }, - totalCount: count, + totalCount: count.count, }; } - private async getFlowTypeCategory(models: Database): Promise { - return models.category.find({ - where: { group: 'flowType', name: 'Parked' }, - }); - } - private async getFlowCategories( flow: any, models: Database - ): Promise { + ): Promise { const flowIdBranded = createBrandedValue(flow.id); const flowLinks = await models.flowLink.find({ where: { @@ -89,7 +83,6 @@ export class FlowService { }, }); - //const flowTypeCategory = await this.getFlowTypeCategory(models); const flowLinksBrandedIds = flowLinks.map((flowLink) => createBrandedValue(flowLink.parentID) ); @@ -100,7 +93,6 @@ export class FlowService { [Op.IN]: flowLinksBrandedIds, }, versionID: flow.versionID, - categoryID: createBrandedValue(1051), }, }); @@ -112,8 +104,10 @@ export class FlowService { }, }); - return categories.map((cat) => { - return cat.name; - }); + return categories.map((cat) => ({ + id: cat.id, + name: cat.name, + group: cat.group, + })); } } diff --git a/src/domain-services/flows/graphql/types.ts b/src/domain-services/flows/graphql/types.ts index c99642c0..9407db55 100644 --- a/src/domain-services/flows/graphql/types.ts +++ b/src/domain-services/flows/graphql/types.ts @@ -1,27 +1,30 @@ import { Field, ObjectType } from 'type-graphql'; @ObjectType() -export default class Flow { +export class FlowCategory { @Field({ nullable: false }) id: number; @Field({ nullable: false }) - amountUSD: string; + name: string; @Field({ nullable: false }) - createdAt: Date; - - @Field({ nullable: true }) - category: string; + group: string; } @ObjectType() -export class FlowCategory { +export default class Flow { @Field({ nullable: false }) id: number; @Field({ nullable: false }) - name: string; + amountUSD: string; + + @Field({ nullable: false }) + createdAt: Date; + + @Field(() => [FlowCategory], { nullable: false }) + categories: FlowCategory[]; } @ObjectType() @@ -32,6 +35,7 @@ export class FlowEdge { @Field({ nullable: false }) cursor: string; } + @ObjectType() export class PageInfo { @Field({ nullable: false }) From bc1d04f2622c505e7739e434cb24ed2d0620aaaf Mon Sep 17 00:00:00 2001 From: manelcecs Date: Fri, 27 Oct 2023 11:48:58 +0200 Subject: [PATCH 12/19] Add query fetching nested properties --- src/domain-services/flows/flow-service.ts | 148 ++++++++++++++++++++- src/domain-services/flows/graphql/types.ts | 51 +++++++ 2 files changed, 197 insertions(+), 2 deletions(-) diff --git a/src/domain-services/flows/flow-service.ts b/src/domain-services/flows/flow-service.ts index a4110c25..6f6d3753 100644 --- a/src/domain-services/flows/flow-service.ts +++ b/src/domain-services/flows/flow-service.ts @@ -1,5 +1,13 @@ import { Service } from 'typedi'; -import { FlowCategory, FlowSearchResult, FlowSortField } from './graphql/types'; +import { + FlowCategory, + FlowLocation, + FlowOrganization, + FlowPlan, + FlowSearchResult, + FlowSortField, + FlowUsageYear, +} from './graphql/types'; import { Database } from '@unocha/hpc-api-core/src/db/type'; import { Brand, createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; @@ -41,7 +49,49 @@ export class FlowService { const pagedData = flows.slice(afterIndex, afterIndex + first); const edges = await Promise.all( pagedData.map(async (flow) => { - const categories: FlowCategory[] = await this.getFlowCategories(flow, models); + const flowIdBranded = createBrandedValue(flow.id); + + const categories: FlowCategory[] = await this.getFlowCategories( + flow, + models + ); + + const flowObjects = await models.flowObject.find({ + where: { + flowID: flowIdBranded, + }, + }); + + const organizationsFO: any[] = []; + const locationsFO: any[] = []; + const plansFO: any[] = []; + const usageYearsFO: any[] = []; + + flowObjects.forEach((flowObject) => { + if (flowObject.objectType === 'organization') { + organizationsFO.push(flowObject); + } else if (flowObject.objectType === 'location') { + locationsFO.push(flowObject); + } else if (flowObject.objectType === 'plan') { + plansFO.push(flowObject); + } else if (flowObject.objectType === 'usageYear') { + usageYearsFO.push(flowObject); + } + }); + + const organizations: FlowOrganization[] = await this.getOrganizations( + organizationsFO, + models + ); + + const locations: FlowLocation[] = await this.getLocations( + locationsFO, + models + ); + + const plans = await this.getPlans(plansFO, models); + + const usageYears = await this.getUsageYears(usageYearsFO, models); return { node: { @@ -49,6 +99,10 @@ export class FlowService { amountUSD: flow.amountUSD.toString(), createdAt: flow.createdAt, categories: categories, + organizations: organizations, + locations: locations, + plans: plans, + usageYears: usageYears, }, cursor: flow.id.toString(), }; @@ -110,4 +164,94 @@ export class FlowService { group: cat.group, })); } + + private async getOrganizations( + organizationsFO: any[], + models: Database + ): Promise { + const organizations = await models.organization.find({ + where: { + id: { + [Op.IN]: organizationsFO.map((orgFO) => orgFO.objectID), + }, + }, + }); + + return organizations.map((org) => ({ + id: org.id, + refDirection: organizationsFO.find((orgFO) => orgFO.objectID === org.id) + .refDirection, + name: org.name, + })); + } + + private async getLocations( + locationsFO: any[], + models: Database + ): Promise { + const locations = await models.location.find({ + where: { + id: { + [Op.IN]: locationsFO.map((locFO) => locFO.objectID), + }, + }, + }); + + return locations.map((loc) => ({ + id: loc.id.valueOf(), + name: loc.name!, + })); + } + + private async getPlans( + plansFO: any[], + models: Database + ): Promise { + const plans = await models.plan.find({ + where: { + id: { + [Op.IN]: plansFO.map((planFO) => planFO.objectID), + }, + }, + }); + + const flowPlans: FlowPlan[] = []; + + for (const plan of plans) { + const planVersion = await models.planVersion.find({ + where: { + planId: plan.id, + currentVersion: true, + }, + }); + + flowPlans.push({ + id: plan.id.valueOf(), + name: planVersion[0].name, + }); + } + + return flowPlans; + } + + private async getUsageYears( + usageYearsFO: any[], + models: Database + ): Promise { + const usageYears = await models.usageYear.find({ + where: { + id: { + [Op.IN]: usageYearsFO.map((usageYearFO) => usageYearFO.objectID), + }, + }, + }); + + return usageYears.map((usageYear) => ({ + year: usageYear.year, + direction: usageYearsFO.find( + (usageYearFO) => usageYearFO.objectID === usageYear.id + ).refDirection, + })); + } + } diff --git a/src/domain-services/flows/graphql/types.ts b/src/domain-services/flows/graphql/types.ts index 9407db55..f8864e51 100644 --- a/src/domain-services/flows/graphql/types.ts +++ b/src/domain-services/flows/graphql/types.ts @@ -12,6 +12,45 @@ export class FlowCategory { group: string; } +@ObjectType() +export class FlowOrganization { + @Field({ nullable: false }) + id: number; + + @Field({ nullable: false }) + refDirection: string; + + @Field({ nullable: false }) + name: string; +} + +@ObjectType() +export class FlowLocation { + @Field({ nullable: false }) + id: number; + + @Field({ nullable: false }) + name: string; +} + +@ObjectType() +export class FlowPlan { + @Field({ nullable: false }) + id: number; + + @Field({ nullable: false }) + name: string; +} + +@ObjectType() +export class FlowUsageYear { + @Field({ nullable: false }) + year: string; + + @Field({ nullable: false }) + direction: string; +} + @ObjectType() export default class Flow { @Field({ nullable: false }) @@ -25,6 +64,18 @@ export default class Flow { @Field(() => [FlowCategory], { nullable: false }) categories: FlowCategory[]; + + @Field(() => [FlowOrganization], { nullable: false }) + organizations: FlowOrganization[]; + + @Field(() => [FlowLocation], { nullable: false }) + locations: FlowLocation[]; + + @Field(() => [FlowPlan], { nullable: false }) + plans: FlowPlan[]; + + @Field(() => [FlowUsageYear], { nullable: false }) + usageYears: FlowUsageYear[]; } @ObjectType() From 63e22f1cbfd64e825cb3c2e4252da688ec7a654c Mon Sep 17 00:00:00 2001 From: manelcecs Date: Fri, 27 Oct 2023 12:22:57 +0200 Subject: [PATCH 13/19] Refactor move methods to individual services --- src/domain-services/flows/flow-service.ts | 117 +++--------------- .../location/location-service.ts | 20 +++ .../organizations/organization-service.ts | 24 ++++ src/domain-services/plans/plan-service.ts | 33 +++++ .../usage-years/usage-year-service.ts | 27 ++++ 5 files changed, 124 insertions(+), 97 deletions(-) create mode 100644 src/domain-services/organizations/organization-service.ts create mode 100644 src/domain-services/usage-years/usage-year-service.ts diff --git a/src/domain-services/flows/flow-service.ts b/src/domain-services/flows/flow-service.ts index 6f6d3753..0a63abe2 100644 --- a/src/domain-services/flows/flow-service.ts +++ b/src/domain-services/flows/flow-service.ts @@ -9,12 +9,20 @@ import { FlowUsageYear, } from './graphql/types'; import { Database } from '@unocha/hpc-api-core/src/db/type'; -import { Brand, createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; +import { createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; -import { FlowId } from '@unocha/hpc-api-core/src/db/models/flow'; +import { OrganizationService } from '../organizations/organization-service'; +import { LocationService } from '../location/location-service'; +import { PlanService } from '../plans/plan-service'; +import { UsageYearService } from '../usage-years/usage-year-service'; @Service() export class FlowService { + constructor(private readonly organizationService: OrganizationService, + private readonly locationService: LocationService, + private readonly planService: PlanService, + private readonly usageYearService: UsageYearService) {} + async search( models: Database, first: number, @@ -49,18 +57,12 @@ export class FlowService { const pagedData = flows.slice(afterIndex, afterIndex + first); const edges = await Promise.all( pagedData.map(async (flow) => { - const flowIdBranded = createBrandedValue(flow.id); - const categories: FlowCategory[] = await this.getFlowCategories( flow, models ); - const flowObjects = await models.flowObject.find({ - where: { - flowID: flowIdBranded, - }, - }); + const flowObjects = await this.getFlowObjects(flow, models); const organizationsFO: any[] = []; const locationsFO: any[] = []; @@ -79,19 +81,19 @@ export class FlowService { } }); - const organizations: FlowOrganization[] = await this.getOrganizations( + const organizations: FlowOrganization[] = await this.organizationService.getFlowObjectOrganizations( organizationsFO, models ); - const locations: FlowLocation[] = await this.getLocations( + const locations: FlowLocation[] = await this.locationService.getFlowObjectLocations( locationsFO, models ); - const plans = await this.getPlans(plansFO, models); + const plans = await this.planService.getFlowObjectPlans(plansFO, models); - const usageYears = await this.getUsageYears(usageYearsFO, models); + const usageYears = await this.usageYearService.getFlowObjectUsageYears(usageYearsFO, models); return { node: { @@ -165,93 +167,14 @@ export class FlowService { })); } - private async getOrganizations( - organizationsFO: any[], - models: Database - ): Promise { - const organizations = await models.organization.find({ - where: { - id: { - [Op.IN]: organizationsFO.map((orgFO) => orgFO.objectID), - }, - }, - }); - - return organizations.map((org) => ({ - id: org.id, - refDirection: organizationsFO.find((orgFO) => orgFO.objectID === org.id) - .refDirection, - name: org.name, - })); - } - - private async getLocations( - locationsFO: any[], - models: Database - ): Promise { - const locations = await models.location.find({ - where: { - id: { - [Op.IN]: locationsFO.map((locFO) => locFO.objectID), - }, - }, - }); - - return locations.map((loc) => ({ - id: loc.id.valueOf(), - name: loc.name!, - })); - } - - private async getPlans( - plansFO: any[], - models: Database - ): Promise { - const plans = await models.plan.find({ - where: { - id: { - [Op.IN]: plansFO.map((planFO) => planFO.objectID), - }, - }, - }); - - const flowPlans: FlowPlan[] = []; - - for (const plan of plans) { - const planVersion = await models.planVersion.find({ - where: { - planId: plan.id, - currentVersion: true, - }, - }); - - flowPlans.push({ - id: plan.id.valueOf(), - name: planVersion[0].name, - }); - } - - return flowPlans; - } - - private async getUsageYears( - usageYearsFO: any[], - models: Database - ): Promise { - const usageYears = await models.usageYear.find({ + private async getFlowObjects(flow: any, models: Database): Promise { + const flowIdBranded = createBrandedValue(flow.id); + const flowObjects = await models.flowObject.find({ where: { - id: { - [Op.IN]: usageYearsFO.map((usageYearFO) => usageYearFO.objectID), - }, + flowID: flowIdBranded, }, }); - return usageYears.map((usageYear) => ({ - year: usageYear.year, - direction: usageYearsFO.find( - (usageYearFO) => usageYearFO.objectID === usageYear.id - ).refDirection, - })); + return flowObjects; } - } diff --git a/src/domain-services/location/location-service.ts b/src/domain-services/location/location-service.ts index fdd4a23a..fc9c6739 100644 --- a/src/domain-services/location/location-service.ts +++ b/src/domain-services/location/location-service.ts @@ -2,6 +2,8 @@ import { Database } from '@unocha/hpc-api-core/src/db/type'; import { Service } from 'typedi'; import { createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; import { InstanceDataOfModel } from '@unocha/hpc-api-core/src/db/util/raw-model'; +import { FlowLocation } from '../flows/graphql/types'; +import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; @Service() export class LocationService { @@ -26,4 +28,22 @@ export class LocationService { where: { name: { [models.Op.ILIKE]: `%${name}%` } }, }); } + + async getFlowObjectLocations( + locationsFO: any[], + models: Database + ): Promise { + const locations = await models.location.find({ + where: { + id: { + [Op.IN]: locationsFO.map((locFO) => locFO.objectID), + }, + }, + }); + + return locations.map((loc) => ({ + id: loc.id.valueOf(), + name: loc.name!, + })); + } } diff --git a/src/domain-services/organizations/organization-service.ts b/src/domain-services/organizations/organization-service.ts new file mode 100644 index 00000000..36e5a525 --- /dev/null +++ b/src/domain-services/organizations/organization-service.ts @@ -0,0 +1,24 @@ +import { Database } from "@unocha/hpc-api-core/src/db"; +import { Service } from "typedi"; +import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; + +@Service() +export class OrganizationService { + + async getFlowObjectOrganizations(organizationsFO: any[], models: Database){ + const organizations = await models.organization.find({ + where: { + id: { + [Op.IN]: organizationsFO.map((orgFO) => orgFO.objectID), + }, + }, + }); + + return organizations.map((org) => ({ + id: org.id, + refDirection: organizationsFO.find((orgFO) => orgFO.objectID === org.id) + .refDirection, + name: org.name, + })); + } +} \ No newline at end of file diff --git a/src/domain-services/plans/plan-service.ts b/src/domain-services/plans/plan-service.ts index 354a75f2..e39283b1 100644 --- a/src/domain-services/plans/plan-service.ts +++ b/src/domain-services/plans/plan-service.ts @@ -1,8 +1,10 @@ import { PlanId } from '@unocha/hpc-api-core/src/db/models/plan'; import { Database } from '@unocha/hpc-api-core/src/db/type'; +import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; import { NotFoundError } from '@unocha/hpc-api-core/src/util/error'; import { createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; import { Service } from 'typedi'; +import { FlowPlan } from '../flows/graphql/types'; @Service() export class PlanService { @@ -44,4 +46,35 @@ export class PlanService { return years.map((y) => y.year); } + + async getFlowObjectPlans( + plansFO: any[], + models: Database + ): Promise { + const plans = await models.plan.find({ + where: { + id: { + [Op.IN]: plansFO.map((planFO) => planFO.objectID), + }, + }, + }); + + const flowPlans: FlowPlan[] = []; + + for (const plan of plans) { + const planVersion = await models.planVersion.find({ + where: { + planId: plan.id, + currentVersion: true, + }, + }); + + flowPlans.push({ + id: plan.id.valueOf(), + name: planVersion[0].name, + }); + } + + return flowPlans; + } } diff --git a/src/domain-services/usage-years/usage-year-service.ts b/src/domain-services/usage-years/usage-year-service.ts new file mode 100644 index 00000000..7712f235 --- /dev/null +++ b/src/domain-services/usage-years/usage-year-service.ts @@ -0,0 +1,27 @@ +import { Database } from '@unocha/hpc-api-core/src/db'; +import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; +import { Service } from 'typedi'; +import { FlowUsageYear } from '../flows/graphql/types'; + +@Service() +export class UsageYearService { + async getFlowObjectUsageYears( + usageYearsFO: any[], + models: Database + ): Promise { + const usageYears = await models.usageYear.find({ + where: { + id: { + [Op.IN]: usageYearsFO.map((usageYearFO) => usageYearFO.objectID), + }, + }, + }); + + return usageYears.map((usageYear) => ({ + year: usageYear.year, + direction: usageYearsFO.find( + (usageYearFO) => usageYearFO.objectID === usageYear.id + ).refDirection, + })); + } +} From 3aa44b1d4f98870bea4ae06479df3d0020223490 Mon Sep 17 00:00:00 2001 From: manelcecs Date: Mon, 30 Oct 2023 09:46:17 +0100 Subject: [PATCH 14/19] Split individual services Minor refactor --- .../categories/category-service.ts | 44 +++++ .../flows/flow-search-service.ts | 171 +++++++++++++++++ src/domain-services/flows/flow-service.ts | 180 ------------------ src/domain-services/flows/graphql/resolver.ts | 14 +- src/domain-services/flows/graphql/types.ts | 66 +------ .../organizations/organization-service.ts | 37 ++-- 6 files changed, 247 insertions(+), 265 deletions(-) create mode 100644 src/domain-services/categories/category-service.ts create mode 100644 src/domain-services/flows/flow-search-service.ts delete mode 100644 src/domain-services/flows/flow-service.ts diff --git a/src/domain-services/categories/category-service.ts b/src/domain-services/categories/category-service.ts new file mode 100644 index 00000000..76f7307d --- /dev/null +++ b/src/domain-services/categories/category-service.ts @@ -0,0 +1,44 @@ +import { Database } from '@unocha/hpc-api-core/src/db'; +import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; +import { createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; +import { Service } from 'typedi'; +import { FlowCategory } from '../flows/graphql/types'; + +@Service() +export class CategoryService { + async getFlowCategory(flow: any, models: Database): Promise { + const flowIdBranded = createBrandedValue(flow.id); + const flowLinks = await models.flowLink.find({ + where: { + childID: flowIdBranded, + }, + }); + + const flowLinksBrandedIds = flowLinks.map((flowLink) => + createBrandedValue(flowLink.parentID) + ); + + const categoriesRef = await models.categoryRef.find({ + where: { + objectID: { + [Op.IN]: flowLinksBrandedIds, + }, + versionID: flow.versionID, + }, + }); + + const categories = await models.category.find({ + where: { + id: { + [Op.IN]: categoriesRef.map((catRef) => catRef.categoryID), + }, + }, + }); + + return categories.map((cat) => ({ + id: cat.id, + name: cat.name, + group: cat.group, + })); + } +} diff --git a/src/domain-services/flows/flow-search-service.ts b/src/domain-services/flows/flow-search-service.ts new file mode 100644 index 00000000..c48d3ade --- /dev/null +++ b/src/domain-services/flows/flow-search-service.ts @@ -0,0 +1,171 @@ +import { Service } from 'typedi'; +import { + FlowCategory, + FlowLocation, + FlowOrganization, + FlowPlan, + FlowSearchResult, + FlowSortField, + FlowUsageYear, +} from './graphql/types'; +import { Database } from '@unocha/hpc-api-core/src/db/type'; +import { createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; +import { OrganizationService } from '../organizations/organization-service'; +import { LocationService } from '../location/location-service'; +import { PlanService } from '../plans/plan-service'; +import { UsageYearService } from '../usage-years/usage-year-service'; +import { CategoryService } from '../categories/category-service'; +import { prepareConditionFromCursor } from '../../utils/graphql/pagination'; + +@Service() +export class FlowSearchService { + constructor( + private readonly organizationService: OrganizationService, + private readonly locationService: LocationService, + private readonly planService: PlanService, + private readonly usageYearService: UsageYearService, + private readonly categoryService: CategoryService + ) {} + + async search( + models: Database, + first: number, + afterCursor?: number, + beforeCursor?: number, + sortField?: FlowSortField, + sortOrder?: 'asc' | 'desc' + ): Promise { + if (beforeCursor && afterCursor) { + throw new Error('Cannot use before and after cursor at the same time'); + } + + const sortCondition = { + column: sortField ?? 'id', + order: sortOrder ?? 'desc', + }; + + let flows; + const countRes = await models.flow.count(); + const count = countRes[0] as { count: number }; + + const hasCursor = afterCursor || beforeCursor; + + if (hasCursor) { + const condition = prepareConditionFromCursor( + sortCondition, + afterCursor, + beforeCursor + ); + + flows = await models.flow.find({ + orderBy: sortCondition, + limit: first, + where: { + ...condition, + }, + }); + } else { + flows = await models.flow.find({ + orderBy: sortCondition, + limit: first, + }); + } + + const items = await Promise.all( + flows.map(async (flow) => { + const categories: FlowCategory[] = + await this.categoryService.getFlowCategory(flow, models); + + const organizationsFO: any[] = []; + const locationsFO: any[] = []; + const plansFO: any[] = []; + const usageYearsFO: any[] = []; + + await this.getFlowObjects( + flow, + models, + organizationsFO, + locationsFO, + plansFO, + usageYearsFO + ); + + const organizationsPromise: Promise = + this.organizationService.getFlowObjectOrganizations( + organizationsFO, + models + ); + + const locationsPromise: Promise = + this.locationService.getFlowObjectLocations(locationsFO, models); + + const plansPromise: Promise = + this.planService.getFlowObjectPlans(plansFO, models); + + const usageYearsPromise: Promise = + this.usageYearService.getFlowObjectUsageYears(usageYearsFO, models); + + const [organizations, locations, plans, usageYears] = await Promise.all( + [ + organizationsPromise, + locationsPromise, + plansPromise, + usageYearsPromise, + ] + ); + + return { + id: flow.id.valueOf(), + amountUSD: flow.amountUSD.toString(), + createdAt: flow.createdAt, + categories: categories, + organizations: organizations, + locations: locations, + plans: plans, + usageYears: usageYears, + cursor: flow.id.valueOf(), + }; + }) + ); + + return { + items, + hasNextPage: first <= flows.length, + hasPreviousPage: afterCursor !== undefined, + startCursor: flows.length ? flows[0].id.valueOf() : 0, + endCursor: flows.length ? flows[flows.length - 1].id.valueOf() : 0, + pageSize: flows.length, + sortField: sortCondition.column, + sortOrder: sortCondition.order, + total: count.count, + }; + } + + private async getFlowObjects( + flow: any, + models: Database, + organizationsFO: any[], + locationsFO: any[], + plansFO: any[], + usageYearsFO: any[] + ): Promise { + const flowIdBranded = createBrandedValue(flow.id); + const flowObjects = await models.flowObject.find({ + where: { + flowID: flowIdBranded, + }, + }); + + flowObjects.forEach((flowObject) => { + if (flowObject.objectType === 'organization') { + organizationsFO.push(flowObject); + } else if (flowObject.objectType === 'location') { + locationsFO.push(flowObject); + } else if (flowObject.objectType === 'plan') { + plansFO.push(flowObject); + } else if (flowObject.objectType === 'usageYear') { + usageYearsFO.push(flowObject); + } + }); + } +} diff --git a/src/domain-services/flows/flow-service.ts b/src/domain-services/flows/flow-service.ts deleted file mode 100644 index 0a63abe2..00000000 --- a/src/domain-services/flows/flow-service.ts +++ /dev/null @@ -1,180 +0,0 @@ -import { Service } from 'typedi'; -import { - FlowCategory, - FlowLocation, - FlowOrganization, - FlowPlan, - FlowSearchResult, - FlowSortField, - FlowUsageYear, -} from './graphql/types'; -import { Database } from '@unocha/hpc-api-core/src/db/type'; -import { createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; -import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; -import { OrganizationService } from '../organizations/organization-service'; -import { LocationService } from '../location/location-service'; -import { PlanService } from '../plans/plan-service'; -import { UsageYearService } from '../usage-years/usage-year-service'; - -@Service() -export class FlowService { - constructor(private readonly organizationService: OrganizationService, - private readonly locationService: LocationService, - private readonly planService: PlanService, - private readonly usageYearService: UsageYearService) {} - - async search( - models: Database, - first: number, - afterCursor: string, - sortField: FlowSortField, - sortOrder: 'asc' | 'desc' - ): Promise { - let afterIndex = 0; - - const sortCondition = { - column: sortField ?? 'id', - order: sortOrder ?? 'DESC', - }; - - let flows = await models.flow.find({ - orderBy: sortCondition, - limit: first, - }); - const countRes = await models.flow.count(); - const count = countRes[0] as { count: number }; - - if (afterCursor) { - const after = flows.findIndex( - (flow) => flow.id.toString() === afterCursor - ); - if (after < 0) { - throw new Error('Cursor not found'); - } - afterIndex = after + 1; - } - - const pagedData = flows.slice(afterIndex, afterIndex + first); - const edges = await Promise.all( - pagedData.map(async (flow) => { - const categories: FlowCategory[] = await this.getFlowCategories( - flow, - models - ); - - const flowObjects = await this.getFlowObjects(flow, models); - - const organizationsFO: any[] = []; - const locationsFO: any[] = []; - const plansFO: any[] = []; - const usageYearsFO: any[] = []; - - flowObjects.forEach((flowObject) => { - if (flowObject.objectType === 'organization') { - organizationsFO.push(flowObject); - } else if (flowObject.objectType === 'location') { - locationsFO.push(flowObject); - } else if (flowObject.objectType === 'plan') { - plansFO.push(flowObject); - } else if (flowObject.objectType === 'usageYear') { - usageYearsFO.push(flowObject); - } - }); - - const organizations: FlowOrganization[] = await this.organizationService.getFlowObjectOrganizations( - organizationsFO, - models - ); - - const locations: FlowLocation[] = await this.locationService.getFlowObjectLocations( - locationsFO, - models - ); - - const plans = await this.planService.getFlowObjectPlans(plansFO, models); - - const usageYears = await this.usageYearService.getFlowObjectUsageYears(usageYearsFO, models); - - return { - node: { - id: flow.id.valueOf(), - amountUSD: flow.amountUSD.toString(), - createdAt: flow.createdAt, - categories: categories, - organizations: organizations, - locations: locations, - plans: plans, - usageYears: usageYears, - }, - cursor: flow.id.toString(), - }; - }) - ); - - return { - edges, - pageInfo: { - hasNextPage: count.count > afterIndex, - hasPreviousPage: afterIndex > 0, - startCursor: pagedData.length ? pagedData[0].id.toString() : '', - endCursor: pagedData.length - ? pagedData[pagedData.length - 1].id.toString() - : '', - pageSize: pagedData.length, - sortField: sortCondition.column, - sortOrder: sortCondition.order, - }, - totalCount: count.count, - }; - } - - private async getFlowCategories( - flow: any, - models: Database - ): Promise { - const flowIdBranded = createBrandedValue(flow.id); - const flowLinks = await models.flowLink.find({ - where: { - childID: flowIdBranded, - }, - }); - - const flowLinksBrandedIds = flowLinks.map((flowLink) => - createBrandedValue(flowLink.parentID) - ); - - const categoriesRef = await models.categoryRef.find({ - where: { - objectID: { - [Op.IN]: flowLinksBrandedIds, - }, - versionID: flow.versionID, - }, - }); - - const categories = await models.category.find({ - where: { - id: { - [Op.IN]: categoriesRef.map((catRef) => catRef.categoryID), - }, - }, - }); - - return categories.map((cat) => ({ - id: cat.id, - name: cat.name, - group: cat.group, - })); - } - - private async getFlowObjects(flow: any, models: Database): Promise { - const flowIdBranded = createBrandedValue(flow.id); - const flowObjects = await models.flowObject.find({ - where: { - flowID: flowIdBranded, - }, - }); - - return flowObjects; - } -} diff --git a/src/domain-services/flows/graphql/resolver.ts b/src/domain-services/flows/graphql/resolver.ts index baebb962..b78c4393 100644 --- a/src/domain-services/flows/graphql/resolver.ts +++ b/src/domain-services/flows/graphql/resolver.ts @@ -1,19 +1,20 @@ -import Flow, { FlowSearchResult, FlowSortField } from './types'; +import Flow, { FlowSearchResult } from './types'; import { Service } from 'typedi'; -import { Arg, Args, Ctx, Query, Resolver } from 'type-graphql'; -import { FlowService } from '../flow-service'; +import { Arg, Ctx, Query, Resolver } from 'type-graphql'; +import { FlowSearchService } from '../flow-search-service'; import Context from '../../Context'; @Service() @Resolver(Flow) export default class FlowResolver { - constructor(private flowService: FlowService) {} + constructor(private flowSearchService: FlowSearchService) {} @Query(() => FlowSearchResult) async searchFlows( @Ctx() context: Context, @Arg('first', { nullable: false }) first: number, - @Arg('afterCursor', { nullable: true }) afterCursor: string, + @Arg('afterCursor', { nullable: true }) afterCursor: number, + @Arg('beforeCursor', { nullable: true }) beforeCursor: number, @Arg('sortField', { nullable: true }) sortField: | 'id' @@ -38,10 +39,11 @@ export default class FlowResolver { | 'deletedAt', @Arg('sortOrder', { nullable: true }) sortOrder: 'asc' | 'desc' ): Promise { - return await this.flowService.search( + return await this.flowSearchService.search( context.models, first, afterCursor, + beforeCursor, sortField, sortOrder ); diff --git a/src/domain-services/flows/graphql/types.ts b/src/domain-services/flows/graphql/types.ts index f8864e51..5efe1be2 100644 --- a/src/domain-services/flows/graphql/types.ts +++ b/src/domain-services/flows/graphql/types.ts @@ -1,4 +1,5 @@ import { Field, ObjectType } from 'type-graphql'; +import { ItemPaged, PageInfo } from '../../../utils/graphql/pagination'; @ObjectType() export class FlowCategory { @@ -52,7 +53,7 @@ export class FlowUsageYear { } @ObjectType() -export default class Flow { +export default class Flow implements ItemPaged { @Field({ nullable: false }) id: number; @@ -76,70 +77,15 @@ export default class Flow { @Field(() => [FlowUsageYear], { nullable: false }) usageYears: FlowUsageYear[]; -} - -@ObjectType() -export class FlowEdge { - @Field({ nullable: false }) - node: Flow; @Field({ nullable: false }) - cursor: string; + cursor: number; } @ObjectType() -export class PageInfo { - @Field({ nullable: false }) - hasNextPage: boolean; - - @Field({ nullable: false }) - hasPreviousPage: boolean; - - @Field({ nullable: false }) - startCursor: string; - - @Field({ nullable: false }) - endCursor: string; - - @Field({ nullable: false }) - pageSize: number; - - @Field({ nullable: false }) - sortField: - | 'id' - | 'amountUSD' - | 'versionID' - | 'activeStatus' - | 'restricted' - | 'newMoney' - | 'flowDate' - | 'decisionDate' - | 'firstReportedDate' - | 'budgetYear' - | 'origAmount' - | 'origCurrency' - | 'exchangeRate' - | 'description' - | 'notes' - | 'versionStartDate' - | 'versionEndDate' - | 'createdAt' - | 'updatedAt' - | 'deletedAt'; - - @Field({ nullable: false }) - sortOrder: string; -} -@ObjectType() -export class FlowSearchResult { - @Field(() => [FlowEdge], { nullable: false }) - edges: FlowEdge[]; - - @Field(() => PageInfo, { nullable: false }) - pageInfo: PageInfo; - - @Field({ nullable: false }) - totalCount: number; +export class FlowSearchResult extends PageInfo { + @Field(() => [Flow], { nullable: false }) + items: Flow[]; } export type FlowSortField = diff --git a/src/domain-services/organizations/organization-service.ts b/src/domain-services/organizations/organization-service.ts index 36e5a525..66805bb8 100644 --- a/src/domain-services/organizations/organization-service.ts +++ b/src/domain-services/organizations/organization-service.ts @@ -1,24 +1,23 @@ -import { Database } from "@unocha/hpc-api-core/src/db"; -import { Service } from "typedi"; +import { Database } from '@unocha/hpc-api-core/src/db'; +import { Service } from 'typedi'; import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; @Service() export class OrganizationService { + async getFlowObjectOrganizations(organizationsFO: any[], models: Database) { + const organizations = await models.organization.find({ + where: { + id: { + [Op.IN]: organizationsFO.map((orgFO) => orgFO.objectID), + }, + }, + }); - async getFlowObjectOrganizations(organizationsFO: any[], models: Database){ - const organizations = await models.organization.find({ - where: { - id: { - [Op.IN]: organizationsFO.map((orgFO) => orgFO.objectID), - }, - }, - }); - - return organizations.map((org) => ({ - id: org.id, - refDirection: organizationsFO.find((orgFO) => orgFO.objectID === org.id) - .refDirection, - name: org.name, - })); - } -} \ No newline at end of file + return organizations.map((org) => ({ + id: org.id, + refDirection: organizationsFO.find((orgFO) => orgFO.objectID === org.id) + .refDirection, + name: org.name, + })); + } +} From 822e5ff3b0b5494ffa75f45c05bfdf89ed1baee4 Mon Sep 17 00:00:00 2001 From: manelcecs Date: Mon, 30 Oct 2023 10:39:21 +0100 Subject: [PATCH 15/19] Add tests for flow resolver --- tests/resolvers/flows.spec.ts | 293 ++++++++++++++++++++++++++++++++-- 1 file changed, 277 insertions(+), 16 deletions(-) diff --git a/tests/resolvers/flows.spec.ts b/tests/resolvers/flows.spec.ts index 53f9957d..364ed210 100644 --- a/tests/resolvers/flows.spec.ts +++ b/tests/resolvers/flows.spec.ts @@ -1,22 +1,283 @@ import ContextProvider from '../testContext'; +const fullQuery = `query { + searchFlows(first: 10, sortOrder: "DESC", sortField: "id") { + total + + items { + id + + createdAt + + amountUSD + + categories { + name + + group + } + + organizations { + refDirection + name + } + + locations { + name + } + + plans { + name + } + + usageYears { + year + direction + } + + cursor + } + + startCursor + + hasNextPage + + endCursor + + hasPreviousPage + + pageSize + } +}`; + +const simpliedQuery = `query { + searchFlows( + first: 10 + sortOrder: "DESC" + sortField: "id" + ) { + total + + items { + id + + createdAt + + amountUSD + + cursor + } + + startCursor + + hasNextPage + + endCursor + + hasPreviousPage + + pageSize + } +}`; describe('Query should return Flow search', () => { - - it('All data should be returned', async () => { - const response = await ContextProvider.Instance.apolloTestServer.executeOperation({ - query: 'query { searchFlows (first:10) { totalCount edges { node { id createdAt amountUSD category } cursor } pageInfo { startCursor hasNextPage endCursor hasPreviousPage pageSize } } }', - - }); - - expect(response).toBeDefined(); - expect(response.errors).toBeUndefined(); - expect(response.data).toBeDefined(); - const data = response.data as any; - expect(data.flows).toBeDefined(); - expect(data.flows.length).toBeGreaterThan(0); - const flows = data.flows[0]; - expect(flows.id).toBeDefined(); + it('All data should be returned', async () => { + const response = + await ContextProvider.Instance.apolloTestServer.executeOperation({ + query: fullQuery, }); -}); + expect(response).toBeDefined(); + expect(response.errors).toBeUndefined(); + expect(response.data).toBeDefined(); + + const data = response.data as any; + expect(data.searchFlows).toBeDefined(); + + const searchFlowsResponse = data.searchFlows; + expect(searchFlowsResponse.pageSize).toBe(10); + expect(searchFlowsResponse.hasPreviousPage).toBe(false); + expect(searchFlowsResponse.hasNextPage).toBe(true); + expect(searchFlowsResponse.endCursor).toBeDefined(); + expect(searchFlowsResponse.startCursor).toBeDefined(); + expect(searchFlowsResponse.total).toBeDefined(); + expect(searchFlowsResponse.items).toBeDefined(); + + const flows = searchFlowsResponse.items; + expect(flows.length).toBe(10); + + const flow = flows[0]; + expect(flow.id).toBeDefined(); + expect(flow.cursor).toBeDefined(); + expect(flow.createdAt).toBeDefined(); + expect(flow.amountUSD).toBeDefined(); + expect(flow.categories).toBeDefined(); + expect(flow.categories.length).toBeGreaterThan(0); + expect(flow.organizations).toBeDefined(); + expect(flow.organizations.length).toBeGreaterThan(0); + expect(flow.locations).toBeDefined(); + expect(flow.locations.length).toBeGreaterThan(0); + expect(flow.plans).toBeDefined(); + expect(flow.plans.length).toBeGreaterThan(0); + expect(flow.usageYears).toBeDefined(); + expect(flow.usageYears.length).toBeGreaterThan(0); + }); + + it('All data should be returned', async () => { + const response = + await ContextProvider.Instance.apolloTestServer.executeOperation({ + query: simpliedQuery, + }); + + expect(response).toBeDefined(); + expect(response.errors).toBeUndefined(); + expect(response.data).toBeDefined(); + + const data = response.data as any; + expect(data.searchFlows).toBeDefined(); + + const searchFlowsResponse = data.searchFlows; + expect(searchFlowsResponse.pageSize).toBe(10); + expect(searchFlowsResponse.hasPreviousPage).toBe(false); + expect(searchFlowsResponse.hasNextPage).toBe(true); + expect(searchFlowsResponse.endCursor).toBeDefined(); + expect(searchFlowsResponse.startCursor).toBeDefined(); + expect(searchFlowsResponse.total).toBeDefined(); + expect(searchFlowsResponse.items).toBeDefined(); + + const flows = searchFlowsResponse.items; + expect(flows.length).toBe(10); + + const flow = flows[0]; + expect(flow.id).toBeDefined(); + expect(flow.cursor).toBeDefined(); + expect(flow.createdAt).toBeDefined(); + expect(flow.amountUSD).toBeDefined(); + + expect(flow.categories).toBeUndefined(); + expect(flow.organizations).toBeUndefined(); + expect(flow.locations).toBeUndefined(); + expect(flow.plans).toBeUndefined(); + expect(flow.usageYears).toBeUndefined(); + }); + + it('Should return error when invalid sort field', async () => { + const response = + await ContextProvider.Instance.apolloTestServer.executeOperation({ + query: `query { + searchFlows( + first: 10 + sortOrder: "DESC" + sortField: "invalid" + ) { + total + + items { + id + + createdAt + + amountUSD + + cursor + } + } + }`, + }); + + expect(response).toBeDefined(); + expect(response.errors).toBeDefined(); + expect(response.data).toBeNull(); + }); + + it('Should return error when invalid afterCursor', async () => { + const response = + await ContextProvider.Instance.apolloTestServer.executeOperation({ + query: `query { + searchFlows( + first: 10 + sortOrder: "DESC" + sortField: "id" + afterCursor: "invalid" + ) { + total + + items { + id + + createdAt + + amountUSD + + cursor + } + } + }`, + }); + + expect(response).toBeDefined(); + expect(response.errors).toBeDefined(); + expect(response.data).toBeUndefined(); + }); + + it('Should return error when invalid beforeCursor', async () => { + const response = + await ContextProvider.Instance.apolloTestServer.executeOperation({ + query: `query { + searchFlows( + first: 10 + sortOrder: "DESC" + sortField: "id" + bedoreCursor: "invalid" + ) { + total + + items { + id + + createdAt + + amountUSD + + cursor + } + } + }`, + }); + + expect(response).toBeDefined(); + expect(response.errors).toBeDefined(); + expect(response.data).toBeUndefined(); + }); + + it('Should return error when both afterCursor and beforeCursor are provided', async () => { + const response = + await ContextProvider.Instance.apolloTestServer.executeOperation({ + query: `query { + searchFlows( + first: 10 + sortOrder: "DESC" + sortField: "id" + afterCursor: "20" + beforeCursor: "40" + ) { + total + + items { + id + + createdAt + + amountUSD + + cursor + } + } + }`, + }); + + expect(response).toBeDefined(); + expect(response.errors).toBeDefined(); + expect(response.data).toBeUndefined(); + }); +}); From ae70c3d1e35195dce7dbdae09836e34310cb6a2d Mon Sep 17 00:00:00 2001 From: manelcecs Date: Mon, 30 Oct 2023 10:40:08 +0100 Subject: [PATCH 16/19] Add Pagination utils with tests --- .../flows/flow-search-service.ts | 2 +- src/domain-services/flows/graphql/types.ts | 2 +- src/utils/graphql/pagination.ts | 64 +++++++++++++++++ tests/unit/pagination.spec.ts | 72 +++++++++++++++++++ 4 files changed, 138 insertions(+), 2 deletions(-) create mode 100644 src/utils/graphql/pagination.ts create mode 100644 tests/unit/pagination.spec.ts diff --git a/src/domain-services/flows/flow-search-service.ts b/src/domain-services/flows/flow-search-service.ts index c48d3ade..956048bf 100644 --- a/src/domain-services/flows/flow-search-service.ts +++ b/src/domain-services/flows/flow-search-service.ts @@ -129,7 +129,7 @@ export class FlowSearchService { ); return { - items, + flows: items, hasNextPage: first <= flows.length, hasPreviousPage: afterCursor !== undefined, startCursor: flows.length ? flows[0].id.valueOf() : 0, diff --git a/src/domain-services/flows/graphql/types.ts b/src/domain-services/flows/graphql/types.ts index 5efe1be2..5a2c89c3 100644 --- a/src/domain-services/flows/graphql/types.ts +++ b/src/domain-services/flows/graphql/types.ts @@ -85,7 +85,7 @@ export default class Flow implements ItemPaged { @ObjectType() export class FlowSearchResult extends PageInfo { @Field(() => [Flow], { nullable: false }) - items: Flow[]; + flows: Flow[]; } export type FlowSortField = diff --git a/src/utils/graphql/pagination.ts b/src/utils/graphql/pagination.ts new file mode 100644 index 00000000..bdc8008c --- /dev/null +++ b/src/utils/graphql/pagination.ts @@ -0,0 +1,64 @@ +import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; +import { createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; +import { ObjectType, Field } from 'type-graphql'; + +export interface ItemPaged { + cursor: number; +} + +@ObjectType() +export class PageInfo { + @Field({ nullable: false }) + hasNextPage: boolean; + + @Field({ nullable: false }) + hasPreviousPage: boolean; + + @Field({ nullable: false }) + startCursor: number; + + @Field({ nullable: false }) + endCursor: number; + + @Field({ nullable: false }) + pageSize: number; + + @Field(() => String, { nullable: false }) + sortField: TSortFields; + + @Field({ nullable: false }) + sortOrder: string; + + @Field({ nullable: false }) + total: number; +} + +export function prepareConditionFromCursor( + sortCondition: { column: string; order: 'asc' | 'desc' }, + afterCursor?: number, + beforeCursor?: number +): any { + if (afterCursor && beforeCursor) { + throw new Error('Cannot use before and after cursor at the same time'); + } + + if (afterCursor || beforeCursor) { + const isAscending = sortCondition.order === 'asc'; + const cursorValue = afterCursor || beforeCursor; + + let op; + if (isAscending) { + op = afterCursor ? Op.GT : Op.LT; + } else { + op = beforeCursor ? Op.GT : Op.LT; + } + + return { + id: { + [op]: createBrandedValue(cursorValue), + }, + }; + } + + return {}; +} diff --git a/tests/unit/pagination.spec.ts b/tests/unit/pagination.spec.ts new file mode 100644 index 00000000..8d889a08 --- /dev/null +++ b/tests/unit/pagination.spec.ts @@ -0,0 +1,72 @@ +import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; +import { prepareConditionFromCursor } from '../../src/utils/graphql/pagination'; + +describe('Based on cursor and order for pagination', () => { + describe('Order is asc', () => { + const sortCondition = { column: 'id', order: 'asc' as const }; + + it("Should return 'GT' when afterCursor is defined", () => { + const afterCursor = 1; + const beforeCursor = undefined; + const result = prepareConditionFromCursor( + sortCondition, + afterCursor, + beforeCursor + ); + expect(result.id).toEqual({ [Op.GT]: afterCursor }); + }); + + it("Should return 'LT' when beforeCursor is defined", () => { + const afterCursor = undefined; + const beforeCursor = 1; + const result = prepareConditionFromCursor( + sortCondition, + afterCursor, + beforeCursor + ); + expect(result.id).toEqual({ [Op.LT]: beforeCursor }); + }); + + it('Should throw an error when both afterCursor and beforeCursor are defined', () => { + const afterCursor = 1; + const beforeCursor = 2; + expect(() => + prepareConditionFromCursor(sortCondition, afterCursor, beforeCursor) + ).toThrowError('Cannot use before and after cursor at the same time'); + }); + }); + + describe("Order is 'desc'", () => { + const sortCondition = { column: 'id', order: 'desc' as const }; + + it("Should return 'LT' when afterCursor is defined", () => { + const afterCursor = 1; + const beforeCursor = undefined; + const result = prepareConditionFromCursor( + sortCondition, + afterCursor, + beforeCursor + ); + expect(result.id).toEqual({ [Op.LT]: afterCursor }); + }); + + it("Should return 'GT' when beforeCursor is defined", () => { + const afterCursor = undefined; + const beforeCursor = 1; + const result = prepareConditionFromCursor( + sortCondition, + afterCursor, + beforeCursor + ); + expect(result.id).toEqual({ [Op.GT]: beforeCursor }); + }); + + it('Should throw an error when both afterCursor and beforeCursor are defined', () => { + const afterCursor = 1; + const beforeCursor = 2; + expect(() => + prepareConditionFromCursor(sortCondition, afterCursor, beforeCursor) + ).toThrowError('Cannot use before and after cursor at the same time'); + }); + }); +}); From dd2aa2bb48abff2fbf781633ec14942435ebd06a Mon Sep 17 00:00:00 2001 From: manelcecs Date: Thu, 2 Nov 2023 13:40:44 +0100 Subject: [PATCH 17/19] Refactor service to increase Query Pool using IN strategy --- .../categories/category-service.ts | 49 ++++- .../flows/flow-search-service.ts | 192 +++++++++--------- src/domain-services/flows/graphql/resolver.ts | 4 +- .../location/location-service.ts | 31 ++- .../organizations/organization-service.ts | 49 ++++- src/domain-services/plans/plan-service.ts | 22 +- .../usage-years/usage-year-service.ts | 39 +++- 7 files changed, 257 insertions(+), 129 deletions(-) diff --git a/src/domain-services/categories/category-service.ts b/src/domain-services/categories/category-service.ts index 76f7307d..fb0f70de 100644 --- a/src/domain-services/categories/category-service.ts +++ b/src/domain-services/categories/category-service.ts @@ -3,14 +3,20 @@ import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; import { createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; import { Service } from 'typedi'; import { FlowCategory } from '../flows/graphql/types'; +import { FlowId } from '@unocha/hpc-api-core/src/db/models/flow'; +import { InstanceDataOfModel } from '@unocha/hpc-api-core/src/db/util/raw-model'; @Service() export class CategoryService { - async getFlowCategory(flow: any, models: Database): Promise { - const flowIdBranded = createBrandedValue(flow.id); + async getCategoriesForFlows( + flowsIds: FlowId[], + models: Database + ): Promise> { const flowLinks = await models.flowLink.find({ where: { - childID: flowIdBranded, + childID: { + [Op.IN]: flowsIds, + }, }, }); @@ -23,7 +29,6 @@ export class CategoryService { objectID: { [Op.IN]: flowLinksBrandedIds, }, - versionID: flow.versionID, }, }); @@ -35,10 +40,36 @@ export class CategoryService { }, }); - return categories.map((cat) => ({ - id: cat.id, - name: cat.name, - group: cat.group, - })); + // Group categories by flow ID for easy mapping + const categoriesMap = new Map(); + + // Populate the map with categories for each flow + categoriesRef.forEach((catRef) => { + const flowId = catRef.objectID.valueOf(); + + if (!categoriesMap.has(flowId)) { + categoriesMap.set(flowId, []); + } + + const categoriesForFlow = categoriesMap.get(flowId)!; + + const category = categories.find((cat) => cat.id === catRef.categoryID); + + if (!category) { + throw new Error(`Category with ID ${catRef.categoryID} does not exist`); + } + + categoriesForFlow.push(this.mapCategoryToFlowCategory(category)); + }); + + return categoriesMap; } + + private mapCategoryToFlowCategory = ( + category: InstanceDataOfModel + ): FlowCategory => ({ + id: category.id, + name: category.name, + group: category.group, + }); } diff --git a/src/domain-services/flows/flow-search-service.ts b/src/domain-services/flows/flow-search-service.ts index 956048bf..52df18e0 100644 --- a/src/domain-services/flows/flow-search-service.ts +++ b/src/domain-services/flows/flow-search-service.ts @@ -1,13 +1,5 @@ import { Service } from 'typedi'; -import { - FlowCategory, - FlowLocation, - FlowOrganization, - FlowPlan, - FlowSearchResult, - FlowSortField, - FlowUsageYear, -} from './graphql/types'; +import { FlowSearchResult, FlowSortField } from './graphql/types'; import { Database } from '@unocha/hpc-api-core/src/db/type'; import { createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; import { OrganizationService } from '../organizations/organization-service'; @@ -15,7 +7,8 @@ import { LocationService } from '../location/location-service'; import { PlanService } from '../plans/plan-service'; import { UsageYearService } from '../usage-years/usage-year-service'; import { CategoryService } from '../categories/category-service'; -import { prepareConditionFromCursor } from '../../utils/graphql/pagination'; +import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; +import { FlowId } from '@unocha/hpc-api-core/src/db/models/flow'; @Service() export class FlowSearchService { @@ -29,7 +22,7 @@ export class FlowSearchService { async search( models: Database, - first: number, + limit: number, afterCursor?: number, beforeCursor?: number, sortField?: FlowSortField, @@ -44,93 +37,107 @@ export class FlowSearchService { order: sortOrder ?? 'desc', }; - let flows; - const countRes = await models.flow.count(); - const count = countRes[0] as { count: number }; - - const hasCursor = afterCursor || beforeCursor; - - if (hasCursor) { - const condition = prepareConditionFromCursor( - sortCondition, - afterCursor, - beforeCursor - ); + const limitComputed = limit + 1; // Fetch one more item to check for hasNextPage - flows = await models.flow.find({ - orderBy: sortCondition, - limit: first, - where: { - ...condition, + let condition; + if (afterCursor) { + condition = { + id: { + [Op.GT]: createBrandedValue(afterCursor), }, - }); - } else { - flows = await models.flow.find({ + }; + } else if (beforeCursor) { + condition = { + id: { + [Op.GT]: createBrandedValue(beforeCursor), + }, + }; + } + condition = { + ...condition, + activeStatus: true, + }; + + const [flowsIds, countRes] = await Promise.all([ + models.flow.find({ orderBy: sortCondition, - limit: first, - }); + limit: limitComputed, + where: condition, + }), + models.flow.count(), + ]); + + const hasNextPage = flowsIds.length > limit; + if (hasNextPage) { + flowsIds.pop(); // Remove the extra item used to check hasNextPage } - const items = await Promise.all( - flows.map(async (flow) => { - const categories: FlowCategory[] = - await this.categoryService.getFlowCategory(flow, models); - - const organizationsFO: any[] = []; - const locationsFO: any[] = []; - const plansFO: any[] = []; - const usageYearsFO: any[] = []; - - await this.getFlowObjects( - flow, - models, - organizationsFO, - locationsFO, - plansFO, - usageYearsFO - ); - - const organizationsPromise: Promise = - this.organizationService.getFlowObjectOrganizations( - organizationsFO, - models - ); - - const locationsPromise: Promise = - this.locationService.getFlowObjectLocations(locationsFO, models); - - const plansPromise: Promise = - this.planService.getFlowObjectPlans(plansFO, models); - - const usageYearsPromise: Promise = - this.usageYearService.getFlowObjectUsageYears(usageYearsFO, models); - - const [organizations, locations, plans, usageYears] = await Promise.all( - [ - organizationsPromise, - locationsPromise, - plansPromise, - usageYearsPromise, - ] - ); - - return { - id: flow.id.valueOf(), - amountUSD: flow.amountUSD.toString(), - createdAt: flow.createdAt, - categories: categories, - organizations: organizations, - locations: locations, - plans: plans, - usageYears: usageYears, - cursor: flow.id.valueOf(), - }; - }) + const count = countRes[0] as { count: number }; + + const flowIdsList = flowsIds.map((flow) => flow.id); + + const organizationsFO: any[] = []; + const locationsFO: any[] = []; + const plansFO: any[] = []; + const usageYearsFO: any[] = []; + + await this.getFlowObjects( + flowIdsList, + models, + organizationsFO, + locationsFO, + plansFO, + usageYearsFO ); + const [ + flows, + categoriesMap, + organizationsMap, + locationsMap, + plansMap, + usageYearsMap, + ] = await Promise.all([ + models.flow.find({ + where: { + id: { + [Op.IN]: flowIdsList, + }, + }, + }), + this.categoryService.getCategoriesForFlows(flowIdsList, models), + this.organizationService.getOrganizationsForFlows( + organizationsFO, + models + ), + this.locationService.getLocationsForFlows(locationsFO, models), + this.planService.getPlansForFlows(plansFO, models), + this.usageYearService.getUsageYearsForFlows(usageYearsFO, models), + ]); + + const items = flows.map((flow) => { + const categories = categoriesMap.get(flow.id) || []; + const organizations = organizationsMap.get(flow.id) || []; + const locations = locationsMap.get(flow.id) || []; + const plans = plansMap.get(flow.id) || []; + const usageYears = usageYearsMap.get(flow.id) || []; + + return { + id: flow.id.valueOf(), + amountUSD: flow.amountUSD.toString(), + createdAt: flow.createdAt, + categories, + organizations, + locations, + plans, + usageYears, + cursor: flow.id.valueOf(), + }; + }); + return { flows: items, - hasNextPage: first <= flows.length, + hasNextPage: limit <= flows.length, hasPreviousPage: afterCursor !== undefined, startCursor: flows.length ? flows[0].id.valueOf() : 0, endCursor: flows.length ? flows[flows.length - 1].id.valueOf() : 0, @@ -142,17 +149,18 @@ export class FlowSearchService { } private async getFlowObjects( - flow: any, + flowIds: FlowId[], models: Database, organizationsFO: any[], locationsFO: any[], plansFO: any[], usageYearsFO: any[] ): Promise { - const flowIdBranded = createBrandedValue(flow.id); const flowObjects = await models.flowObject.find({ where: { - flowID: flowIdBranded, + flowID: { + [Op.IN]: flowIds, + }, }, }); diff --git a/src/domain-services/flows/graphql/resolver.ts b/src/domain-services/flows/graphql/resolver.ts index b78c4393..890c7d55 100644 --- a/src/domain-services/flows/graphql/resolver.ts +++ b/src/domain-services/flows/graphql/resolver.ts @@ -12,7 +12,7 @@ export default class FlowResolver { @Query(() => FlowSearchResult) async searchFlows( @Ctx() context: Context, - @Arg('first', { nullable: false }) first: number, + @Arg('limit', { nullable: false }) limit: number, @Arg('afterCursor', { nullable: true }) afterCursor: number, @Arg('beforeCursor', { nullable: true }) beforeCursor: number, @Arg('sortField', { nullable: true }) @@ -41,7 +41,7 @@ export default class FlowResolver { ): Promise { return await this.flowSearchService.search( context.models, - first, + limit, afterCursor, beforeCursor, sortField, diff --git a/src/domain-services/location/location-service.ts b/src/domain-services/location/location-service.ts index fc9c6739..c46a8b6d 100644 --- a/src/domain-services/location/location-service.ts +++ b/src/domain-services/location/location-service.ts @@ -29,10 +29,10 @@ export class LocationService { }); } - async getFlowObjectLocations( + async getLocationsForFlows( locationsFO: any[], models: Database - ): Promise { + ): Promise> { const locations = await models.location.find({ where: { id: { @@ -41,9 +41,28 @@ export class LocationService { }, }); - return locations.map((loc) => ({ - id: loc.id.valueOf(), - name: loc.name!, - })); + const locationsMap = new Map(); + + locationsFO.forEach((locFO) => { + const flowId = locFO.flowID; + if (!locationsMap.has(flowId)) { + locationsMap.set(flowId, []); + } + const location = locations.find((loc) => loc.id === locFO.objectID); + + if (!location) { + throw new Error(`Location with ID ${locFO.objectID} does not exist`); + } + const locationMapped = this.mapLocationsToFlowLocations(location); + locationsMap.get(flowId)!.push(locationMapped); + }); + return locationsMap; + } + + private mapLocationsToFlowLocations(location: any) { + return { + id: location.id, + name: location.name, + }; } } diff --git a/src/domain-services/organizations/organization-service.ts b/src/domain-services/organizations/organization-service.ts index 66805bb8..215045ff 100644 --- a/src/domain-services/organizations/organization-service.ts +++ b/src/domain-services/organizations/organization-service.ts @@ -4,7 +4,7 @@ import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; @Service() export class OrganizationService { - async getFlowObjectOrganizations(organizationsFO: any[], models: Database) { + async getOrganizationsForFlows(organizationsFO: any[], models: Database) { const organizations = await models.organization.find({ where: { id: { @@ -13,11 +13,46 @@ export class OrganizationService { }, }); - return organizations.map((org) => ({ - id: org.id, - refDirection: organizationsFO.find((orgFO) => orgFO.objectID === org.id) - .refDirection, - name: org.name, - })); + const organizationsMap = new Map(); + + organizationsFO.forEach((orgFO) => { + const flowId = orgFO.flowID; + if (!organizationsMap.has(flowId)) { + organizationsMap.set(flowId, []); + } + const organization = organizations.find( + (org) => org.id === orgFO.objectID + ); + + if (!organization) { + throw new Error( + `Organization with ID ${orgFO.objectID} does not exist` + ); + } + organizationsMap.get(flowId)!.push(organization); + }); + organizations.forEach((org) => { + const refDirection = organizationsFO.find( + (orgFO) => orgFO.objectID === org.id + ).refDirection; + + organizationsMap.set( + org.id.valueOf(), + this.mapOrganizationsToOrganizationFlows(org, refDirection) + ); + }); + + return organizationsMap; + } + + private mapOrganizationsToOrganizationFlows( + organization: any, + refDirection: any + ) { + return { + id: organization.id, + refDirection: refDirection, + name: organization.name, + }; } } diff --git a/src/domain-services/plans/plan-service.ts b/src/domain-services/plans/plan-service.ts index e39283b1..33430d04 100644 --- a/src/domain-services/plans/plan-service.ts +++ b/src/domain-services/plans/plan-service.ts @@ -47,10 +47,10 @@ export class PlanService { return years.map((y) => y.year); } - async getFlowObjectPlans( + async getPlansForFlows( plansFO: any[], models: Database - ): Promise { + ): Promise> { const plans = await models.plan.find({ where: { id: { @@ -59,7 +59,7 @@ export class PlanService { }, }); - const flowPlans: FlowPlan[] = []; + const plansMap = new Map(); for (const plan of plans) { const planVersion = await models.planVersion.find({ @@ -69,12 +69,22 @@ export class PlanService { }, }); - flowPlans.push({ + const planMapped = { id: plan.id.valueOf(), name: planVersion[0].name, - }); + }; + + const flowId = plansFO.find( + (planFO) => planFO.objectID === plan.id + ).flowID; + + if (!plansMap.has(flowId)) { + plansMap.set(flowId, []); + } + + plansMap.get(flowId)!.push(planMapped); } - return flowPlans; + return plansMap; } } diff --git a/src/domain-services/usage-years/usage-year-service.ts b/src/domain-services/usage-years/usage-year-service.ts index 7712f235..e09197d2 100644 --- a/src/domain-services/usage-years/usage-year-service.ts +++ b/src/domain-services/usage-years/usage-year-service.ts @@ -5,10 +5,10 @@ import { FlowUsageYear } from '../flows/graphql/types'; @Service() export class UsageYearService { - async getFlowObjectUsageYears( + async getUsageYearsForFlows( usageYearsFO: any[], models: Database - ): Promise { + ): Promise> { const usageYears = await models.usageYear.find({ where: { id: { @@ -17,11 +17,36 @@ export class UsageYearService { }, }); - return usageYears.map((usageYear) => ({ + const usageYearsMap = new Map(); + + usageYearsFO.forEach((usageYearFO) => { + const flowId = usageYearFO.flowID; + if (!usageYearsMap.has(flowId)) { + usageYearsMap.set(flowId, []); + } + const usageYear = usageYears.find( + (usageYear) => usageYear.id === usageYearFO.objectID + ); + + if (!usageYear) { + throw new Error( + `Usage year with ID ${usageYearFO.objectID} does not exist` + ); + } + const usageYearMapped = this.mapUsageYearsToFlowUsageYears( + usageYear, + usageYearFO.refDirection + ); + usageYearsMap.get(flowId)!.push(usageYearMapped); + }); + + return usageYearsMap; + } + + private mapUsageYearsToFlowUsageYears(usageYear: any, refDirection: any) { + return { year: usageYear.year, - direction: usageYearsFO.find( - (usageYearFO) => usageYearFO.objectID === usageYear.id - ).refDirection, - })); + direction: refDirection, + }; } } From e86d58a379a31b9231bb0dc23c409850f2ec99a8 Mon Sep 17 00:00:00 2001 From: manelcecs Date: Mon, 6 Nov 2023 08:53:47 +0100 Subject: [PATCH 18/19] Add multiple fields to response --- .../categories/category-service.ts | 52 +++--- .../external-reference-service.ts | 54 ++++++ .../flows/flow-link-service.ts | 38 ++++ .../flows/flow-search-service.ts | 104 +++++++---- src/domain-services/flows/graphql/args.ts | 15 ++ src/domain-services/flows/graphql/resolver.ts | 45 ++--- src/domain-services/flows/graphql/types.ts | 164 ++++++++++++++++-- .../report-details/report-detail-service.ts | 61 +++++++ src/utils/graphql/pagination.ts | 30 +++- 9 files changed, 463 insertions(+), 100 deletions(-) create mode 100644 src/domain-services/external-reference/external-reference-service.ts create mode 100644 src/domain-services/flows/flow-link-service.ts create mode 100644 src/domain-services/flows/graphql/args.ts create mode 100644 src/domain-services/report-details/report-detail-service.ts diff --git a/src/domain-services/categories/category-service.ts b/src/domain-services/categories/category-service.ts index fb0f70de..7d8464f8 100644 --- a/src/domain-services/categories/category-service.ts +++ b/src/domain-services/categories/category-service.ts @@ -3,26 +3,19 @@ import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; import { createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; import { Service } from 'typedi'; import { FlowCategory } from '../flows/graphql/types'; -import { FlowId } from '@unocha/hpc-api-core/src/db/models/flow'; import { InstanceDataOfModel } from '@unocha/hpc-api-core/src/db/util/raw-model'; +// TODO: add proper type for flowLinks @Service() export class CategoryService { async getCategoriesForFlows( - flowsIds: FlowId[], + flowLinks: Map, models: Database ): Promise> { - const flowLinks = await models.flowLink.find({ - where: { - childID: { - [Op.IN]: flowsIds, - }, - }, - }); - - const flowLinksBrandedIds = flowLinks.map((flowLink) => - createBrandedValue(flowLink.parentID) - ); + const flowLinksBrandedIds = []; + for (const flowLink of flowLinks.keys()) { + flowLinksBrandedIds.push(createBrandedValue(flowLink)); + } const categoriesRef = await models.categoryRef.find({ where: { @@ -59,17 +52,34 @@ export class CategoryService { throw new Error(`Category with ID ${catRef.categoryID} does not exist`); } - categoriesForFlow.push(this.mapCategoryToFlowCategory(category)); + categoriesForFlow.push(this.mapCategoryToFlowCategory(category, catRef)); }); return categoriesMap; } - private mapCategoryToFlowCategory = ( - category: InstanceDataOfModel - ): FlowCategory => ({ - id: category.id, - name: category.name, - group: category.group, - }); + private mapCategoryToFlowCategory( + category: InstanceDataOfModel, + categoryRef: InstanceDataOfModel + ): FlowCategory { + return { + id: category.id, + name: category.name, + group: category.group, + createdAt: category.createdAt.toISOString(), + updatedAt: category.updatedAt.toISOString(), + description: category.description ?? '', + parentID: category.parentID ? category.parentID.valueOf() : 0, + code: category.code ?? '', + includeTotals: category.includeTotals ?? false, + categoryRef: { + objectID: categoryRef.objectID.valueOf(), + versionID: categoryRef.versionID, + objectType: categoryRef.objectType, + categoryID: category.id.valueOf(), + createdAt: categoryRef.createdAt.toISOString(), + updatedAt: categoryRef.updatedAt.toISOString(), + }, + }; + } } diff --git a/src/domain-services/external-reference/external-reference-service.ts b/src/domain-services/external-reference/external-reference-service.ts new file mode 100644 index 00000000..5c016473 --- /dev/null +++ b/src/domain-services/external-reference/external-reference-service.ts @@ -0,0 +1,54 @@ +import { Database } from '@unocha/hpc-api-core/src/db'; +import { FlowId } from '@unocha/hpc-api-core/src/db/models/flow'; +import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; +import { InstanceDataOfModel } from '@unocha/hpc-api-core/src/db/util/raw-model'; +import { Service } from 'typedi'; +import { FlowExternalReference } from '../flows/graphql/types'; + +@Service() +export class ExternalReferenceService { + async getExternalReferencesForFlows(flowIDs: FlowId[], models: Database) { + const externalReferences = await models.externalReference.find({ + where: { + flowID: { + [Op.IN]: flowIDs, + }, + }, + skipValidation: true, + }); + + const externalReferencesMap = new Map(); + + flowIDs.forEach((flowID) => { + externalReferencesMap.set(flowID, []); + }); + + externalReferences.forEach((externalReference) => { + const flowID = externalReference.flowID; + const externalReferenceMapped = + this.mapExternalReferenceToExternalReferenceFlows(externalReference); + + if (!externalReferencesMap.has(flowID)) { + externalReferencesMap.set(flowID, []); + } + + externalReferencesMap.get(flowID).push(externalReferenceMapped); + }); + + return externalReferencesMap; + } + + private mapExternalReferenceToExternalReferenceFlows( + externalReference: InstanceDataOfModel + ): FlowExternalReference { + return { + systemID: externalReference.systemID, + flowID: externalReference.flowID, + externalRecordID: externalReference.externalRecordID, + externalRecordDate: externalReference.externalRecordDate.toISOString(), + createdAt: externalReference.createdAt.toISOString(), + updatedAt: externalReference.updatedAt.toISOString(), + versionID: externalReference.versionID ?? 0, + }; + } +} diff --git a/src/domain-services/flows/flow-link-service.ts b/src/domain-services/flows/flow-link-service.ts new file mode 100644 index 00000000..1b21e7fd --- /dev/null +++ b/src/domain-services/flows/flow-link-service.ts @@ -0,0 +1,38 @@ +import { FlowId } from '@unocha/hpc-api-core/src/db/models/flow'; +import { Database } from '@unocha/hpc-api-core/src/db/type'; +import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; +import { Service } from 'typedi'; + +@Service() +export class FlowLinkService { + async getFlowLinksForFlows( + flowIds: FlowId[], + models: Database + ): Promise> { + const flowLinks = await models.flowLink.find({ + where: { + childID: { + [Op.IN]: flowIds, + }, + }, + }); + + // Group flowLinks by flow ID for easy mapping + const flowLinksMap = new Map(); + + // Populate the map with flowLinks for each flow + flowLinks.forEach((flowLink) => { + const flowId = flowLink.childID.valueOf(); + + if (!flowLinksMap.has(flowId)) { + flowLinksMap.set(flowId, []); + } + + const flowLinksForFlow = flowLinksMap.get(flowId)!; + + flowLinksForFlow.push(flowLink); + }); + + return flowLinksMap; + } +} diff --git a/src/domain-services/flows/flow-search-service.ts b/src/domain-services/flows/flow-search-service.ts index 52df18e0..37a8d858 100644 --- a/src/domain-services/flows/flow-search-service.ts +++ b/src/domain-services/flows/flow-search-service.ts @@ -9,6 +9,9 @@ import { UsageYearService } from '../usage-years/usage-year-service'; import { CategoryService } from '../categories/category-service'; import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; import { FlowId } from '@unocha/hpc-api-core/src/db/models/flow'; +import { FlowLinkService } from './flow-link-service'; +import { ExternalReferenceService } from '../external-reference/external-reference-service'; +import { ReportDetailService } from '../report-details/report-detail-service'; @Service() export class FlowSearchService { @@ -17,24 +20,28 @@ export class FlowSearchService { private readonly locationService: LocationService, private readonly planService: PlanService, private readonly usageYearService: UsageYearService, - private readonly categoryService: CategoryService + private readonly categoryService: CategoryService, + private readonly flowLinkService: FlowLinkService, + private readonly externalReferenceService: ExternalReferenceService, + private readonly reportDetailService: ReportDetailService ) {} async search( models: Database, - limit: number, + limit: number = 50, + sortOrder: 'asc' | 'desc' = 'desc', + sortField: FlowSortField = 'id', afterCursor?: number, beforeCursor?: number, - sortField?: FlowSortField, - sortOrder?: 'asc' | 'desc' + filters?: any ): Promise { if (beforeCursor && afterCursor) { throw new Error('Cannot use before and after cursor at the same time'); } const sortCondition = { - column: sortField ?? 'id', - order: sortOrder ?? 'desc', + column: sortField, + order: sortOrder, }; const limitComputed = limit + 1; // Fetch one more item to check for hasNextPage @@ -49,63 +56,70 @@ export class FlowSearchService { } else if (beforeCursor) { condition = { id: { - [Op.GT]: createBrandedValue(beforeCursor), + [Op.LT]: createBrandedValue(beforeCursor), }, }; } - condition = { - ...condition, - activeStatus: true, - }; - const [flowsIds, countRes] = await Promise.all([ + if (filters?.activeStatus !== undefined) { + condition = { + ...condition, + activeStatus: filters.activeStatus, + }; + } + + const [flows, countRes] = await Promise.all([ models.flow.find({ orderBy: sortCondition, limit: limitComputed, where: condition, }), - models.flow.count(), + models.flow.count({ where: condition }), ]); - const hasNextPage = flowsIds.length > limit; + const hasNextPage = flows.length > limit; if (hasNextPage) { - flowsIds.pop(); // Remove the extra item used to check hasNextPage + flows.pop(); // Remove the extra item used to check hasNextPage } const count = countRes[0] as { count: number }; - const flowIdsList = flowsIds.map((flow) => flow.id); + const flowIds = flows.map((flow) => flow.id); const organizationsFO: any[] = []; const locationsFO: any[] = []; const plansFO: any[] = []; const usageYearsFO: any[] = []; - await this.getFlowObjects( - flowIdsList, - models, - organizationsFO, - locationsFO, - plansFO, - usageYearsFO + const [externalReferencesMap] = await Promise.all([ + this.externalReferenceService.getExternalReferencesForFlows( + flowIds, + models + ), + this.getFlowObjects( + flowIds, + models, + organizationsFO, + locationsFO, + plansFO, + usageYearsFO + ), + ]); + + const flowLinksMap = await this.flowLinkService.getFlowLinksForFlows( + flowIds, + models ); const [ - flows, categoriesMap, organizationsMap, locationsMap, plansMap, usageYearsMap, + reportDetailsMap, ] = await Promise.all([ - models.flow.find({ - where: { - id: { - [Op.IN]: flowIdsList, - }, - }, - }), - this.categoryService.getCategoriesForFlows(flowIdsList, models), + this.categoryService.getCategoriesForFlows(flowLinksMap, models), this.organizationService.getOrganizationsForFlows( organizationsFO, models @@ -113,6 +127,7 @@ export class FlowSearchService { this.locationService.getLocationsForFlows(locationsFO, models), this.planService.getPlansForFlows(plansFO, models), this.usageYearService.getUsageYearsForFlows(usageYearsFO, models), + this.reportDetailService.getReportDetailsForFlows(flowIds, models), ]); const items = flows.map((flow) => { @@ -121,16 +136,39 @@ export class FlowSearchService { const locations = locationsMap.get(flow.id) || []; const plans = plansMap.get(flow.id) || []; const usageYears = usageYearsMap.get(flow.id) || []; + const externalReferences = externalReferencesMap.get(flow.id) || []; + const reportDetails = reportDetailsMap.get(flow.id) || []; + + const childIDs: number[] = (flowLinksMap.get(flow.id) || []).map( + (flowLink) => flowLink.childID.valueOf() + ) as number[]; + + const parentIDs: number[] = flowLinksMap + .get(flow.id) + ?.map((flowLink) => flowLink.parentID.valueOf()) as number[]; return { + // Mandatory fields id: flow.id.valueOf(), + versionID: flow.versionID, amountUSD: flow.amountUSD.toString(), - createdAt: flow.createdAt, + updatedAt: flow.updatedAt.toISOString(), + activeStatus: flow.activeStatus, + restricted: flow.restricted, + // Optional fields categories, organizations, locations, plans, usageYears, + childIDs, + parentIDs, + origAmount: flow.origAmount ? flow.origAmount.toString() : '', + origCurrency: flow.origCurrency ? flow.origCurrency.toString() : '', + externalReferences, + reportDetails, + parkedParentSource: 'placeholder', + // Paged item field cursor: flow.id.valueOf(), }; }); diff --git a/src/domain-services/flows/graphql/args.ts b/src/domain-services/flows/graphql/args.ts new file mode 100644 index 00000000..d55b3137 --- /dev/null +++ b/src/domain-services/flows/graphql/args.ts @@ -0,0 +1,15 @@ +import { ArgsType, Field, InputType } from 'type-graphql'; +import { FlowSortField } from './types'; +import { PaginationArgs } from '../../../utils/graphql/pagination'; + +@InputType() +export class SearchFlowsFilters { + @Field({ nullable: true }) + activeStatus: boolean; +} + +@ArgsType() +export class SearchFlowsArgs extends PaginationArgs { + @Field(() => SearchFlowsFilters, { nullable: true }) + filters: SearchFlowsFilters; +} diff --git a/src/domain-services/flows/graphql/resolver.ts b/src/domain-services/flows/graphql/resolver.ts index 890c7d55..342a0df9 100644 --- a/src/domain-services/flows/graphql/resolver.ts +++ b/src/domain-services/flows/graphql/resolver.ts @@ -1,8 +1,10 @@ -import Flow, { FlowSearchResult } from './types'; +import Flow, { FlowSearchResult, FlowSortField } from './types'; import { Service } from 'typedi'; -import { Arg, Ctx, Query, Resolver } from 'type-graphql'; +import { Arg, Args, Ctx, Query, Resolver } from 'type-graphql'; import { FlowSearchService } from '../flow-search-service'; import Context from '../../Context'; +import { SearchFlowsFilters } from './args'; +import { PaginationArgs } from '../../../utils/graphql/pagination'; @Service() @Resolver(Flow) @@ -12,40 +14,23 @@ export default class FlowResolver { @Query(() => FlowSearchResult) async searchFlows( @Ctx() context: Context, - @Arg('limit', { nullable: false }) limit: number, - @Arg('afterCursor', { nullable: true }) afterCursor: number, - @Arg('beforeCursor', { nullable: true }) beforeCursor: number, - @Arg('sortField', { nullable: true }) - sortField: - | 'id' - | 'amountUSD' - | 'versionID' - | 'activeStatus' - | 'restricted' - | 'newMoney' - | 'flowDate' - | 'decisionDate' - | 'firstReportedDate' - | 'budgetYear' - | 'origAmount' - | 'origCurrency' - | 'exchangeRate' - | 'description' - | 'notes' - | 'versionStartDate' - | 'versionEndDate' - | 'createdAt' - | 'updatedAt' - | 'deletedAt', - @Arg('sortOrder', { nullable: true }) sortOrder: 'asc' | 'desc' + @Args(() => PaginationArgs, { validate: false }) + pagination: PaginationArgs, + @Arg('activeStatus', { nullable: true }) activeStatus: boolean ): Promise { + const { limit, sortOrder, sortField, afterCursor, beforeCursor } = + pagination; + const filters: SearchFlowsFilters = { + activeStatus, + }; return await this.flowSearchService.search( context.models, limit, + sortOrder, + sortField, afterCursor, beforeCursor, - sortField, - sortOrder + filters ); } } diff --git a/src/domain-services/flows/graphql/types.ts b/src/domain-services/flows/graphql/types.ts index 5a2c89c3..105b9c7a 100644 --- a/src/domain-services/flows/graphql/types.ts +++ b/src/domain-services/flows/graphql/types.ts @@ -2,8 +2,29 @@ import { Field, ObjectType } from 'type-graphql'; import { ItemPaged, PageInfo } from '../../../utils/graphql/pagination'; @ObjectType() -export class FlowCategory { +export class FlowCategoryRef { + @Field({ nullable: false }) + objectID: number; + + @Field({ nullable: false }) + versionID: number; + + @Field({ nullable: false }) + objectType: string; + + @Field({ nullable: false }) + categoryID: number; + + @Field({ nullable: false }) + createdAt: string; + @Field({ nullable: false }) + updatedAt: string; +} + +@ObjectType() +export class FlowCategory { + @Field({ nullable: true }) id: number; @Field({ nullable: false }) @@ -11,6 +32,27 @@ export class FlowCategory { @Field({ nullable: false }) group: string; + + @Field({ nullable: true }) + createdAt: string; + + @Field({ nullable: true }) + updatedAt: string; + + @Field({ nullable: true }) + description: string; + + @Field({ nullable: true }) + parentID: number; + + @Field({ nullable: true }) + code: string; + + @Field({ nullable: true }) + includeTotals: boolean; + + @Field(() => FlowCategoryRef, { nullable: true }) + categoryRef: FlowCategoryRef; } @ObjectType() @@ -53,33 +95,126 @@ export class FlowUsageYear { } @ObjectType() -export default class Flow implements ItemPaged { +export class FlowExternalReference { + @Field({ nullable: false }) + systemID: string; + + @Field({ nullable: false }) + flowID: number; + + @Field({ nullable: false }) + externalRecordID: string; + + @Field({ nullable: false }) + versionID: number; + + @Field({ nullable: false }) + createdAt: string; + + @Field({ nullable: false }) + updatedAt: string; + + @Field({ nullable: false }) + externalRecordDate: string; +} + +@ObjectType() +export class FlowReportDetail { + @Field({ nullable: false }) + id: number; + + @Field({ nullable: false }) + flowID: number; + + @Field({ nullable: false }) + versionID: number; + + @Field({ nullable: false }) + contactInfo: string; + + @Field({ nullable: false }) + source: string; + + @Field({ nullable: false }) + date: string; + + @Field({ nullable: false }) + sourceID: string; + + @Field({ nullable: false }) + refCode: string; + + @Field({ nullable: false }) + verified: boolean; + + @Field({ nullable: false }) + createdAt: string; + + @Field({ nullable: false }) + updatedAt: string; + + @Field({ nullable: false }) + organizationID: number; +} + +@ObjectType() +export default class Flow extends ItemPaged { + // Mandatory fields @Field({ nullable: false }) id: number; + @Field({ nullable: false }) + versionID: number; + @Field({ nullable: false }) amountUSD: string; @Field({ nullable: false }) - createdAt: Date; + updatedAt: string; + + @Field({ nullable: false }) + activeStatus: boolean; + + @Field({ nullable: false }) + restricted: boolean; - @Field(() => [FlowCategory], { nullable: false }) + // Optional fields + @Field(() => [FlowCategory], { nullable: true }) categories: FlowCategory[]; - @Field(() => [FlowOrganization], { nullable: false }) + @Field(() => [FlowOrganization], { nullable: true }) organizations: FlowOrganization[]; - @Field(() => [FlowLocation], { nullable: false }) - locations: FlowLocation[]; - - @Field(() => [FlowPlan], { nullable: false }) + @Field(() => [FlowPlan], { nullable: true }) plans: FlowPlan[]; - @Field(() => [FlowUsageYear], { nullable: false }) + @Field(() => [FlowLocation], { nullable: true }) + locations: FlowLocation[]; + + @Field(() => [FlowUsageYear], { nullable: true }) usageYears: FlowUsageYear[]; - @Field({ nullable: false }) - cursor: number; + @Field(() => [Number], { nullable: true }) + childIDs: number[]; + + @Field(() => [Number], { nullable: true }) + parentIDs: number[]; + + @Field({ nullable: true }) + origAmount: string; + + @Field({ nullable: true }) + origCurrency: string; + + @Field(() => [FlowExternalReference], { nullable: true }) + externalReferences: FlowExternalReference[]; + + @Field(() => [FlowReportDetail], { nullable: true }) + reportDetails: FlowReportDetail[]; + + // Missing fields & new Types + @Field({ nullable: true }) + parkedParentSource: string; } @ObjectType() @@ -90,10 +225,12 @@ export class FlowSearchResult extends PageInfo { export type FlowSortField = | 'id' - | 'amountUSD' | 'versionID' + | 'amountUSD' + | 'updatedAt' | 'activeStatus' | 'restricted' + // | 'newMoney' | 'flowDate' | 'decisionDate' @@ -107,5 +244,4 @@ export type FlowSortField = | 'versionStartDate' | 'versionEndDate' | 'createdAt' - | 'updatedAt' | 'deletedAt'; diff --git a/src/domain-services/report-details/report-detail-service.ts b/src/domain-services/report-details/report-detail-service.ts new file mode 100644 index 00000000..ce347b2b --- /dev/null +++ b/src/domain-services/report-details/report-detail-service.ts @@ -0,0 +1,61 @@ +import { Database } from '@unocha/hpc-api-core/src/db'; +import { FlowId } from '@unocha/hpc-api-core/src/db/models/flow'; +import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; +import { InstanceDataOfModel } from '@unocha/hpc-api-core/src/db/util/raw-model'; +import { Service } from 'typedi'; +import { FlowReportDetail } from '../flows/graphql/types'; +@Service() +export class ReportDetailService { + async getReportDetailsForFlows( + flowIds: FlowId[], + models: Database + ): Promise> { + const reportDetails: InstanceDataOfModel[] = + await models.reportDetail.find({ + where: { + flowID: { + [Op.IN]: flowIds, + }, + }, + skipValidation: true, + }); + + const reportDetailsMap = new Map(); + + flowIds.forEach((flowId: FlowId) => { + if (!reportDetailsMap.has(flowId)) { + reportDetailsMap.set(flowId, []); + } + const reportDetail = reportDetails.find( + (report) => report && flowId === report?.flowID + ); + + if (reportDetail) { + const reportDetailMapped = + this.mapReportDetailsToFlowReportDetail(reportDetail); + reportDetailsMap.get(flowId)?.push(reportDetailMapped); + } + }); + + return reportDetailsMap; + } + + private mapReportDetailsToFlowReportDetail( + reportDetail: any + ): FlowReportDetail { + return { + id: reportDetail.id, + flowID: reportDetail.flowId, + versionID: reportDetail.versionID, + contactInfo: reportDetail.contactInfo, + source: reportDetail.source, + date: reportDetail.date.toISOString(), + sourceID: reportDetail.sourceID, + refCode: reportDetail.refCode, + verified: reportDetail.verified, + createdAt: reportDetail.createdAt.toISOString(), + updatedAt: reportDetail.updatedAt.toISOString(), + organizationID: reportDetail.organizationId, + }; + } +} diff --git a/src/utils/graphql/pagination.ts b/src/utils/graphql/pagination.ts index bdc8008c..650ddaba 100644 --- a/src/utils/graphql/pagination.ts +++ b/src/utils/graphql/pagination.ts @@ -1,8 +1,16 @@ import { Op } from '@unocha/hpc-api-core/src/db/util/conditions'; import { createBrandedValue } from '@unocha/hpc-api-core/src/util/types'; -import { ObjectType, Field } from 'type-graphql'; +import { ObjectType, Field, ArgsType } from 'type-graphql'; -export interface ItemPaged { +export type SortOrder = 'asc' | 'desc'; + +export interface IItemPaged { + cursor: number; +} + +@ObjectType() +export class ItemPaged implements IItemPaged { + @Field({ nullable: false }) cursor: number; } @@ -62,3 +70,21 @@ export function prepareConditionFromCursor( return {}; } + +@ArgsType() +export class PaginationArgs { + @Field({ nullable: false }) + limit: number; + + @Field({ nullable: true }) + afterCursor: number; + + @Field({ nullable: true }) + beforeCursor: number; + + @Field(() => String, { nullable: true }) + sortField: TSortFields; + + @Field(() => String, { nullable: true, defaultValue: 'desc' }) + sortOrder: SortOrder; +} From 4d978160035e52e6f37412a467f756cf448bbedc Mon Sep 17 00:00:00 2001 From: manelcecs Date: Mon, 6 Nov 2023 09:14:21 +0100 Subject: [PATCH 19/19] Temp --- package.json | 4 +-- yarn.lock | 84 +++++++++++++++++++++++++++++++++++++++++----------- 2 files changed, 69 insertions(+), 19 deletions(-) diff --git a/package.json b/package.json index 92aad302..9d911a76 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,8 @@ "lint": "yarn lint-prettier && yarn lint-eslint" }, "dependencies": { - "@unocha/hpc-api-core": "^6.0.0", + "@types/jest": "^29.5.7", + "@unocha/hpc-api-core": "https://github.com/UN-OCHA/hpc-api-core.git#cb95d90ca4a936f382a6e9b7758da1a0af88851b", "apollo-server-hapi": "^3.12.0", "bunyan": "^1.8.15", "class-validator": "^0.14.0", @@ -34,7 +35,6 @@ "@hapi/hapi": "^20.2.1", "@types/bunyan": "^1.8.8", "@types/hapi__hapi": "^20.0.9", - "@types/jest": "^29.5.5", "@types/node": "^18.16.19", "@types/pg": "^8.10.2", "@unocha/hpc-repo-tools": "^3.0.1", diff --git a/yarn.lock b/yarn.lock index d5eed099..fa2cafcd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1415,10 +1415,10 @@ dependencies: "@types/istanbul-lib-report" "*" -"@types/jest@^29.5.5": - version "29.5.5" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.5.tgz#727204e06228fe24373df9bae76b90f3e8236a2a" - integrity sha512-ebylz2hnsWR9mYvmBFbXJXr+33UPc4+ZdxyDXh5w0FlPBTfCVN3wPL+kuOiQt3xvrK419v7XWeAs+AeOksafXg== +"@types/jest@^29.5.7": + version "29.5.7" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.7.tgz#2c0dafe2715dd958a455bc10e2ec3e1ec47b5036" + integrity sha512-HLyetab6KVPSiF+7pFcUyMeLsx25LDNDemw9mGsJBkai/oouwrjTycocSDYopMEwFhN2Y4s9oPyOCZNofgSt2g== dependencies: expect "^29.0.0" pretty-format "^29.0.0" @@ -1428,6 +1428,13 @@ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d" integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ== +"@types/knex@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@types/knex/-/knex-0.16.1.tgz#619678407265c675463c563ed38323461a49515d" + integrity sha512-54gWD1HWwdVx5iLHaJ1qxH3I6KyBsj5fFqzRpXFn7REWiEB2jwspeVCombNsocSrqPd7IRPqKrsIME7/cD+TFQ== + dependencies: + knex "*" + "@types/lodash@^4.14.194": version "4.14.194" resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.194.tgz#b71eb6f7a0ff11bff59fc987134a093029258a76" @@ -1611,11 +1618,11 @@ "@typescript-eslint/types" "5.61.0" eslint-visitor-keys "^3.3.0" -"@unocha/hpc-api-core@^6.0.0": - version "6.0.0" - resolved "https://registry.yarnpkg.com/@unocha/hpc-api-core/-/hpc-api-core-6.0.0.tgz#2abf57f103255966de808eb31637543c985ad41c" - integrity sha512-n7CqIdsgWeTu4chX7NTU3SnZxFglZ0HG6awXu7lBCqz+KuVaGb9Er3DjKyKgRNa1qgt3GWNTAzACOehNd5vNNw== +"@unocha/hpc-api-core@https://github.com/UN-OCHA/hpc-api-core.git#cb95d90ca4a936f382a6e9b7758da1a0af88851b": + version "6.2.0" + resolved "https://github.com/UN-OCHA/hpc-api-core.git#cb95d90ca4a936f382a6e9b7758da1a0af88851b" dependencies: + "@types/knex" "^0.16.1" "@types/lodash" "^4.14.194" "@types/node-fetch" "2.6.3" fp-ts "^2.14.0" @@ -1624,6 +1631,7 @@ lodash "^4.17.21" node-fetch "2.6.9" pg "^8.10.0" + ts-node "^10.9.1" "@unocha/hpc-repo-tools@^3.0.1": version "3.0.1" @@ -2347,7 +2355,7 @@ colorette@1.1.0: resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.1.0.tgz#1f943e5a357fac10b4e0f5aaef3b14cdc1af6ec7" integrity sha512-6S062WDQUXi6hOfkO/sBPVwE5ASXY4G2+b4atvhJfSsuUUhIaUKlkjLe9692Ipyt5/a+IPF5aVTu3V5gvXq5cg== -colorette@^2.0.19: +colorette@2.0.19, colorette@^2.0.19: version "2.0.19" resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798" integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ== @@ -2488,6 +2496,13 @@ debug@4.1.1: dependencies: ms "^2.1.1" +debug@4.3.4, debug@^4.1.0, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + debug@^2.2.0, debug@^2.3.3: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" @@ -2502,13 +2517,6 @@ debug@^3.2.6: dependencies: ms "^2.1.1" -debug@^4.1.0, debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - debug@^4.1.1: version "4.3.1" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" @@ -3194,6 +3202,11 @@ getopts@2.2.5: resolved "https://registry.yarnpkg.com/getopts/-/getopts-2.2.5.tgz#67a0fe471cacb9c687d817cab6450b96dde8313b" integrity sha512-9jb7AW5p3in+IiJWhQiZmmwkpLaR/ccTWdWQCtZM66HJcHHLegowh4q4tSD7gouUyeNvFWRavfK9GXosQHDpFA== +getopts@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/getopts/-/getopts-2.3.0.tgz#71e5593284807e03e2427449d4f6712a268666f4" + integrity sha512-5eDf9fuSXwxBL6q5HX+dhDj+dslFGWzU5thZ9kNKUkcPtaPdatmUFKwHFrLb/uf/WpA4BHET+AX3Scl56cAjpA== + git-node-fs@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/git-node-fs/-/git-node-fs-1.0.0.tgz#49b215e242ebe43aa4c7561bbba499521752080f" @@ -3509,7 +3522,7 @@ ini@^1.3.4, ini@^1.3.5: resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== -interpret@^2.0.0: +interpret@^2.0.0, interpret@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9" integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw== @@ -4258,6 +4271,26 @@ kleur@^3.0.3: resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== +knex@*: + version "3.0.1" + resolved "https://registry.yarnpkg.com/knex/-/knex-3.0.1.tgz#b12f3173c30d8c7b6d69dc257cc9c84db00ad60e" + integrity sha512-ruASxC6xPyDklRdrcDy6a9iqK+R9cGK214aiQa+D9gX2ZnHZKv6o6JC9ZfgxILxVAul4bZ13c3tgOAHSuQ7/9g== + dependencies: + colorette "2.0.19" + commander "^10.0.0" + debug "4.3.4" + escalade "^3.1.1" + esm "^3.2.25" + get-package-type "^0.1.0" + getopts "2.3.0" + interpret "^2.2.0" + lodash "^4.17.21" + pg-connection-string "2.6.1" + rechoir "^0.8.0" + resolve-from "^5.0.0" + tarn "^3.0.2" + tildify "2.0.0" + knex@0.21.1: version "0.21.1" resolved "https://registry.yarnpkg.com/knex/-/knex-0.21.1.tgz#4fba7e6c58c9f459846c3090be157a732fc75e41" @@ -4983,6 +5016,11 @@ pg-connection-string@2.2.0: resolved "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-2.2.0.tgz#caab4d38a9de4fdc29c9317acceed752897de41c" integrity sha512-xB/+wxcpFipUZOQcSzcgkjcNOosGhEoPSjz06jC89lv1dj7mc9bZv6wLVy8M2fVjP0a/xN0N988YDq1L0FhK3A== +pg-connection-string@2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-2.6.1.tgz#78c23c21a35dd116f48e12e23c0965e8d9e2cbfb" + integrity sha512-w6ZzNu6oMmIzEAYVw+RLK0+nqHPt8K3ZnknKi+g48Ak2pr3dtljJW3o+D/n2zzCG07Zoe9VOX3aiKpj+BN0pjg== + pg-connection-string@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-2.5.0.tgz#538cadd0f7e603fc09a12590f3b8a452c2c0cf34" @@ -5367,6 +5405,13 @@ rechoir@^0.6.2: dependencies: resolve "^1.1.6" +rechoir@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.8.0.tgz#49f866e0d32146142da3ad8f0eff352b3215ff22" + integrity sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ== + dependencies: + resolve "^1.20.0" + reflect-metadata@^0.1.13: version "0.1.13" resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.13.tgz#67ae3ca57c972a2aa1642b10fe363fe32d49dc08" @@ -5942,6 +5987,11 @@ tarn@^3.0.0: resolved "https://registry.yarnpkg.com/tarn/-/tarn-3.0.1.tgz#ebac2c6dbc6977d34d4526e0a7814200386a8aec" integrity sha512-6usSlV9KyHsspvwu2duKH+FMUhqJnAh6J5J/4MITl8s94iSUQTLkJggdiewKv4RyARQccnigV48Z+khiuVZDJw== +tarn@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/tarn/-/tarn-3.0.2.tgz#73b6140fbb881b71559c4f8bfde3d9a4b3d27693" + integrity sha512-51LAVKUSZSVfI05vjPESNc5vwqqZpbXCsU+/+wxlOrUjk2SnFTt97v9ZgQrD4YmxYW1Px6w2KjaDitCfkvgxMQ== + test-exclude@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"