Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RND-580] Adding notes in documentation to run load performance tests #342

Merged
merged 6 commits into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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