Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: merative/curam-performance-tuning
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 22.4.0
Choose a base ref
...
head repository: merative/curam-performance-tuning
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 8 commits
  • 52 files changed
  • 2 contributors

Commits on Jul 5, 2024

  1. Tuning guide update July 2024

    fergal connolly committed Jul 5, 2024
    Copy the full SHA
    3b9f38c View commit details
  2. Addition of gitactions

    fergal connolly committed Jul 5, 2024
    Copy the full SHA
    eda78f4 View commit details
  3. update action

    fergal connolly committed Jul 5, 2024
    Copy the full SHA
    1c537b8 View commit details
  4. additional update

    fergal connolly committed Jul 5, 2024
    Copy the full SHA
    c987464 View commit details
  5. update actions

    fergal connolly committed Jul 5, 2024
    Copy the full SHA
    a0a6933 View commit details
  6. update readme

    fergal connolly committed Jul 5, 2024
    Copy the full SHA
    874265d View commit details
  7. move actions

    fergal connolly committed Jul 5, 2024
    Copy the full SHA
    d1cf51f View commit details
  8. Merge pull request #9 from merative/Release-July-2024

    Tuning guide update July 2024
    ourboy authored Jul 5, 2024
    Copy the full SHA
    9323660 View commit details
Showing with 17,349 additions and 37,729 deletions.
  1. +56 −0 .github/workflows/gatsby_deploy.yml
  2. +2 −1 .markdownlint.json
  3. +19 −2 CHANGELOG.md
  4. +203 −201 LICENSE
  5. +3 −3 README.md
  6. +4 −12 gatsby-config.js
  7. +16,689 −37,106 package-lock.json
  8. +10 −9 package.json
  9. +1 −1 src/components/Homepage.js
  10. +0 −129 src/gatsby-theme-carbon/components/Footer/Footer.js
  11. +70 −0 src/gatsby-theme-carbon/components/Footer/index.js
  12. +0 −87 src/gatsby-theme-carbon/components/Header/Header.js
  13. +10 −0 src/gatsby-theme-carbon/components/Header/index.js
  14. +5 −5 src/gatsby-theme-carbon/components/LeftNav/ResourceLinks.js
  15. +3 −2 src/gatsby-theme-carbon/components/Switcher/Switcher.js
  16. +22 −0 src/hooks/use-site-metadata.js
  17. +16 −0 src/images/curam-favicon-32.svg
  18. +1 −1 src/pages/common_task/batch-processes.mdx
  19. +2 −2 src/pages/common_task/dbconfig/common.mdx
  20. +4 −4 src/pages/common_task/dbconfig/db2.mdx
  21. +4 −4 src/pages/common_task/dbconfig/oracle.mdx
  22. +3 −3 src/pages/common_task/spm-application.mdx
  23. +15 −9 src/pages/common_task/xmlservertuning.mdx
  24. +5 −5 src/pages/disclaimer.mdx
  25. +6 −0 src/pages/openshift/deployment_architecture.mdx
  26. +10 −10 src/pages/openshift/introduction.mdx
  27. +6 −0 src/pages/openshift/spm_config.mdx
  28. +7 −0 src/pages/openshift/spm_workload_patterns/as1.mdx
  29. +7 −0 src/pages/openshift/spm_workload_patterns/as2.mdx
  30. +7 −0 src/pages/openshift/spm_workload_patterns/as3.mdx
  31. +7 −0 src/pages/openshift/spm_workload_patterns/as4.mdx
  32. +7 −0 src/pages/openshift/spm_workload_patterns/as5.mdx
  33. +7 −0 src/pages/openshift/spm_workload_patterns/as6.mdx
  34. +7 −0 src/pages/openshift/spm_workload_patterns/spm-workloads-explained.mdx
  35. +4 −4 src/pages/openshift/tune_http_server/tune_http_server.mdx
  36. +33 −32 src/pages/openshift/tune_jms_consumer/tune_jms_consumer.mdx
  37. +33 −33 src/pages/openshift/tune_jms_producer/tune_jms_producer.mdx
  38. +3 −3 src/pages/openshift/tune_mq/tune_mq.mdx
  39. +9 −9 src/pages/openshift/tune_xmlserver/tune_xmlserver.mdx
  40. +6 −7 src/pages/overview/Assumptions.mdx
  41. +3 −3 src/pages/overview/Introduction.mdx
  42. +2 −2 src/pages/tuneappserver/appserver.mdx
  43. +9 −9 src/pages/tuneappserver/jdbc-settings.mdx
  44. +7 −7 src/pages/tuneappserver/jms-settings.mdx
  45. +4 −4 src/pages/tuneappserver/jvm-settings.mdx
  46. +5 −6 src/pages/tuneappserver/thread-pools.mdx
  47. +1 −1 src/pages/tuneappserver/was-java-2-security.mdx
  48. +2 −2 src/pages/tuneappserver/was-params-summary.mdx
  49. +2 −2 src/pages/tunehttp/http-caching.mdx
  50. +3 −3 src/pages/tunehttp/http-compression.mdx
  51. +4 −5 src/pages/tunehttp/http-server.mdx
  52. +1 −1 src/pages/tunehttp/persistent-connections.mdx
