Skip to content

Commit

Permalink
[RND-580] Adding notes in documentation to run load performance tests (
Browse files Browse the repository at this point in the history
  • Loading branch information
andonyns authored Jan 22, 2024
1 parent 849e026 commit 6947f41
Show file tree
Hide file tree
Showing 20 changed files with 116 additions and 115 deletions.
2 changes: 1 addition & 1 deletion Meadowlark-js/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ ALLOW__EXT_PROPERTY=true
ALLOW_OVERPOSTING=true

LOG_TO_FILE=false
# LOG_FILE_LOCATION=c:/temp/
# LOG_FILE_LOCATION=/PATH/
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@edfi/meadowlark-elasticsearch-backend",
"main": "dist/index.js",
"version": "0.4.1-pre.8",
"version": "0.4.1-pre.9",
"description": "Meadowlark backend plugin for elasticsearch",
"license": "Apache-2.0",
"publishConfig": {
Expand All @@ -19,8 +19,8 @@
"build:copy-non-ts": "copyfiles -u 1 -e \"**/*.ts\" \"src/**/*\" dist --verbose"
},
"dependencies": {
"@edfi/meadowlark-core": "0.4.1-pre.8",
"@edfi/meadowlark-utilities": "0.4.1-pre.8",
"@edfi/meadowlark-core": "0.4.1-pre.9",
"@edfi/meadowlark-utilities": "0.4.1-pre.9",
"@elastic/elasticsearch": "^8.10.0",
"@elastic/transport": "^8.3.4"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@edfi/meadowlark-mongodb-backend",
"main": "dist/index.js",
"version": "0.4.1-pre.8",
"version": "0.4.1-pre.9",
"description": "Meadowlark backend plugin for MongoDB",
"license": "Apache-2.0",
"publishConfig": {
Expand All @@ -19,9 +19,9 @@
"build:copy-non-ts": "copyfiles -u 1 -e \"**/*.ts\" \"src/**/*\" dist --verbose"
},
"dependencies": {
"@edfi/meadowlark-authz-server": "0.4.1-pre.8",
"@edfi/meadowlark-core": "0.4.1-pre.8",
"@edfi/meadowlark-utilities": "0.4.1-pre.8",
"@edfi/meadowlark-authz-server": "0.4.1-pre.9",
"@edfi/meadowlark-core": "0.4.1-pre.9",
"@edfi/meadowlark-utilities": "0.4.1-pre.9",
"async-retry": "^1.3.3",
"mongodb": "^5.9.2",
"ramda": "0.29.1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@edfi/meadowlark-opensearch-backend",
"main": "dist/index.js",
"version": "0.4.1-pre.8",
"version": "0.4.1-pre.9",
"description": "Meadowlark backend plugin for OpenSearch",
"license": "Apache-2.0",
"publishConfig": {
Expand All @@ -19,8 +19,8 @@
"build:copy-non-ts": "copyfiles -u 1 -e \"**/*.ts\" \"src/**/*\" dist --verbose"
},
"dependencies": {
"@edfi/meadowlark-core": "0.4.1-pre.8",
"@edfi/meadowlark-utilities": "0.4.1-pre.8",
"@edfi/meadowlark-core": "0.4.1-pre.9",
"@edfi/meadowlark-utilities": "0.4.1-pre.9",
"@opensearch-project/opensearch": "^2.4.0"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@edfi/meadowlark-postgresql-backend",
"main": "dist/index.js",
"version": "0.4.1-pre.8",
"version": "0.4.1-pre.9",
"description": "Meadowlark backend plugin for PostgreSQL",
"license": "Apache-2.0",
"publishConfig": {
Expand All @@ -19,9 +19,9 @@
"build:copy-non-ts": "copyfiles -u 1 -e \"**/*.ts\" \"src/**/*\" dist --verbose"
},
"dependencies": {
"@edfi/meadowlark-authz-server": "0.4.1-pre.8",
"@edfi/meadowlark-core": "0.4.1-pre.8",
"@edfi/meadowlark-utilities": "0.4.1-pre.8",
"@edfi/meadowlark-authz-server": "0.4.1-pre.9",
"@edfi/meadowlark-core": "0.4.1-pre.9",
"@edfi/meadowlark-utilities": "0.4.1-pre.9",
"pg": "^8.11.3",
"pg-format": "^1.0.4",
"ramda": "0.29.1"
Expand Down
3 changes: 2 additions & 1 deletion Meadowlark-js/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ services:
POSTGRES_HOST: ${POSTGRES_HOST:-postgres}
POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-abcdefgh1!}
LOG_TO_FILE: true
LOG_TO_FILE: ${LOG_TO_FILE:-true}
LOG_FILE_LOCATION: ${LOG_FILE_LOCATION:-/var/log/}
restart: unless-stopped
healthcheck: &ML_HEALTH
test: curl -s http://localhost:3000/local >/dev/null || exit 1
Expand Down
2 changes: 1 addition & 1 deletion Meadowlark-js/lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"lerna": "8.0.2",
"version": "0.4.1-pre.8",
"version": "0.4.1-pre.9",
"npmClient": "npm"
}
Loading

0 comments on commit 6947f41

Please sign in to comment.