56 changes: 56 additions & 0 deletions .github/workflows/gatsby_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: CI

# Controls when the workflow will run
on:
push:
pull_request:
branches: [ main ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build-runbook:
runs-on: ubuntu-latest
permissions:
contents: write
env:
SITE_PREFIX: /curam-performance-tuning/

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: actions/setup-python@v2.2.2
with:
python-version: 3.x

- name: Prepare environment
run: |
node --version
npm install -g markdownlint-cli
npm install --legacy-peer-deps
#npm ci
pip install --user linkchecker
- name: Build docs
run: |
markdownlint **/*.mdx
npm run build
- name: Validate docs
run: |
docker run --rm -d --name gatsby -p 8888:80 -v $(pwd)/public:/usr/local/apache2/htdocs$SITE_PREFIX httpd:2.4
linkchecker http://$(hostname -f):8888$SITE_PREFIX --config=./linkcheckerrc
- name: Deploy Pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.PERF_GIT_DEPLOY_GH_PAGES_TOKEN }}
publish_dir: ./public
publish_branch: gh-pages
force_orphan: true
3 changes: 2 additions & 1 deletion .markdownlint.json
Original file line number Diff line number Diff line change
@@ -2,9 +2,10 @@
"MD003": { "style": "atx" },
"MD007": { "indent": 2 },
"MD010": false,
"MD013": { "line_length": 300, "tables": false },
"MD013": { "line_length": 400, "tables": false },
"MD026": false,
"MD028": false,
"MD029": false,
"MD033": false,
"MD040": false,
"no-trailing-spaces": true,
21 changes: 19 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,29 @@
# Changelog

## v24.7.0

### Breaking Changes

* Guide is no longer called `spm-performance-tuning`. Renamed to `curam-performance-tuning`

### Changed

* Modified `package.json` to upgrade Gatsby.

All notable changes to this project will be documented in this file

## v22.11.0

### Changed

* Modified `package.json` to upgrade Gatsby.
* Modified the [Tuning the XML server](https://merative.github.io/spm-performance-tuning/common_task/xmlservertuning) topic to clarify tuning information

## v22.4.0

### Removed

* Removed the transaction isolation Level settings for JMS producer / consumer pod data sources because the WebSphere Liberty data source `isolationLevel` setting has been removed from the underlying Helm configmaps [#109](https://github.com/IBM/spm-kubernetes/issues/109).
* Removed the transaction isolation Level settings for JMS producer / consumer pod data sources because the WebSphere Liberty data source `isolationLevel` setting has been removed from the underlying Helm configmaps [#109](https://github.com/merative/spm-kubernetes/issues/109).

## v22.1.0

@@ -35,7 +52,7 @@ All notable changes to this project will be documented in this file

### Changed

* Updated IBM Documentation link to SPM V8.
* Updated product documentation link to SPM V8.

## v21.7.1

Loading